@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* ========================================
   BASE STYLES
   ======================================== */
body {
  font-family: 'Roboto', sans-serif;
  background: #0a2540;
  color: #f2f2f2;
 
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
.my-container{
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.root {
 overflow:  hidden;
  
 
}
.header_wrapp {
z-index: 100;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}



.header-logo.logo_top img {
  width: 60px;
  height: 60px;
}

.header-list {
  display: flex;
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 0;
}

.header-list-item-link {
  color: rgb(251, 251, 251);
  padding: 10px 14px;
  transition: 0.3s all;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
}

.header-list-item-link::after,
.header-list-item-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #06b6d4;
  transition: width 0.3s ease;
}

.header-list-item-link:hover {
  color: #06b6d4;
  background-color: rgba(255, 255, 255, 0.1);
}

.header-list-item-link:hover::after {
  width: 100%;
}

.header-list-item-link--active {
  color: #06b6d4;
}

.header-list-item-link--active::after {
  width: 100%;
}

/* ========================================
   BURGER MENU
   ======================================== */
.menu-burger {
  width: 30px;
  height: 20px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  z-index: 100;
  position: relative;
  display: none;
}

.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  left: 0;
}

.menu-burger::before {
  top: 0;
  transition: transform 0.3s, top 0.3s 0.3s;
}

.menu-burger::after {
  bottom: 0;
  transition: transform 0.3s, bottom 0.3s 0.3s;
}

.menu-burger__line,
.menu-burger::after,
.menu-burger::before {
  display: block;
  width: 100%;
  border-radius: 10px;
  height: 3px;
  background-color: #f2f2f2;
}

.menu-burger--active .menu-burger__line {
  display: none;
}

.menu-burger--active::before {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: top 0.3s, transform 0.3s 0.3s;
}

.menu-burger--active::after {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
  transition: bottom 0.3s, transform 0.3s 0.3s;
}

.burger_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 8;
}

.burger_overlay--active {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}
#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 19px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  background: #06b6d4;
  color: white;
  cursor: pointer;
  z-index: 20;
  transition: opacity 0.3s ease;
}

#toTopBtn.show {
  display: block;
  opacity: 0.8;
}

#toTopBtn:active {
  opacity: 1;
}
  /* Noise texture overlay */
    .noise::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.03;
      pointer-events: none;
    }
    
    /* Glowing effect */
    .glow {
      box-shadow: 0 0 60px rgba(6, 182, 212, 0.3);
    }
    
    /* Card hover lift */
    .card-lift {
      transition:  box-shadow 0.4s ease;
    }
    .card-lift:hover {
      
   
    }
    
    /* Animated underline */
    .link-underline {
      position: relative;
    }
    .link-underline::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #06B6D4, #F59E0B);
      transition: width 0.3s ease;
    }
    .link-underline:hover::after {
      width: 100%;
    }
    
    /* Gradient text */
    .gradient-text {
      background: linear-gradient(135deg, #06B6D4 0%, #F59E0B 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Scroll reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Stagger children */
    .stagger > *:nth-child(1) { transition-delay: 0.1s; }
    .stagger > *:nth-child(2) { transition-delay: 0.2s; }
    .stagger > *:nth-child(3) { transition-delay: 0.3s; }
    .stagger > *:nth-child(4) { transition-delay: 0.4s; }
    .stagger > *:nth-child(5) { transition-delay: 0.5s; }
    .stagger > *:nth-child(6) { transition-delay: 0.6s; }
    
  
    
    .splide__pagination__page.is-active 
    { background: #06B6D4 !important; }
    .splide__pagination{
position: relative !important;
margin-top: 24px !important;
    }
    /* Marquee animation */
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .animate-marquee {
      animation: marquee 30s linear infinite;
    }
    
    /* Floating animation */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    .animate-float {
      animation: float 3s ease-in-out infinite;
    }
    
    /* Pulse ring */
    @keyframes pulse-ring {
      0% { transform: scale(0.8); opacity: 1; }
      100% { transform: scale(1.5); opacity: 0; }
    }
    .pulse-ring::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 2px solid #06B6D4;
      border-radius: 50%;
      animation: pulse-ring 2s ease-out infinite;
    }
    
    /* Glass effect */
    .glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Score card animation */
    .score-card {
      background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0A2540 0%, #0C4A6E 100%);
        color: #f2f2f2;
    }
    .score-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #06B6D4, #F59E0B);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .score-card:hover::before {
      opacity: 1;
    }
    /* Hero gradient mesh */
    .hero-mesh {
      background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0A2540 0%, #0C4A6E 100%);
    }
    
    /* Card hover */
    .card-hover {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
    }
    
    /* Tab active state */
    .tab-btn.active {
      background: linear-gradient(135deg, #06B6D4, #0C4A6E);
      color: white;
    }
    
    /* Court filter active */
    .court-filter.active {
      background: #06B6D4;
      color: #0A2540;
      border-color: #06B6D4;
    }
    
    /* Category filter active */
    .category-filter.active {
      background: #F59E0B;
      color: #0A2540;
    }
    
    /* Match row animation */
    .match-row {
      animation: fadeInUp 0.5s ease forwards;
      opacity: 0;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Live pulse */
    @keyframes livePulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .live-pulse {
      animation: livePulse 1.5s ease-in-out infinite;
    }
    
    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.1);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb {
      background: #06B6D4;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #F59E0B;
    }
    
    /* Date picker custom */
    .date-card {
      transition: all 0.3s ease;
    }
    .date-card.active {
      background: linear-gradient(135deg, #06B6D4, #0C4A6E);
      transform: scale(1.05);
    }
    .date-card.active .date-day,
    .date-card.active .date-num,
    .date-card.active .date-month {
      color: white;
    }
    
    /* Time slot indicator */
    .time-slot::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 60%;
      background: linear-gradient(180deg, #06B6D4, #F59E0B);
      border-radius: 2px;
    }
     .tab-active {
      background: linear-gradient(135deg, #06B6D4, #0C4A6E);
      color: white;
    }
    
    .round-filter.active {
      background: #06B6D4;
      color: #0A2540;
      border-color: #06B6D4;
    }
    
    .category-tab.active {
      background: linear-gradient(135deg, #06B6D4, #F59E0B);
      color: #0A2540;
    }
    
    .match-card {
      animation: fadeInUp 0.5s ease forwards;
      opacity: 0;
    }
    
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }
    .slide-in {
      animation: slideIn 0.4s ease forwards;
    }
    
    /* Winner highlight */
    .winner-row {
      position: relative;
    }
    .winner-row::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 3px;
      height: 70%;
      background: linear-gradient(180deg, #84CC16, #06B6D4);
      border-radius: 2px;
    }
    
    /* Stats bar */
    .stat-bar {
      height: 8px;
      border-radius: 4px;
      background: rgba(255,255,255,0.1);
      overflow: hidden;
    }
    .stat-bar-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 1s ease;
    }
    
    /* Modal */
    .modal-overlay {
      background: rgba(10, 37, 64, 0.9);
      backdrop-filter: blur(8px);
    }
    
    /* Trophy animation */
    @keyframes trophy-bounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
    .trophy-animate:hover {
      animation: trophy-bounce 0.5s ease;
    }
      /* Hero image mask */
    .hero-mask {
      mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    }
    
    /* Stat card glow */
    .stat-glow {
      box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
    }
    
    /* Progress ring */
    .progress-ring {
      transform: rotate(-90deg);
    }
    .progress-ring circle {
      transition: stroke-dashoffset 1s ease;
    }
    
    /* Timeline */
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #06B6D4, #F59E0B);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: -4px;
      top: 8px;
      width: 10px;
      height: 10px;
      background: #06B6D4;
      border-radius: 50%;
      border: 2px solid #0A2540;
    }
    
    /* Animations */
    .animate-in {
      animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes countUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .count-up {
      animation: countUp 0.8s ease forwards;
    }
    
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
      50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.6); }
    }
    .pulse-glow {
      animation: pulse-glow 2s ease-in-out infinite;
    }
    
    /* Trophy shine */
    @keyframes shine {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    .trophy-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: skewX(-25deg);
    }
    .trophy-card:hover::after {
      animation: shine 0.8s ease;
    }
    
    /* Set timeline */
    .set-point {
      transition: all 0.3s ease;
    }
    .set-point:hover {
      transform: scale(1.2);
    }
    .set-point.winner {
      background: #84CC16;
      box-shadow: 0 0 10px rgba(132, 204, 22, 0.5);
    }
    .set-point.break {
      background: #F59E0B;
    }
    
    /* Momentum chart */
    .momentum-line {
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: drawLine 2s ease forwards;
    }
    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }
    
    /* Key moment card */
    .moment-card {
      position: relative;
    }
    .moment-card::before {
      content: '';
      position: absolute;
      left: -24px;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      background: #06B6D4;
      border-radius: 50%;
      border: 3px solid #0A2540;
    }
    .moment-card.highlight::before {
      background: #F59E0B;
      box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
    }
    
    /* Quote styling */
    .quote-card {
      position: relative;
    }
    .quote-card::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 80px;
      font-family: 'Bebas Neue', sans-serif;
      color: rgba(6, 182, 212, 0.3);
      line-height: 1;
    }
    
    /* Photo gallery */
    .gallery-item {
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gallery-item:hover {
      z-index: 10;
      transform: scale(1.05);
    }
    
    @keyframes pulse-glow-lime {
      0%, 100% { box-shadow: 0 0 20px rgba(132, 204, 22, 0.3); }
      50% { box-shadow: 0 0 40px rgba(132, 204, 22, 0.6); }
    }
    .winner-glow {
      animation: pulse-glow-lime 2s ease-in-out infinite;
    }
    
    @keyframes confetti {
      0% { transform: translateY(0) rotate(0deg); opacity: 1; }
      100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
    }
    
    /* Video overlay */
    .video-overlay {
      background: linear-gradient(to top, rgba(10, 37, 64, 0.9) 0%, transparent 50%);
    }
     /* Category filter */
    .cat-filter.active {
      background: #06B6D4;
      color: #0A2540;
    }
    
    /* Leaderboard row */
    .leaderboard-row {
      transition: all 0.3s ease;
    }
    .leaderboard-row:hover {
      background: rgba(6, 182, 212, 0.1);
      transform: translateX(4px);
    }
    
    /* Chart bar animation */
    @keyframes growUp {
      from { height: 0; }
      to { height: var(--bar-height); }
    }
    .chart-bar {
      animation: growUp 1s ease forwards;
    }
    
    /* Donut chart */
    .donut-segment {
      transition: all 0.5s ease;
    }
    .donut-segment:hover {
      transform: scale(1.05);
      filter: brightness(1.2);
    }
    
    /* Rank badge colors */
    .rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #1a1a1a; }
    .rank-2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #1a1a1a; }
    .rank-3 { background: linear-gradient(135deg, #CD7F32, #8B4513); color: white; }
    
    /* Table styling */
    .stats-table th {
      background: rgba(6, 182, 212, 0.1);
    }
    .stats-table tr:hover td {
      background: rgba(255, 255, 255, 0.05);
    }
    
    /* Comparison slider */
    .compare-slider {
      -webkit-appearance: none;
      background: linear-gradient(90deg, #06B6D4, #F59E0B);
      height: 4px;
      border-radius: 2px;
    }
    .compare-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      background: white;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    /* Player link */
    .player-link {
      position: relative;
      transition: all 0.2s ease;
    }
    .player-link:hover {
      color: #06B6D4;
    }
    .player-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: #06B6D4;
      transition: width 0.3s ease;
    }
    .player-link:hover::after {
      width: 100%;
    }
    /* Select styling */
    select {
      background-color: rgba(6, 182, 212, 0.15);
      border-color: rgba(6, 182, 212, 0.3);
    }
    select:hover {
      background-color: rgba(6, 182, 212, 0.25);
      border-color: rgba(6, 182, 212, 0.5);
    }
    select:focus {
      background-color: rgba(6, 182, 212, 0.2);
      border-color: #06B6D4;
    }
    select option {
      background-color: #0A2540;
      color: white;
    }
      
    /* Contact card hover */
    .contact-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    }
    .contact-card:hover .contact-icon {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, #06B6D4, #F59E0B);
    }
    
    /* FAQ accordion */
    .faq-item {
      transition: all 0.3s ease;
    }
    .faq-item.active {
      background: rgba(6, 182, 212, 0.1);
    }
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      color: #06B6D4;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding-top: 1rem;
    }
    
    /* Form input focus */
    .form-input:focus {
      border-color: #06B6D4;
      box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
    }
    
    /* Map placeholder */
    .map-container {
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(245, 158, 11, 0.1));
    }
    
    /* Quick link hover */
    .quick-link:hover {
      background: rgba(6, 182, 212, 0.2);
      padding-left: 1.5rem;
    }
    .quick-link:hover .quick-arrow {
      transform: translateX(4px);
      opacity: 1;
    }
    
    /* Social icon hover */
    .social-icon:hover {
      transform: translateY(-4px) scale(1.1);
    }
    /* Video player */
    .main-video:hover .play-btn {
      transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Playlist item */
    .playlist-item {
      transition: all 0.3s ease;
      align-items:center;
    }
    .playlist-item:hover {
      background: rgba(6, 182, 212, 0.15);
    }
    .playlist-item.active {
      background: rgba(6, 182, 212, 0.2);
      border-left: 3px solid #06B6D4;
    }
    .playlist-item:hover .play-overlay {
      opacity: 1;
    }
    /* Video card */
    .video-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -15px rgba(6, 182, 212, 0.3);
    }
    .video-card:hover img {
      transform: scale(1.05);
    }
    .video-card:hover .video-title {
      color: #06B6D4;
    }
    .video-card:hover .card-play {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    .video-card:hover .video-img {
      transform: scale(1.1);
    }
    .video-card:hover .play-btn {
     
      box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
    }
     /* News card */
    .news-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -12px rgba(6, 182, 212, 0.2);
    }
    .news-card:hover .news-img {
      transform: scale(1.08);
    }
    .news-card:hover .news-title {
      color: #06B6D4;
    }
    .news-card:hover .read-more {
      color: #06B6D4;
      gap: 0.75rem;
    }
    
    .news-img {
      transition: transform 0.6s ease;
    }
    
    /* Featured card */
    .featured-card:hover .featured-overlay {
      background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.3) 100%);
    }
    .featured-card:hover .featured-title {
      color: #06B6D4;
    }
    
    /* Category active */
    .category-btn.active {
      background: linear-gradient(135deg, #06B6D4, #0C4A6E);
      color: white;
    }
     /* Player card */
    .player-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .player-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    }
    .player-card:hover .player-img {
      transform: scale(1.05);
    }
    .player-card:hover .player-overlay {
      opacity: 1;
    }
    .player-card:hover .player-name {
      color: #06B6D4;
    }
    
    .player-img {
      transition: transform 0.5s ease;
    }
    
    .player-overlay {
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    /* Champion badge */
    .champion-badge {
      background: linear-gradient(135deg, #FFD700, #FFA500);
      animation: pulse-glow 2s ease-in-out infinite;
    }
     /* List view styling */
    .list-view .player-card {
      flex-direction: row;
      padding: 1rem;
    }
    .list-view .player-card .player-img-container {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }
    
    .video-img {
      transition: transform 0.6s ease;
    }
    
    /* Play button */
    .play-btn {
      transition: all 0.3s ease;
    }
    
    /* Featured video */
    .featured-video:hover .featured-play {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 0 60px rgba(6, 182, 212, 0.7);
    }
    
    /* Progress bar */
    .progress-bar {
      background: linear-gradient(90deg, #06B6D4, #F59E0B);
    }
    
    /* Article content */
    .article-content p {
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    .article-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.75rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #06B6D4;
    }
    
    /* Blockquote */
    .article-quote {
      border-left: 4px solid #06B6D4;
      padding: 1.5rem 2rem;
      margin: 2rem 0;
      background: rgba(6, 182, 212, 0.1);
      border-radius: 0 1rem 1rem 0;
      font-size: 1.125rem;
      font-style: italic;
    }
    .article-quote cite {
      display: block;
      margin-top: 1rem;
      font-style: normal;
      font-weight: 600;
      color: #F59E0B;
    }
    
.main {
  display: flex;
  flex-direction: column;
}
.footer {
  background: #f9f9f9;
}
.color-333 {
  color: rgb(51, 51, 51);
}
.bg-fff {
  background: #fff;
}
.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.column {
  flex-direction: column;
}
.ai-center {
  align-items: center;
}
.jc-center {
  justify-content: center;
}
.jc-space-between {
  justify-content: space-between;
}
.bg-f9f9f9 {
  background: #f9f9f9;
}
.underline-none {
  text-decoration: none;
}
.color-0073b2 {
  color: rgb(0, 115, 178);
}
.h-color-0073b2:hover {
  color: rgb(0, 115, 178);
}
.transition {
  transition: all 250ms ease-in-out;
}
.of-contain {
  object-fit: contain;
}
.py6px {
  padding-top: 6px;
  padding-bottom: 6px;
}
.of-cover {
  object-fit: cover;
}
.py12px {
  padding-top: 12px;
  padding-bottom: 16px;
}
.py24px {
  padding-top: 24px;
  padding-bottom: 24px;
}
.py36px {
  padding-top: 36px;
  padding-bottom: 36px;
}
.px6px {
  padding-left: 6px;
  padding-right: 6px;
}
.px12px {
  padding-left: 12px;
  padding-right: 12px;
}
.px24px {
  padding-left: 24px;
  padding-right: 24px;
}
.px36px {
  padding-left: 36px;
  padding-right: 36px;
}
.w64px {
  width: 64px;
}
.h-filter-hue-rotate90:hover {
  filter: hue-rotate(90deg);
}
.list-none {
  list-style: none;
}
.m0 {
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.p0 {
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.gx6px {
  column-gap: 5px;
}
.gx12px {
  column-gap: 12px;
}
.gx24px {
  column-gap: 24px;
}
.gx36px {
  column-gap: 36px;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.fz14 {
  font-size: 14px;
}
.fw300 {
  font-weight: 300;
}
.fw400 {
  font-weight: 400;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.fw900 {
  font-weight: 900;
}
.gtc-repeat4-1fr {
  grid-template-columns: repeat(4, 1fr);
}
.bb-1px-solid-e6e6e6 {
  border: 1px solid #e6e6e6;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 0;
}
.w96px {
  width: 96px;
}
.fz16 {
  font-size: 16px;
}
.fz18 {
  font-size: 18px;
}
.fz22 {
  font-size: 22px;
}
.fz26 {
  font-size: 26px;
}
.fz30 {
  font-size: 30px;
}
.fz42 {
  font-size: 42px;
}
.color-003a5d {
  color: rgb(0, 58, 93);
}
.ai-flex-end {
  align-items: flex-end;
}
.text-center {
  text-align: center;
}
.fw-wrap {
  flex-wrap: wrap;
}
.gy6px {
  row-gap: 6px;
}
.gy12px {
  row-gap: 12px;
}
.gy24px {
  row-gap: 24px;
}
.gy36px {
  row-gap: 36px;
}
.h-underline:hover {
  text-decoration: underline;
}
.gb-img1 {
  background: linear-gradient(90deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.32) 100%), url("https://australian-open.nz/assets/img/a60d186faf0947d4c04564bc99a8f46a.jpg") no-repeat center/cover;
}
.h768px {
  height: 768px;
}
.color-fff {
  color: rgb(255, 255, 255);
}
.b-2px-solid-fff {
  border: 2px solid #fff;
}
.br4px {
  border-radius: 4px;
}
.h-filter-brightness80:hover {
  filter: brightness(80%);
}
.py64px {
  padding-top: 64px;
  padding-bottom: 64px;
}
.gtc-repeat3-1fr {
  grid-template-columns: repeat(3, 1fr);
}
.br12px {
  border-radius: 12px;
}
.bg-f2f2f2 {
  background: #f2f2f2;
}
.h256px {
  height: 256px;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.hidden {
  overflow: hidden;
}
.bg-d9eaf3 {
  background: #d9eaf3;
}
.flex-auto {
  flex: 1 1 auto;
}
.h-underline-none:hover {
  text-decoration: none;
}
.h128px {
  height: 128px;
}
.h12 {
  height: 128px;
}
.w128px {
  width: 128px;
}
.br50 {
  border-radius: 50%;
}
.b-2px-solid-0091d2 {
  border: 2px solid #0091d2;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.top {
  top: 0;
}
.left {
  left: 0;
}
.btn-play {
  background: url("https://australian-open.nz/assets/img/a9f355042d3fcd44945367b007910f3a.webp") no-repeat 55% 50%/40% , #0073b2;
  border-radius: 50%;
  border-style: none;
  height: 64px;
  width: 64px;
  transition: all 250ms ease-in-out;
}
.btn-play:hover {
  filter: contrast(200%);
}
.bottom {
  bottom: 0;
}
.bg-333333 {
  background: #333333;
}
.z-1 {
  z-index: 1;
}
.bg-0091d2 {
  background: #0091d2;
}
.color-f3f3f3 {
  fill: rgb(255, 255, 255);
  color: rgb(243, 243, 243);
}
.gtc-8-1fr-8-8-10-20 {
  grid-template-columns: 8% 1fr 8% 8% 10% 20%;
}
.gtc-10-1fr {
  grid-template-columns: 10% 1fr;
}
.row-span-2 {
  grid-row: span 2;
}
.col-span-2 {
  grid-column: span 2;
}
.col-span-full {
  grid-column: 1 / -1;
}
.w32px {
  width: 32px;
}
.ai-flex-start {
  align-items: flex-start;
}
.br24px {
  border-radius: 24px;
}
.bg-F4F4F4-h-0091D2 {
  background: linear-gradient(345deg, rgba(244,244,244,1) 50%, rgba(0,145,210,1) 50%);
  background-size: 300% 300%;
  background-position-x: center;
  background-position-y: 90%;
}
.bg-F4F4F4-h-0091D2:hover {
  background-position-y: 10%;
}
.h-color-fff:hover {
  color: rgb(255, 255, 255);
}
.gtc-1fr-1fr {
  grid-template-columns: 1fr 1fr;
}
.text-right {
  text-align: right;
}
.h-bg-f2f2f2:hover {
  background: #f2f2f2;
}
.bg-transparent {
  background-color: rgba(255, 255, 255, 0);
}
.h512px {
  height: 512px;
}
.h96px {
  height: 96px;
}
.w24px {
  width: 24px;
}
.h32px {
  height: 32px;
}
.b-2px-solid-e6e6e6 {
  border: 2px solid #e6e6e6;
}
.h-b-2px-solid-0073b2:hover {
  border: 2px solid #0073b2;
}
.border-none {
  border-style: none;
}
.h-bg-d9eaf3:hover {
  background: #d9eaf3;
}
.scale300 {
  transform: scale(3);
}
.h384px {
  height: 384px;
}
.w50 {
  width: 50%;
}
.color-666 {
  color: rgb(102, 102, 102);
}
.w72 {
  width: 72%;
}
.gtc-repeat5-1fr {
  grid-template-columns: repeat(5, 1fr);
}
.bg-lg-000-to-black {
  background: linear-gradient(0deg, rgba(0,0,0,1) 10%, rgba(255,255,255,0) 35%);
}
.gtc-8-32-auto {
  grid-template-columns: 8% 32% auto;
}
.bg-lg-0091d2-15489d {
  background: linear-gradient(180deg, rgba(0,145,210,1) 0%, rgba(21,72,157,1) 64%);
}
.mb-320px {
  margin-bottom: -320px;
}
.mt256px {
  margin-top: 256px;
}
.overflow-y-auto {
  overflow-y: auto;
}
.br-2px-solid-fff05 {
  border: 2px solid #ffffff85;
  border-top-width: 0;
  border-left-width: 0;
  border-bottom-width: 0;
}
.scale075 {
  transform: scale(0.75);
}
.gtc-1fr-auto-1fr {
  grid-template-columns: 1fr auto 1fr;
}
.jc-flex-end {
  justify-content: flex-end;
}
.stats-before-after {
  position: relative;
}
.stats-before-after::after {
  background: linear-gradient(90deg, rgba(0,115,178,1) 50%, rgba(242,242,242,1) 50%);
  content: "";
  border-radius: 4px;
  height: 18px;
  width: 48%;
  right: 0;
  bottom: -18px;
  position: absolute;
}
.stats-before-after::before {
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(242,242,242,1) 50%, rgba(102,102,102,1) 50%);
  width: 48%;
  height: 18px;
  position: absolute;
  bottom: -18px;
  left: 0;
  content: "";
}
 /* Content styling */
    .privacy-content h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      color: #06B6D4;
      
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    }
    
    .privacy-content h3 {
      font-weight: 600;
      font-size: 18px;
      color: #F59E0B;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    
    .privacy-content p {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
    
    .privacy-content ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }
    
    .privacy-content ul li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
    }
    
    .privacy-content ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.6rem;
      width: 6px;
      height: 6px;
      background: #06B6D4;
      border-radius: 50%;
    }
    
    .privacy-content a {
      color: #06B6D4;
      text-decoration: underline;
   
      transition: color 0.2s ease;
    }
    
    .privacy-content a:hover {
      color: #F59E0B;
    }
@media (max-width: 1386px) {
  .menu-burger {
    display: block;
  }
  
  .header-nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 24px;
    z-index: 99;
    overflow: scroll;
    width: 250px;
    background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6, 182, 212, 0.3) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(245, 158, 11, 0.2) 0%, transparent 50%), linear-gradient(180deg, #0A2540 0%, #0C4A6E 100%);
    padding-top: 50px;
    height: 100vh;
    padding-bottom: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .header-list-item-link:not(.header-list-item-link--active) {
    color: #fff;
  }
  
  .header-nav-list-mobile {
    align-items: flex-start;
    padding-left: 50px;
    backdrop-filter: blur(19px);
    font-weight: 700;
    transform: translateY(0);
  }
}