 :root {
     --green: #1a7a4c;
     --green-light: #25a865;
     --green-dark: #0f4d2e;
     --gold: #e8b94a;
     --gold-light: #f5d07a;
     --bg: #06100a;
     --bg2: #0d1f14;
     --bg3: #122118;
     --surface: #162c1e;
     --surface2: #1d3826;
     --text: #f0f5f1;
     --text-muted: #8aab94;
     --border: rgba(37, 168, 101, 0.18);
     --radius: 16px;
     --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Manrope', sans-serif;
     background: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     min-height: 100vh;
 }

 /* ===== HEADER ===== */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999;
     background: rgba(6, 16, 10, 0.92);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
     padding: 0 32px;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 26px;
     letter-spacing: 2px;
     color: var(--gold);
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
 }

 .logo span {
     color: var(--green-light);
 }

 nav {
     display: flex;
     gap: 6px;
     align-items: center;
 }

 nav a,
 .nav-btn {
     color: var(--text-muted);
     font-size: 13px;
     font-weight: 600;
     text-decoration: none;
     padding: 8px 14px;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.2s;
     background: none;
     border: none;
     letter-spacing: 0.3px;
 }

 nav a:hover,
 .nav-btn:hover,
 nav a.active {
     color: var(--text);
     background: var(--surface);
 }

 nav a.active {
     color: var(--gold);
 }

 .dropdown {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: calc(100% + 8px);
     left: 0;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 12px;
     min-width: 160px;
     padding: 6px;
     display: none;
     flex-direction: column;
     gap: 2px;
     box-shadow: var(--shadow);
 }

 .dropdown:hover .dropdown-menu {
     display: flex;
 }

 .dropdown-menu a {
     color: var(--text-muted);
     font-size: 13px;
     padding: 9px 12px;
     border-radius: 8px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.2s;
 }

 .dropdown-menu a:hover {
     background: var(--surface2);
     color: var(--green-light);
 }

 .cta-btn {
     background: var(--green);
     color: white;
     border: none;
     padding: 9px 18px;
     border-radius: 8px;
     font-weight: 700;
     font-size: 13px;
     cursor: pointer;
     transition: all 0.2s;
     font-family: 'Manrope', sans-serif;
 }

 .cta-btn:hover {
     background: var(--green-light);
     transform: translateY(-1px);
 }

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 8px;
 }

 .hamburger span {
     width: 24px;
     height: 2px;
     background: var(--text);
     border-radius: 2px;
     transition: all 0.3s;
 }

 @media(max-width:768px) {
     nav {
         display: none;
         position: absolute;
         top: 64px;
         left: 0;
         right: 0;
         background: var(--bg2);
         flex-direction: column;
         padding: 16px;
         gap: 4px;
         border-bottom: 1px solid var(--border);
     }

     nav.open {
         display: flex;
     }

     .hamburger {
         display: flex;
     }

     .dropdown-menu {
         position: static;
         box-shadow: none;
         background: var(--bg3);
     }
 }

 /* ===== PAGES ===== */
 .page {
     display: none;
     animation: fadeIn 0.4s ease;
 }

 .page.active {
     display: block;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(12px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 /* ===== HOME PAGE ===== */
 .hero {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 120px 24px 80px;
     background:
         radial-gradient(ellipse 900px 600px at 60% 20%, rgba(37, 168, 101, 0.12), transparent),
         radial-gradient(ellipse 600px 400px at 10% 80%, rgba(232, 185, 74, 0.07), transparent),
         var(--bg);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(37, 168, 101, 0.04) 60px),
         repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(37, 168, 101, 0.04) 60px);
 }

 .hero-badge {
     background: rgba(37, 168, 101, 0.15);
     border: 1px solid rgba(37, 168, 101, 0.35);
     color: var(--green-light);
     padding: 6px 16px;
     border-radius: 999px;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     margin-bottom: 24px;
     display: inline-block;
     position: relative;
 }

 .hero h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(64px, 10vw, 120px);
     line-height: 0.95;
     letter-spacing: 4px;
     color: var(--text);
     position: relative;
 }

 .hero h1 em {
     color: var(--gold);
     font-style: normal;
 }

 .hero p {
     max-width: 600px;
     color: var(--text-muted);
     font-size: 17px;
     line-height: 1.7;
     margin: 24px auto 40px;
     position: relative;
 }

 .hero-actions {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
     justify-content: center;
     position: relative;
 }

 .btn-primary {
     background: var(--green);
     color: white;
     padding: 14px 32px;
     border-radius: 12px;
     border: none;
     font-weight: 800;
     font-size: 15px;
     cursor: pointer;
     transition: all 0.25s;
     font-family: 'Manrope', sans-serif;
     letter-spacing: 0.3px;
 }

 .btn-primary:hover {
     background: var(--green-light);
     transform: translateY(-2px);
     box-shadow: 0 12px 40px rgba(37, 168, 101, 0.35);
 }

 .btn-secondary {
     background: transparent;
     color: var(--text);
     padding: 14px 32px;
     border-radius: 12px;
     border: 1px solid var(--border);
     font-weight: 700;
     font-size: 15px;
     cursor: pointer;
     transition: all 0.25s;
     font-family: 'Manrope', sans-serif;
 }

 .btn-secondary:hover {
     background: var(--surface);
     border-color: var(--green-light);
 }

 .hero-stats {
     display: flex;
     gap: 48px;
     justify-content: center;
     margin-top: 64px;
     padding-top: 40px;
     border-top: 1px solid var(--border);
     position: relative;
 }

 .stat-num {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 48px;
     color: var(--gold);
     line-height: 1;
 }

 .stat-label {
     font-size: 13px;
     color: var(--text-muted);
     margin-top: 4px;
     font-weight: 600;
 }

 .locations-strip {
     background: var(--bg2);
     padding: 60px 24px;
     border-top: 1px solid var(--border);
 }

 .section-label {
     text-align: center;
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--green-light);
     margin-bottom: 12px;
 }

 .section-title {
     text-align: center;
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(36px, 5vw, 56px);
     letter-spacing: 2px;
     margin-bottom: 16px;
 }

 .section-sub {
     text-align: center;
     color: var(--text-muted);
     max-width: 540px;
     margin: 0 auto 48px;
     font-size: 15px;
 }

 .locations-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 20px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .loc-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 28px;
     cursor: pointer;
     transition: all 0.3s;
     position: relative;
     overflow: hidden;
 }

 .loc-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--green), var(--gold));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.3s;
 }

 .loc-card:hover {
     border-color: rgba(37, 168, 101, 0.4);
     transform: translateY(-4px);
     background: var(--surface2);
 }

 .loc-card:hover::before {
     transform: scaleX(1);
 }

 .loc-icon {
     font-size: 32px;
     margin-bottom: 14px;
 }

 .loc-name {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 28px;
     letter-spacing: 1px;
     color: var(--gold);
     margin-bottom: 6px;
 }

 .loc-addr {
     font-size: 13px;
     color: var(--text-muted);
     line-height: 1.6;
 }

 .loc-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     margin-top: 14px;
     color: var(--green-light);
     font-size: 13px;
     font-weight: 700;
 }

 /* ===== ABOUT PAGE ===== */
 .page-hero {
     padding: 120px 24px 60px;
     background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(37, 168, 101, 0.1), transparent);
     text-align: center;
 }

 .page-hero h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: clamp(48px, 8vw, 80px);
     letter-spacing: 3px;
 }

 .page-hero h1 em {
     color: var(--gold);
     font-style: normal;
 }

 .page-hero p {
     color: var(--text-muted);
     max-width: 580px;
     margin: 16px auto 0;
     font-size: 16px;
     line-height: 1.7;
 }

 .container {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: start;
     padding: 64px 0;
 }

 @media(max-width:768px) {
     .about-grid {
         grid-template-columns: 1fr;
     }
 }

 .about-visual {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 48px;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .pb-ball {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     margin: 0 auto;
     background: radial-gradient(circle at 30% 30%, #fff 0 22%, transparent 23%),
         radial-gradient(circle at 65% 25%, #fff 0 18%, transparent 19%),
         radial-gradient(circle at 72% 60%, #fff 0 16%, transparent 17%),
         radial-gradient(circle at 38% 68%, #fff 0 18%, transparent 19%),
         radial-gradient(circle at 55% 48%, #fff 0 14%, transparent 15%),
         radial-gradient(closest-side, #ffe566, #f5a623);
     box-shadow: 0 20px 60px rgba(245, 166, 35, 0.4);
     animation: floatBall 4s ease-in-out infinite;
 }

 @keyframes floatBall {

     0%,
     100% {
         transform: translateY(0)
     }

     50% {
         transform: translateY(-10px)
     }
 }

 .about-stat-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
 }

 .mini-stat {
     background: var(--bg2);
     border-radius: 12px;
     padding: 16px;
     text-align: center;
 }

 .mini-stat-n {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 36px;
     color: var(--gold);
 }

 .mini-stat-l {
     font-size: 12px;
     color: var(--text-muted);
     font-weight: 600;
 }

 .about-text h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 42px;
     letter-spacing: 2px;
     margin-bottom: 8px;
 }

 .about-text h2 em {
     color: var(--gold);
     font-style: normal;
 }

 .about-text p {
     color: var(--text-muted);
     line-height: 1.8;
     margin-bottom: 20px;
     font-size: 15px;
 }

 .timeline {
     border-left: 2px solid var(--green);
     padding-left: 24px;
     display: flex;
     flex-direction: column;
     gap: 28px;
     margin-top: 32px;
 }

 .tl-item {
     position: relative;
 }

 .tl-item::before {
     content: '';
     position: absolute;
     left: -33px;
     top: 4px;
     width: 16px;
     height: 16px;
     border-radius: 50%;
     background: var(--green-light);
     border: 3px solid var(--bg2);
 }

 .tl-year {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 22px;
     color: var(--gold);
 }

 .tl-text {
     color: var(--text-muted);
     font-size: 14px;
     line-height: 1.7;
 }

 /* ===== BENEFITS PAGE ===== */
 .benefits-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     padding: 48px 0;
 }

 .benefit-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 28px;
     transition: all 0.3s;
     opacity: 0;
     transform: translateY(24px);
 }

 .benefit-card.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .benefit-card:hover {
     border-color: rgba(37, 168, 101, 0.4);
     transform: translateY(-4px);
 }

 .benefit-icon {
     font-size: 36px;
     margin-bottom: 16px;
 }

 .benefit-card h3 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 26px;
     letter-spacing: 1px;
     color: var(--gold);
     margin-bottom: 10px;
 }

 .benefit-card p {
     color: var(--text-muted);
     font-size: 14px;
     line-height: 1.7;
 }

 .global-stats {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 40px;
     margin-bottom: 48px;
 }

 .global-stats h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 36px;
     letter-spacing: 2px;
     margin-bottom: 24px;
     color: var(--gold);
 }

 .global-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 16px;
 }

 .global-item {
     text-align: center;
     padding: 20px;
     background: var(--bg2);
     border-radius: 12px;
 }

 .global-n {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 42px;
     color: var(--green-light);
 }

 .global-l {
     font-size: 13px;
     color: var(--text-muted);
     font-weight: 600;
     margin-top: 4px;
 }

 /* ===== NEWS PAGE ===== */
 .news-controls {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     align-items: center;
     margin: 40px 0 32px;
     padding: 20px;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 14px;
 }

 .search-input {
     flex: 1;
     min-width: 200px;
     padding: 10px 16px;
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 10px;
     color: var(--text);
     font-family: 'Manrope', sans-serif;
     font-size: 14px;
     outline: none;
     transition: border-color 0.2s;
 }

 .search-input:focus {
     border-color: var(--green-light);
 }

 .search-input::placeholder {
     color: var(--text-muted);
 }

 .filter-select {
     padding: 10px 16px;
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 10px;
     color: var(--text);
     font-family: 'Manrope', sans-serif;
     font-size: 14px;
     outline: none;
     cursor: pointer;
 }

 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
 }

 .news-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     transition: all 0.3s;
     display: flex;
     flex-direction: column;
 }

 .news-card:hover {
     border-color: rgba(37, 168, 101, 0.4);
     transform: translateY(-4px);
 }

 .news-thumb {
     height: 180px;
     background: linear-gradient(135deg, var(--surface2), var(--bg3));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 48px;
 }

 .news-body {
     padding: 20px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .news-tag {
     display: inline-block;
     padding: 4px 10px;
     border-radius: 999px;
     font-size: 11px;
     font-weight: 800;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     margin-bottom: 10px;
 }

 .tag-tournament {
     background: rgba(37, 168, 101, 0.2);
     color: var(--green-light);
 }

 .tag-training {
     background: rgba(232, 185, 74, 0.2);
     color: var(--gold-light);
 }

 .tag-announcement {
     background: rgba(125, 166, 252, 0.2);
     color: #7da6fc;
 }

 .news-card h3 {
     font-size: 17px;
     font-weight: 800;
     margin-bottom: 8px;
     line-height: 1.4;
 }

 .news-card p {
     color: var(--text-muted);
     font-size: 14px;
     line-height: 1.7;
     flex: 1;
 }

 .load-more {
     text-align: center;
     margin-top: 40px;
 }

 /* ===== LOCATION PAGES ===== */
 .location-content {
     padding: 48px 0;
 }

 .location-header {
     text-align: center;
     padding: 80px 24px 48px;
 }

 .location-header h1 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 64px;
     letter-spacing: 3px;
     color: var(--gold);
 }

 .location-header p {
     color: var(--text-muted);
     max-width: 500px;
     margin: 12px auto;
     font-size: 16px;
 }

 .loc-info-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
     max-width: 1000px;
     margin: 0 auto;
 }

 @media(max-width:768px) {
     .loc-info-grid {
         grid-template-columns: 1fr;
     }
 }

 .map-embed {
     border-radius: var(--radius);
     overflow: hidden;
     border: 1px solid var(--border);
     background: var(--surface);
 }

 .map-embed iframe {
     width: 100%;
     height: 320px;
     border: none;
     display: block;
 }

 .loc-details {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 28px;
 }

 .loc-details h3 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 28px;
     color: var(--gold);
     margin-bottom: 16px;
 }

 .loc-details p {
     color: var(--text-muted);
     font-size: 14px;
     line-height: 1.8;
     margin-bottom: 20px;
 }

 .directions-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--green);
     color: white;
     padding: 12px 24px;
     border-radius: 10px;
     text-decoration: none;
     font-weight: 700;
     font-size: 14px;
     transition: all 0.2s;
     border: none;
     cursor: pointer;
     font-family: 'Manrope', sans-serif;
 }

 .directions-btn:hover {
     background: var(--green-light);
     transform: translateY(-2px);
 }

 .surprise-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: transparent;
     color: var(--gold);
     padding: 12px 24px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 14px;
     transition: all 0.2s;
     border: 1px solid rgba(232, 185, 74, 0.3);
     cursor: pointer;
     font-family: 'Manrope', sans-serif;
     margin-left: 12px;
 }

 .surprise-btn:hover {
     background: rgba(232, 185, 74, 0.1);
 }

 .surprise-msg {
     margin-top: 16px;
     padding: 12px 16px;
     background: rgba(37, 168, 101, 0.15);
     border: 1px solid rgba(37, 168, 101, 0.35);
     border-radius: 10px;
     color: var(--green-light);
     font-weight: 700;
     font-size: 15px;
     display: none;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
     gap: 14px;
     margin-top: 40px;
 }

 .gallery-grid img {
     width: 100%;
     aspect-ratio: 4/3;
     object-fit: cover;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s;
     border: 1px solid var(--border);
 }

 .gallery-grid img:hover {
     transform: scale(1.03);
     border-color: var(--green-light);
 }

 .lightbox {
     display: none;
     position: fixed;
     inset: 0;
     z-index: 9999;
     background: rgba(0, 0, 0, 0.9);
     align-items: center;
     justify-content: center;
 }

 .lightbox.open {
     display: flex;
 }

 .lightbox img {
     max-width: 90vw;
     max-height: 85vh;
     border-radius: 12px;
 }

 .lightbox-close {
     position: absolute;
     top: 20px;
     right: 28px;
     font-size: 36px;
     color: white;
     cursor: pointer;
     line-height: 1;
 }

 /* ===== GUIDE PAGE ===== */
 .guide-layout {
     display: grid;
     grid-template-columns: 260px 1fr;
     gap: 32px;
     padding: 48px 0;
 }

 @media(max-width:900px) {
     .guide-layout {
         grid-template-columns: 1fr;
     }
 }

 .guide-toc {
     position: sticky;
     top: 88px;
     align-self: start;
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 20px;
 }

 .guide-toc h4 {
     font-size: 11px;
     font-weight: 800;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--text-muted);
     margin-bottom: 12px;
 }

 .toc-link {
     display: block;
     padding: 8px 12px;
     border-radius: 8px;
     font-size: 13px;
     color: var(--text-muted);
     text-decoration: none;
     transition: all 0.2s;
     margin: 3px 0;
     font-weight: 600;
     cursor: pointer;
 }

 .toc-link:hover,
 .toc-link.active {
     background: var(--surface2);
     color: var(--green-light);
 }

 .rule-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 28px;
     margin-bottom: 20px;
     opacity: 0;
     transform: translateY(16px);
     transition: all 0.5s;
 }

 .rule-card.revealed {
     opacity: 1;
     transform: translateY(0);
 }

 .rule-card h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 30px;
     letter-spacing: 1px;
     margin-bottom: 12px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .rule-num {
     background: var(--green);
     color: white;
     width: 32px;
     height: 32px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 800;
     flex-shrink: 0;
 }

 .rule-card p {
     color: var(--text-muted);
     font-size: 15px;
     line-height: 1.8;
 }

 .rule-card ul {
     color: var(--text-muted);
     font-size: 15px;
     line-height: 2;
     padding-left: 20px;
 }

 .court-diagram {
     background: var(--bg2);
     border-radius: 16px;
     padding: 24px;
     margin: 20px 0;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* ===== CONTACT ===== */
 .contact-section {
     padding: 48px 0 80px;
 }

 .contact-card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 24px;
     padding: 40px;
     max-width: 600px;
     margin: 0 auto;
 }

 .contact-card h2 {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 40px;
     letter-spacing: 2px;
     margin-bottom: 8px;
 }

 .contact-card p {
     color: var(--text-muted);
     margin-bottom: 28px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 14px;
     padding: 16px;
     background: var(--bg2);
     border-radius: 12px;
     margin-bottom: 12px;
 }

 .contact-icon {
     font-size: 22px;
 }

 .contact-label {
     font-size: 12px;
     color: var(--text-muted);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .contact-value {
     font-weight: 700;
     color: var(--green-light);
     font-size: 15px;
 }

 /* ===== FOOTER ===== */
 footer {
     background: var(--bg2);
     border-top: 1px solid var(--border);
     padding: 32px 24px;
     text-align: center;
     color: var(--text-muted);
     font-size: 13px;
 }

 footer a {
     color: var(--green-light);
     text-decoration: none;
     font-weight: 700;
 }

 /* ===== PICKLEBALL GUIDE ===== */
 .rules-content section {
     scroll-margin-top: 88px;
 }

 /* Scroll animations */
 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: all 0.6s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Typing cursor */
 .typing-text::after {
     content: '|';
     animation: blink 1s infinite;
     color: var(--green-light);
 }

 @keyframes blink {

     0%,
     50% {
         opacity: 1
     }

     51%,
     100% {
         opacity: 0
     }
 }

 /* ===== INTRO ANIMATION LOADER ===== */
 #loader {
     position: fixed;
     inset: 0;
     z-index: 99999;
     background: var(--bg);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     transition: opacity 0.8s ease, transform 0.8s ease;
 }

 #loader.hide {
     opacity: 0;
     transform: scale(1.04);
     pointer-events: none;
 }

 /* Court grid background */
 #loader::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(37, 168, 101, 0.06) 60px),
         repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(37, 168, 101, 0.06) 60px);
     animation: courtPulse 3s ease-in-out infinite;
 }

 @keyframes courtPulse {

     0%,
     100% {
         opacity: 0.5
     }

     50% {
         opacity: 1
     }
 }

 /* Glow orbs */
 #loader::after {
     content: '';
     position: absolute;
     width: 600px;
     height: 600px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(37, 168, 101, 0.15) 0%, transparent 70%);
     animation: orbFloat 4s ease-in-out infinite;
 }

 @keyframes orbFloat {

     0%,
     100% {
         transform: translate(-50px, -50px) scale(1)
     }

     50% {
         transform: translate(50px, 50px) scale(1.15)
     }
 }

 /* Pickleball bouncing */
 .loader-ball-wrap {
     position: relative;
     height: 160px;
     display: flex;
     align-items: flex-end;
     justify-content: center;
     z-index: 2;
     margin-bottom: 8px;
 }

 .loader-ball {
     width: 72px;
     height: 72px;
     border-radius: 50%;
     background:
         radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
         radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.7) 0 14%, transparent 15%),
         radial-gradient(circle at 70% 58%, rgba(255, 255, 255, 0.6) 0 12%, transparent 13%),
         radial-gradient(circle at 36% 65%, rgba(255, 255, 255, 0.6) 0 14%, transparent 15%),
         radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.5) 0 10%, transparent 11%),
         radial-gradient(closest-side, #ffe566, #f5a623);
     box-shadow: 0 0 40px rgba(245, 166, 35, 0.6), 0 0 80px rgba(245, 166, 35, 0.2);
     animation: ballBounce 0.9s cubic-bezier(0.36, 0, 0.66, 0) infinite;
     transform-origin: center bottom;
 }

 @keyframes ballBounce {
     0% {
         transform: translateY(0) scaleX(1) scaleY(1);
     }

     40% {
         transform: translateY(-110px) scaleX(1) scaleY(1);
     }

     50% {
         transform: translateY(-120px) scaleX(1.05) scaleY(0.95);
     }

     60% {
         transform: translateY(-110px) scaleX(1) scaleY(1);
     }

     90% {
         transform: translateY(0) scaleX(1.15) scaleY(0.85);
     }

     100% {
         transform: translateY(0) scaleX(1) scaleY(1);
     }
 }

 .loader-shadow {
     position: absolute;
     bottom: 0;
     width: 60px;
     height: 12px;
     background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
     border-radius: 50%;
     animation: shadowPulse 0.9s cubic-bezier(0.36, 0, 0.66, 0) infinite;
 }

 @keyframes shadowPulse {

     0%,
     100% {
         transform: scaleX(1.15) scaleY(0.85);
         opacity: 0.7;
     }

     50% {
         transform: scaleX(0.5) scaleY(0.5);
         opacity: 0.2;
     }
 }

 /* Court line flash on bounce */
 .loader-court-line {
     position: absolute;
     bottom: -2px;
     width: 120px;
     height: 3px;
     background: linear-gradient(90deg, transparent, var(--green-light), transparent);
     border-radius: 2px;
     animation: linePulse 0.9s cubic-bezier(0.36, 0, 0.66, 0) infinite;
     opacity: 0;
 }

 @keyframes linePulse {
     0% {
         opacity: 0;
         transform: scaleX(0.3);
     }

     88% {
         opacity: 0;
         transform: scaleX(0.3);
     }

     92% {
         opacity: 1;
         transform: scaleX(1.2);
     }

     100% {
         opacity: 0;
         transform: scaleX(0.3);
     }
 }

 /* Logo */
 .loader-logo {
     font-family: 'Bebas Neue', sans-serif;
     font-size: 42px;
     letter-spacing: 4px;
     color: var(--text);
     z-index: 2;
     animation: logoReveal 0.8s ease 0.3s both;
 }

 .loader-logo span {
     color: var(--gold);
 }

 @keyframes logoReveal {
     from {
         opacity: 0;
         transform: translateY(16px) scale(0.95);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 .loader-sub {
     font-size: 13px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     color: var(--green-light);
     margin-top: 6px;
     z-index: 2;
     animation: logoReveal 0.8s ease 0.5s both;
 }

 /* Progress bar */
 .loader-bar-wrap {
     width: 220px;
     height: 3px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 999px;
     overflow: hidden;
     margin-top: 28px;
     z-index: 2;
     animation: logoReveal 0.8s ease 0.6s both;
 }

 .loader-bar {
     height: 100%;
     background: linear-gradient(90deg, var(--green), var(--gold));
     border-radius: 999px;
     animation: barFill 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
     width: 0;
 }

 @keyframes barFill {
     to {
         width: 100%;
     }
 }

 /* Particles */
 .loader-particles {
     position: absolute;
     inset: 0;
     z-index: 1;
     pointer-events: none;
 }

 .lp {
     position: absolute;
     width: 4px;
     height: 4px;
     border-radius: 50%;
     background: var(--green-light);
     animation: particleDrift var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
     opacity: 0;
 }

 @keyframes particleDrift {
     0% {
         opacity: 0;
         transform: translateY(0) scale(0);
     }

     10% {
         opacity: 0.8;
         transform: translateY(-20px) scale(1);
     }

     90% {
         opacity: 0.3;
     }

     100% {
         opacity: 0;
         transform: translateY(-120px) scale(0.3) translateX(var(--drift, 20px));
     }
 }