  <style> 

:root {
     --wc-dark-blue: #003767;
     --wc-medium-blue: #004d8c;
     --wc-light-blue: #79bde8;
     --wc-accent-blue: #00a3e0;
     --wc-white: #ffffff;
     --wc-off-white: #f7f9fb;
     --wc-dark: #0a1628;
     --wc-gray: #6c757d;
     --wc-light-gray: #e9ecef;
     --wc-transition: cubic-bezier(0.4, 0, 0.2, 1);
     --wc-transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

 .ath-hero {
     background: linear-gradient(135deg, #000d1a 0%, #003767 40%, #0a5a8a 100%);
     color: white;
     padding: 4rem 0 3.5rem;
     position: relative;
     overflow: hidden;
}
 .ath-hero::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -80px;
     width: 350px;
     height: 350px;
     border: 50px solid rgba(121, 189, 232, 0.06);
     border-radius: 50%;
     pointer-events: none;
}
 .ath-hero::after {
     content: '';
     position: absolute;
     bottom: -50px;
     left: -50px;
     width: 200px;
     height: 200px;
     border: 30px solid rgba(121, 189, 232, 0.04);
     transform: rotate(45deg);
     pointer-events: none;
}
 .ath-hero h1 {
     font-family: var(--wc-font-heading);
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: white;
}
 .ath-hero p {
     color: rgba(255, 255, 255, 0.88);
}
 .ath-hero .lead strong {
     color: var(--wc-light-blue);
}
 .ath-hero-stats {
     display: flex;
     justify-content: center;
     gap: 3rem;
     margin-top: 2rem;
     flex-wrap: wrap;
}
 .ath-hero-stat {
     text-align: center;
}
 .ath-hero-stat__number {
     font-family: var(--wc-font-heading);
     font-size: 2.8rem;
     font-weight: 700;
     color: var(--wc-light-blue);
     line-height: 1;
     display: block;
}
 .ath-hero-stat__label {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     opacity: 0.75;
     margin-top: 0.25rem;
     display: block;
}
 .ath-back-link {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--wc-light-blue);
     text-decoration: none;
     font-family: var(--wc-font-heading);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.85rem;
     margin-bottom: 1.5rem;
     transition: color 0.3s ease, gap 0.3s ease;
}
 .ath-back-link:hover {
     color: white;
     gap: 0.8rem;
}
 .ath-divider {
     position: relative;
     width: 100%;
     height: 80px;
     overflow: hidden;
     background: linear-gradient(135deg, #000d1a 0%, var(--wc-dark-blue) 40%, #0a5a8a 100%);
}
 .ath-divider::after {
     content: '';
     position: absolute;
     left: -5%;
     right: -5%;
     bottom: 0;
     height: 100%;
     background: var(--wc-off-white);
     transform-origin: bottom left;
     transform: skewY(2.2deg);
}
 .ath-sports-section {
     background: var(--wc-off-white);
     padding: 4rem 0 5rem;
}
 .sport-card {
     position: relative;
     overflow: hidden;
     background: var(--wc-white);
     box-shadow: 0 2px 15px rgba(0, 55, 103, 0.08);
     transition: all 0.4s var(--wc-transition);
     cursor: pointer;
     height: 100%;
     display: flex;
     flex-direction: column;
}
 .sport-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: var(--wc-light-blue);
     transition: height 0.35s var(--wc-transition);
}
 .sport-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 55, 103, 0.18);
}
 .sport-card:hover::after {
     height: 8px;
}
 .sport-card__img-wrap {
     position: relative;
     overflow: hidden;
}
 .sport-card__img {
     width: 100%;
     aspect-ratio: 1 / 1;
     object-fit: cover;
     display: block;
     transition: transform 0.6s var(--wc-transition);
     background: var(--wc-light-gray);
}
 .sport-card:hover .sport-card__img {
     transform: scale(1.06);
}
 .sport-card__img-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, transparent 40%, rgba(0, 13, 26, 0.85) 100%);
     pointer-events: none;
}
 .sport-card__sport-name {
     position: absolute;
     bottom: 1rem;
     left: 1.25rem;
     right: 1.25rem;
     z-index: 2;
     color: white;
}
 .sport-card__sport-name h3 {
     font-family: var(--wc-font-heading);
     font-weight: 700;
     font-size: 1.8rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin: 0;
     line-height: 1.1;
     text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}
 .sport-card__sport-name .sport-card__camp-count {
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: var(--wc-light-blue);
     font-weight: 700;
     font-family: var(--wc-font-heading);
}
 .sport-card__icon-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     z-index: 3;
     width: 48px;
     height: 48px;
     background: var(--wc-light-blue);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     color: var(--wc-dark-blue);
     transition: transform 0.35s var(--wc-transition-bounce);
}
 .sport-card:hover .sport-card__icon-badge {
     transform: rotate(-8deg) scale(1.1);
}
 .sport-card__toggle {
     position: absolute;
     top: 1rem;
     left: 1rem;
     z-index: 3;
     width: 32px;
     height: 32px;
     background: rgba(255,255,255,0.15);
     backdrop-filter: blur(4px);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.85rem;
     color: white;
     transition: all 0.35s var(--wc-transition);
}
 .sport-card.is-open .sport-card__toggle {
     background: var(--wc-light-blue);
     color: var(--wc-dark-blue);
     transform: rotate(180deg);
}
 .sport-card__body {
     padding: 0;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s var(--wc-transition), padding 0.5s var(--wc-transition);
}
 .sport-card.is-open .sport-card__body {
     padding: 1.25rem;
     max-height: 800px;
}
 .camp-item {
     padding: 1rem;
     background: var(--wc-off-white);
     margin-bottom: 0.75rem;
     border-left: 4px solid var(--wc-light-blue);
     transition: all 0.3s var(--wc-transition);
}
 .camp-item:last-child {
     margin-bottom: 0;
}
 .camp-item:hover {
     background: #edf4fa;
     border-left-color: var(--wc-dark-blue);
}
 .camp-item__name {
     font-family: var(--wc-font-heading);
     font-weight: 700;
     font-size: 1rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     color: var(--wc-dark-blue);
     margin-bottom: 0.35rem;
}
 .camp-item__meta {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem 1rem;
     font-size: 0.82rem;
     color: var(--wc-gray);
     margin-bottom: 0.5rem;
}
 .camp-item__meta span {
     display: inline-flex;
     align-items: center;
     gap: 0.3rem;
}
 .camp-item__meta i {
     color: var(--wc-light-blue);
     font-size: 0.9rem;
}
 .camp-item__register {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     font-family: var(--wc-font-heading);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.78rem;
     color: var(--wc-dark-blue);
     text-decoration: none;
     padding: 0.4rem 1rem;
     border: 2px solid var(--wc-dark-blue);
     transition: all 0.3s var(--wc-transition);
     background: transparent;
}
 .camp-item__register:hover {
     background: var(--wc-dark-blue);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 55, 103, 0.25);
}
 .sport-card__hint {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 4;
     text-align: center;
     padding: 0.5rem;
     background: var(--wc-light-blue);
     color: var(--wc-dark-blue);
     font-family: var(--wc-font-heading);
     font-weight: 700;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     transform: translateY(100%);
     transition: transform 0.35s var(--wc-transition);
}
 .sport-card:hover .sport-card__hint {
     transform: translateY(0);
}
 .sport-card.is-open .sport-card__hint {
     transform: translateY(100%);
}
 .ath-cta-banner {
     background: linear-gradient(135deg, var(--wc-dark-blue) 0%, #0a5a8a 100%);
     color: white;
     padding: 3.5rem 0;
     text-align: center;
     position: relative;
     overflow: hidden;
}
 .ath-cta-banner::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: repeating-linear-gradient( -45deg, transparent, transparent 30px, rgba(121, 189, 232, 0.04) 30px, rgba(121, 189, 232, 0.04) 60px );
     pointer-events: none;
}
 .ath-cta-banner h2 {
     font-family: var(--wc-font-heading);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: white;
}
 .ath-cta-banner p {
     color: rgba(255,255,255,0.85);
}
 .btn-wc-light {
     background: var(--wc-light-blue);
     color: var(--wc-dark-blue);
     border: 2px solid var(--wc-light-blue);
     padding: 12px 30px;
     text-transform: uppercase;
     font-weight: 700;
     font-family: var(--wc-font-heading);
     letter-spacing: 1.5px;
     transition: all 0.35s var(--wc-transition);
     display: inline-block;
     text-align: center;
     text-decoration: none;
     cursor: pointer;
}
 .btn-wc-light:hover {
     background: white;
     color: var(--wc-dark-blue);
     border-color: white;
     transform: translateY(-3px);
     box-shadow: 0 6px 20px rgba(121, 189, 232, 0.4);
}
 .ath-policy-section {
     padding: 4rem 0;
     background: var(--wc-off-white);
}
 .ath-policy-box {
     background: var(--wc-white);
     border: 1px solid var(--wc-light-gray);
     padding: 2rem;
     transition: box-shadow 0.3s ease;
}
 .ath-policy-box:hover {
     box-shadow: 0 5px 20px rgba(0, 55, 103, 0.08);
}
 @media (max-width: 991.98px) {
     .sport-card__sport-name h3 {
         font-size: 1.5rem;
    }
     .ath-hero-stat__number {
         font-size: 2.2rem;
    }
}
 @media (max-width: 767.98px) {
     .ath-hero {
         padding: 3rem 0 2.5rem;
    }
     .ath-hero-stats {
         gap: 2rem;
    }
     .ath-divider {
         height: 50px;
    }
     .ath-sports-section {
         padding: 3rem 0 4rem;
    }
     .sport-card__sport-name h3 {
         font-size: 1.4rem;
    }
}
 @media (max-width: 575.98px) {
     .ath-hero h1 {
         font-size: 1.5rem !important;
    }
     .ath-divider {
         height: 35px;
    }
     .sport-card__icon-badge {
         width: 40px;
         height: 40px;
         font-size: 1.1rem;
    }
}
 </style>