/* FRESH-1758498790-1758498790.8402 */
/* COMPILED SECTIONS CSS */
/* Built sections bundle - generated: 2025-09-04T21:06:07+00:00 */

/* ---- section: footer ---- */
/* Modern Footer Styles */
.section-footer {
    background-color: #1f2937;
    color: #f9fafb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Brand Column */
.footer-brand .footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: #f9fafb;
}

.footer-tagline {
    color: #9ca3af;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f9fafb;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #f9fafb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Lists */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #60a5fa;
}

/* Contact Info */
.footer-contact-info {
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #60a5fa;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-powered {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-brand-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-brand-link:hover {
    color: #93c5fd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-brand .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Dark mode compatibility */
[data-theme="light"] .section-footer {
    background-color: #f8f9fa;
    color: #1f2937;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-brand .footer-title {
    color: #1f2937;
}

[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-nav a,
[data-theme="light"] .footer-copyright,
[data-theme="light"] .footer-powered,
[data-theme="light"] .contact-item {
    color: #6b7280;
}

[data-theme="light"] .footer-social a {
    background-color: rgba(0, 0, 0, 0.05);
    color: #1f2937;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Animation for footer elements */
.footer-col {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---- section: header ---- */
/* Header section styles - SYNC TEST */
:root { --bg: #000; --text: #fff; --muted: #c7c7c7; --link: #e6e6e6; --accent: #0e3a2a; }
* { box-sizing: border-box; }

.section-header { margin: 0; padding: 0; }

header.topbar {
	position: sticky; top: 0; z-index: 50;
	background: linear-gradient(180deg, #000 0%, #070707 100%);
	border-bottom: 1px solid #0d0d0d;
}

.section-header .container {
	/* full-bleed header: span the entire viewport so brand/nav/right align to page edges */
	width: 100%; max-width: none; margin: 0; padding: 10px 32px;
	display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 24px;
	min-height: 56px;
}

.brand h1 {
    color: #ffffff;
    margin: 0;
    /* Auto-sync test */
}

.brand-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-link h1 {
    color: #ffffff;
    margin: 0;
}
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .08em; margin-top: 4px; white-space: nowrap; }

/* Debug test comment - white trigger */

/* Purple brand test */

/* Brand styling ends - Updated with cache busting */

/* constrain the nav so it centers nicely and has generous space on either side */
/* nav now centers across the full viewport */
nav.mainnav { display: flex; justify-content: center; width: 100%; max-width: none; }
nav.mainnav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
nav.mainnav li { position: relative; }
nav.mainnav a { position: relative; color: #e5f7ee; text-decoration: none; font-weight: 600; padding: 8px 0; letter-spacing: .04em; transition: 180ms ease; white-space: nowrap; }
nav.mainnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; background: currentColor; opacity: 0; transform: scaleX(.6); transition: 160ms ease; }
nav.mainnav a:hover { color: #fff; }
nav.mainnav a:hover::after { opacity: 1; transform: scaleX(1); }

.right { display: flex; align-items: center; gap: 12px; background: #0c271f; border: 1px solid #103829; padding: 8px 12px; border-radius: 8px; justify-self: end; min-width: 0; overflow: hidden; flex-shrink: 0; }

/* analog clock styles */
.analog-clock { position: relative; width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle, #1a3a2b 30%, #0f2218 100%); border: 2px solid #2d5a3d; flex-shrink: 0; }
.tick { position: absolute; width: 1px; height: 8px; background: #7fb899; top: 2px; left: 50%; transform-origin: center 16px; will-change: transform; }
.tick:nth-child(3n) { height: 10px; top: 1px; background: #a8d4b8; }
.hand { position: absolute; left: 50%; top: 50%; transform-origin: center center; background: #fff; border-radius: 2px; will-change: transform; }
.analog-clock .hand.hour { width: 3px; height: 10px; margin-top: -5px; margin-left: -1.5px; }
.analog-clock .hand.minute { width: 2px; height: 15px; margin-top: -7.5px; margin-left: -1px; }
.analog-clock .hand.second { width: 1px; height: 17px; background: #ffeb99; margin-top: -8.5px; margin-left: -0.5px; }
.analog-clock .pivot { position: absolute; width: 5px; height: 5px; border-radius: 999px; background: #fff; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 2px rgba(0,0,0,.2); z-index: 10; }

.countdown { display: grid; grid-auto-flow: column; gap: 8px; align-items: center; min-width: 0; overflow: hidden; flex-shrink: 0; }
.cd-block { display: grid; grid-template-rows: auto auto; justify-items: center; min-width: 40px; }
.cd-value { font-weight: 800; font-size: 15.4px; letter-spacing: .06em; color: #ffffff; }
.cd-label { color: #ffffff; font-size: 9.9px; letter-spacing: .18em; text-transform: uppercase; opacity: .9; }
.cd-sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); align-self: center; }

.menu-btn { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid #1a1a1a; background: #0e0e0e; justify-self: end; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; content: ""; width: 20px; height: 2px; background: #fff; position: relative; border-radius: 2px; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }

.mobile-panel { 
	display: none; 
	position: fixed; 
	top: 0; 
	right: -100%; 
	bottom: 0; 
	width: 300px; 
	max-width: 80vw;
	background: rgba(0,0,0,0.95); 
	backdrop-filter: blur(8px); 
	z-index: 1000; 
	overflow-y: auto;
	transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.mobile-panel.open { 
	display: block; 
	right: 0 !important; 
}
.mobile-panel ul { list-style: none; padding: 60px 20px 20px; margin: 0; }
.mobile-panel li { margin-bottom: 16px; }
.mobile-panel a { color: #fff; text-decoration: none; font-weight: 600; font-size: 18px; display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s ease; }
.mobile-panel a:hover { color: #b3d9c4; }

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.mobile-panel .close-btn{
	position: absolute; top: 12px; right: 12px; background: transparent; border: none; color: #fff; font-size: 26px; line-height: 1; padding: 6px 8px; cursor: pointer; border-radius: 6px; z-index: 10;
}
.mobile-panel .close-btn:focus{ outline: 2px solid rgba(255,255,255,0.12); }

/* Mobile overlay backdrop */
.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.mobile-overlay.open {
	display: block;
	opacity: 1;
}

@media (max-width: 820px) {
	nav.mainnav { display: none; }
	.menu-btn { display: flex; }
	.mobile-panel { display: block; }
	
	.section-header .container {
		padding: 10px 16px; /* Reduce padding on mobile */
		gap: 16px; /* Reduce gap */
		grid-template-columns: auto 1fr auto; /* Keep menu button on right */
	}
	
	/* Hide countdown/clock on mobile but keep them in DOM to prevent JS errors */
	.right { 
		display: none !important;
		visibility: hidden;
		position: absolute;
		left: -9999px;
		pointer-events: none;
	}
	
	/* Make brand more compact on mobile */
	.brand h1 { font-size: 18px; }
	.brand small { font-size: 10px; }
}

@media (min-width: 821px) {
	.analog-clock { width: 42px; height: 42px; }
	.tick { transform-origin: center 19px; } /* Adjust for larger clock */
	.analog-clock .hand.hour { height: 12px; margin-top: -6px; }
	.analog-clock .hand.minute { height: 18px; margin-top: -9px; }
	.analog-clock .hand.second { height: 20px; margin-top: -10px; }
	.brand h1 { font-size: 22px; }
}


/* ---- section: hero ---- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* Hero section styles - Clean, reliable approach */
.section-hero.hero{
	position: relative;
	overflow: hidden;
	color: #fff;
}

/* Standard height options */
.hero-medium{ height: 420px; }
.hero-large{ height: 680px; }

/* Full screen hero - True viewport full screen */
.hero-full { 
  position: relative !important;
  width: 100vw !important;
  height: calc(100vh - 70px) !important; /* Full screen minus header height */
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  /* Force viewport dimensions - override any container constraints */
  min-width: 100vw !important;
  min-height: calc(100vh - 70px) !important;
  /* Break out of any flex/grid containers */
  transform: none !important;
  flex: none !important;
  grid-column: 1 / -1 !important;
  grid-row: 1 / -1 !important;
  /* Make it break out of page margins */
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* Also reset body margins when hero is full screen */
.hero-full ~ * {
  margin: 0;
  padding: 0;
}

/* Force body to have no margins when full screen hero is present */
body:has(.hero-full) {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Full screen hero positioning fix */
.hero-full {
  /* Pull the hero to full viewport edges using negative margins */
  position: relative;
}

/* Ensure header stays on top when hero is full screen */
header.topbar {
  position: sticky !important;
  z-index: 100 !important;
}

/* Carousel container */
.hero-slides{ 
  position: relative; 
  display: flex; 
  width: 100%; 
  height: 100%; 
  transition: transform .45s ease; 
  will-change: transform; 
}

/* Individual slides */
.hero-slide{ 
  position: relative; 
  min-width: 100%; 
  flex: 0 0 100%; 
  opacity: 1; 
  visibility: visible; 
  display: block; 
}

/* Images - Standard responsive approach */
.hero-image{ 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

/* Full screen specific image handling */
.hero-full .hero-slides,
.hero-full .hero-slide,
.hero-full .hero-image {
  height: calc(100vh - 70px) !important; /* Match container height */
  width: 100vw !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 100vw !important;
  min-height: calc(100vh - 70px) !important;
}

/* Overlay */
.hero-overlay{ 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%), var(--hero-overlay); 
}

/* Content positioning */
.hero-content{ 
  position: absolute; 
  inset: 0; 
  padding: 2rem; 
  z-index: 3; 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
}

.hero-content-inner{ 
  max-width: 600px; 
  margin: 0 auto; 
}

/* Typography */
.hero-title{ 
  font-size: clamp(30px, 6.5vw, 72px); 
  line-height: 0.98; 
  margin: 0 0 .25rem; 
  letter-spacing: 1px; 
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(0,0,0,0.6); 
}

.hero-subtitle{ 
  font-size: clamp(14px, 1.6vw, 20px); 
  margin: 0 0 1rem; 
  opacity: .95; 
}

/* Call to action */
.hero-cta{ 
  display: inline-block; 
  background: #b98f4a; 
  color: #fff; 
  padding: .65rem 1.4rem; 
  border-radius: 2px; 
  text-decoration: none; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-size: 0.95rem; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.55); 
  border: 1px solid rgba(0,0,0,0.12); 
}

.hero-cta:hover{ 
  background: #a97f3b; 
  transform: translateY(-1px); 
}

/* Navigation arrows */
.hero-arrow{ 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(0,0,0,0.35); 
  border: none; 
  color: #fff; 
  padding: .5rem .75rem; 
  font-size: 1.5rem; 
  z-index: 5; 
  cursor: pointer; 
}

.hero-arrow--prev{ left: 1rem; }
.hero-arrow--next{ right: 1rem; }

/* Dots navigation */
.hero-dots{ 
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
  bottom: 80px; /* Moved up from 28px */
  display: flex; 
  gap: .5rem; 
  z-index: 6; 
}

.hero-dots button{ 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.35); 
  border: none; 
  padding: 0; 
  box-shadow: 0 1px 2px rgba(0,0,0,0.3); 
}

.hero-dots button[aria-selected="true"]{ 
  background: #fff; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.4); 
}

/* Responsive design */
@media(min-width: 768px){
	.hero-content{ padding-bottom: 90px; }
}

@media (min-width: 768px){
	.hero-content{ left: 3rem; right: 3rem; bottom: 3rem; text-align: left; }
	.hero-title{ font-size: 3rem; }
	.hero-subtitle{ font-size: 1.25rem; }
}

/* Mobile optimizations for full screen */
@media (max-width: 768px) {
  .hero-full {
    width: 100vw !important;
    height: calc(100vh - 60px) !important; /* Smaller header on mobile */
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  .hero-full .hero-slides,
  .hero-full .hero-slide,
  .hero-full .hero-image {
    height: calc(100vh - 60px) !important;
  }
  
  .hero-arrow {
    display: none; /* Hide arrows on mobile for touch interaction */
  }
  
  .hero-dots button {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
    padding-bottom: 2rem;
  }
}



/* ---- section: sponsors ---- */
/* Sponsors Marquee Section Styles */
.section-sponsors {
  padding: 3rem 0;
  background: #f8f9fa;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header styling */
.sponsors-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.sponsors-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.sponsors-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Marquee container */
.sponsors-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, 
    rgba(248, 249, 250, 1) 0%, 
    rgba(248, 249, 250, 0) 5%, 
    rgba(248, 249, 250, 0) 95%, 
    rgba(248, 249, 250, 1) 100%
  );
}

/* Track that holds the logos */
.sponsors-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  animation: scrollLeft var(--scroll-speed, 34s) linear infinite;
}

/* Pause animation on hover */
.sponsors-marquee.pause-on-hover:hover .sponsors-track {
  animation-play-state: paused;
}

/* Scroll animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Logo styling */
.sponsor-logo {
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1) opacity(0.85);
  transition: all 0.3s ease;
  display: block;
}

.sponsor-logo:hover,
.sponsor-link:hover .sponsor-logo {
  filter: none;
  transform: translateY(-4px);
}

/* No grayscale variant */
.section-sponsors.no-grayscale .sponsor-logo {
  filter: none;
  opacity: 1;
}

.section-sponsors.no-grayscale .sponsor-logo:hover,
.section-sponsors.no-grayscale .sponsor-link:hover .sponsor-logo {
  filter: none;
  transform: translateY(-4px);
}

/* Link styling */
.sponsor-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sponsor-link:focus {
  outline: 2px solid var(--admin-accent, #000000);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Size variants */
.sponsors-small .sponsor-logo {
  width: 120px;
  max-height: 60px;
}

.sponsors-medium .sponsor-logo {
  width: 160px;
  max-height: 80px;
}

.sponsors-large .sponsor-logo {
  width: 200px;
  max-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-sponsors {
    padding: 2rem 0;
  }
  
  .sponsors-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .sponsors-track {
    gap: 1.5rem;
  }
  
  .sponsors-small .sponsor-logo {
    width: 100px;
    max-height: 50px;
  }
  
  .sponsors-medium .sponsor-logo {
    width: 130px;
    max-height: 65px;
  }
  
  .sponsors-large .sponsor-logo {
    width: 150px;
    max-height: 75px;
  }
  
  /* Faster scroll on mobile */
  .sponsors-track {
    animation-duration: calc(var(--scroll-speed, 34s) * 0.7);
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .sponsors-track {
    animation-duration: calc(var(--scroll-speed, 34s) * 3);
  }
  
  .sponsor-logo:hover,
  .sponsor-link:hover .sponsor-logo {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .sponsor-logo {
    filter: grayscale(100%) contrast(1.2) opacity(1);
    border: 2px solid #333;
  }
  
  .sponsor-logo:hover,
  .sponsor-link:hover .sponsor-logo {
    filter: none;
  border-color: var(--admin-accent, #000000);
  }
}


/* ---- section: tournament-schedule ---- */
/* Tournament Schedule Section */
.tournament-schedule {
  background: var(--bg-color, #1b1f24);
  padding: 60px 24px;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.tournament-schedule__container {
  width: min(1100px, 100%);
}

.tournament-schedule__header {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.tournament-schedule__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.tournament-schedule__subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tournament-schedule__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .tournament-schedule__grid {
    grid-template-columns: 1fr;
  }
  
  .tournament-schedule__title {
    font-size: 36px;
  }
  
  .tournament-schedule {
    padding: 40px 16px;
  }
}

.tournament-schedule__card {
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.tournament-schedule__card-header {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 28px 16px 18px;
  position: relative;
}

.tournament-schedule__dow {
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 600;
}

.tournament-schedule__date {
  font-size: 56px;
  line-height: 1;
  margin: 6px 0 2px;
  font-weight: 700;
}

.tournament-schedule__month {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.tournament-schedule__daynum {
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d9d9d9;
}

.tournament-schedule__session-bar {
  background: var(--accent-color, #a38c5b);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
}

.tournament-schedule__time {
  font-weight: 700;
  font-size: 13px;
}

.tournament-schedule__session {
  padding: 18px 14px 6px;
}

.tournament-schedule__session:last-child {
  padding-bottom: 20px;
}

.tournament-schedule__match {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
}

.tournament-schedule__team {
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}

.tournament-schedule__team--1 {
  color: var(--team1-color, #143f67);
}

.tournament-schedule__team--2 {
  color: var(--team2-color, #7a2328);
}

.tournament-schedule__match-info {
  text-align: center;
}

.tournament-schedule__match-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.tournament-schedule__match-type {
  font-size: 11px;
  text-transform: uppercase;
  color: #6b7280;
}

.tournament-schedule__note {
  margin: -8px 0 10px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

/* Dark mode and responsive adjustments */
@media (max-width: 640px) {
  .tournament-schedule__match {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  
  .tournament-schedule__team {
    font-size: 16px;
  }
  
  .tournament-schedule__match-info {
    order: -1;
    margin-bottom: 8px;
  }
  
  .tournament-schedule__date {
    font-size: 48px;
  }
}



/* FOOTER SECTION CSS - CACHE BUSTED */
/* Modern Footer Styles */
.section-footer {
    background-color: #1f2937;
    color: #f9fafb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* Brand Column */
.footer-brand .footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: #f9fafb;
}

.footer-tagline {
    color: #9ca3af;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f9fafb;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Footer Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #f9fafb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation Lists */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #60a5fa;
}

/* Contact Info */
.footer-contact-info {
    margin-top: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #60a5fa;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-powered {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-brand-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-brand-link:hover {
    color: #93c5fd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-brand .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* Dark mode compatibility */
[data-theme="light"] .section-footer {
    background-color: #f8f9fa;
    color: #1f2937;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-brand .footer-title {
    color: #1f2937;
}

[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-nav a,
[data-theme="light"] .footer-copyright,
[data-theme="light"] .footer-powered,
[data-theme="light"] .contact-item {
    color: #6b7280;
}

[data-theme="light"] .footer-social a {
    background-color: rgba(0, 0, 0, 0.05);
    color: #1f2937;
}

[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Animation for footer elements */
.footer-col {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* HEADER SECTION CSS - CACHE BUSTED */
/* Header section styles - SYNC TEST */
:root { --bg: #000; --text: #fff; --muted: #c7c7c7; --link: #e6e6e6; --accent: #0e3a2a; }
* { box-sizing: border-box; }

.section-header { margin: 0; padding: 0; }

header.topbar {
	position: sticky; top: 0; z-index: 50;
	background: linear-gradient(180deg, #000 0%, #070707 100%);
	border-bottom: 1px solid #0d0d0d;
}

.section-header .container {
	/* full-bleed header: span the entire viewport so brand/nav/right align to page edges */
	width: 100%; max-width: none; margin: 0; padding: 10px 32px;
	display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 24px;
	min-height: 56px;
}

.brand h1 {
    color: #ffffff;
    margin: 0;
    /* Auto-sync test */
}

.brand-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.brand-link:hover {
    opacity: 0.8;
}

.brand-link h1 {
    color: #ffffff;
    margin: 0;
}
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .08em; margin-top: 4px; white-space: nowrap; }

/* Debug test comment - white trigger */

/* Purple brand test */

/* Brand styling ends - Updated with cache busting */

/* constrain the nav so it centers nicely and has generous space on either side */
/* nav now centers across the full viewport */
nav.mainnav { display: flex; justify-content: center; width: 100%; max-width: none; }
nav.mainnav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
nav.mainnav li { position: relative; }
nav.mainnav a { position: relative; color: #e5f7ee; text-decoration: none; font-weight: 600; padding: 8px 0; letter-spacing: .04em; transition: 180ms ease; white-space: nowrap; }
nav.mainnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; background: currentColor; opacity: 0; transform: scaleX(.6); transition: 160ms ease; }
nav.mainnav a:hover { color: #fff; }
nav.mainnav a:hover::after { opacity: 1; transform: scaleX(1); }

.right { display: flex; align-items: center; gap: 12px; background: #0c271f; border: 1px solid #103829; padding: 8px 12px; border-radius: 8px; justify-self: end; min-width: 0; overflow: hidden; flex-shrink: 0; }

/* analog clock styles */
.analog-clock { position: relative; width: 36px; height: 36px; border-radius: 50%; background: radial-gradient(circle, #1a3a2b 30%, #0f2218 100%); border: 2px solid #2d5a3d; flex-shrink: 0; }
.tick { position: absolute; width: 1px; height: 8px; background: #7fb899; top: 2px; left: 50%; transform-origin: center 16px; will-change: transform; }
.tick:nth-child(3n) { height: 10px; top: 1px; background: #a8d4b8; }
.hand { position: absolute; left: 50%; top: 50%; transform-origin: center center; background: #fff; border-radius: 2px; will-change: transform; }
.analog-clock .hand.hour { width: 3px; height: 10px; margin-top: -5px; margin-left: -1.5px; }
.analog-clock .hand.minute { width: 2px; height: 15px; margin-top: -7.5px; margin-left: -1px; }
.analog-clock .hand.second { width: 1px; height: 17px; background: #ffeb99; margin-top: -8.5px; margin-left: -0.5px; }
.analog-clock .pivot { position: absolute; width: 5px; height: 5px; border-radius: 999px; background: #fff; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 2px rgba(0,0,0,.2); z-index: 10; }

.countdown { display: grid; grid-auto-flow: column; gap: 8px; align-items: center; min-width: 0; overflow: hidden; flex-shrink: 0; }
.cd-block { display: grid; grid-template-rows: auto auto; justify-items: center; min-width: 40px; }
.cd-value { font-weight: 800; font-size: 15.4px; letter-spacing: .06em; color: #ffffff; }
.cd-label { color: #ffffff; font-size: 9.9px; letter-spacing: .18em; text-transform: uppercase; opacity: .9; }
.cd-sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); align-self: center; }

.menu-btn { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid #1a1a1a; background: #0e0e0e; justify-self: end; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; content: ""; width: 20px; height: 2px; background: #fff; position: relative; border-radius: 2px; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }

.mobile-panel { 
	display: none; 
	position: fixed; 
	top: 0; 
	right: -100%; 
	bottom: 0; 
	width: 300px; 
	max-width: 80vw;
	background: rgba(0,0,0,0.95); 
	backdrop-filter: blur(8px); 
	z-index: 1000; 
	overflow-y: auto;
	transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.mobile-panel.open { 
	display: block; 
	right: 0 !important; 
}
.mobile-panel ul { list-style: none; padding: 60px 20px 20px; margin: 0; }
.mobile-panel li { margin-bottom: 16px; }
.mobile-panel a { color: #fff; text-decoration: none; font-weight: 600; font-size: 18px; display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s ease; }
.mobile-panel a:hover { color: #b3d9c4; }

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.mobile-panel .close-btn{
	position: absolute; top: 12px; right: 12px; background: transparent; border: none; color: #fff; font-size: 26px; line-height: 1; padding: 6px 8px; cursor: pointer; border-radius: 6px; z-index: 10;
}
.mobile-panel .close-btn:focus{ outline: 2px solid rgba(255,255,255,0.12); }

/* Mobile overlay backdrop */
.mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.mobile-overlay.open {
	display: block;
	opacity: 1;
}

@media (max-width: 820px) {
	nav.mainnav { display: none; }
	.menu-btn { display: flex; }
	.mobile-panel { display: block; }
	
	.section-header .container {
		padding: 10px 16px; /* Reduce padding on mobile */
		gap: 16px; /* Reduce gap */
		grid-template-columns: auto 1fr auto; /* Keep menu button on right */
	}
	
	/* Hide countdown/clock on mobile but keep them in DOM to prevent JS errors */
	.right { 
		display: none !important;
		visibility: hidden;
		position: absolute;
		left: -9999px;
		pointer-events: none;
	}
	
	/* Make brand more compact on mobile */
	.brand h1 { font-size: 18px; }
	.brand small { font-size: 10px; }
}

@media (min-width: 821px) {
	.analog-clock { width: 42px; height: 42px; }
	.tick { transform-origin: center 19px; } /* Adjust for larger clock */
	.analog-clock .hand.hour { height: 12px; margin-top: -6px; }
	.analog-clock .hand.minute { height: 18px; margin-top: -9px; }
	.analog-clock .hand.second { height: 20px; margin-top: -10px; }
	.brand h1 { font-size: 22px; }
}


/* HERO SECTION CSS - CACHE BUSTED */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

/* Hero section styles - Clean, reliable approach */
.section-hero.hero{
	position: relative;
	overflow: hidden;
	color: #fff;
}

/* Standard height options */
.hero-medium{ height: 420px; }
.hero-large{ height: 680px; }

/* Full screen hero - True viewport full screen */
.hero-full { 
  position: relative !important;
  width: 100vw !important;
  height: calc(100vh - 70px) !important; /* Full screen minus header height */
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  /* Force viewport dimensions - override any container constraints */
  min-width: 100vw !important;
  min-height: calc(100vh - 70px) !important;
  /* Break out of any flex/grid containers */
  transform: none !important;
  flex: none !important;
  grid-column: 1 / -1 !important;
  grid-row: 1 / -1 !important;
  /* Make it break out of page margins */
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* Also reset body margins when hero is full screen */
.hero-full ~ * {
  margin: 0;
  padding: 0;
}

/* Force body to have no margins when full screen hero is present */
body:has(.hero-full) {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* Full screen hero positioning fix */
.hero-full {
  /* Pull the hero to full viewport edges using negative margins */
  position: relative;
}

/* Ensure header stays on top when hero is full screen */
header.topbar {
  position: sticky !important;
  z-index: 100 !important;
}

/* Carousel container */
.hero-slides{ 
  position: relative; 
  display: flex; 
  width: 100%; 
  height: 100%; 
  transition: transform .45s ease; 
  will-change: transform; 
}

/* Individual slides */
.hero-slide{ 
  position: relative; 
  min-width: 100%; 
  flex: 0 0 100%; 
  opacity: 1; 
  visibility: visible; 
  display: block; 
}

/* Images - Standard responsive approach */
.hero-image{ 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

/* Full screen specific image handling */
.hero-full .hero-slides,
.hero-full .hero-slide,
.hero-full .hero-image {
  height: calc(100vh - 70px) !important; /* Match container height */
  width: 100vw !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 100vw !important;
  min-height: calc(100vh - 70px) !important;
}

/* Overlay */
.hero-overlay{ 
  position: absolute; 
  inset: 0; 
  pointer-events: none; 
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%), var(--hero-overlay); 
}

/* Content positioning */
.hero-content{ 
  position: absolute; 
  inset: 0; 
  padding: 2rem; 
  z-index: 3; 
  display: flex; 
  align-items: flex-end; 
  justify-content: center; 
}

.hero-content-inner{ 
  max-width: 600px; 
  margin: 0 auto; 
}

/* Typography */
.hero-title{ 
  font-size: clamp(30px, 6.5vw, 72px); 
  line-height: 0.98; 
  margin: 0 0 .25rem; 
  letter-spacing: 1px; 
  font-weight: 700;
  text-shadow: 0 8px 20px rgba(0,0,0,0.6); 
}

.hero-subtitle{ 
  font-size: clamp(14px, 1.6vw, 20px); 
  margin: 0 0 1rem; 
  opacity: .95; 
}

/* Call to action */
.hero-cta{ 
  display: inline-block; 
  background: #b98f4a; 
  color: #fff; 
  padding: .65rem 1.4rem; 
  border-radius: 2px; 
  text-decoration: none; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-size: 0.95rem; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.55); 
  border: 1px solid rgba(0,0,0,0.12); 
}

.hero-cta:hover{ 
  background: #a97f3b; 
  transform: translateY(-1px); 
}

/* Navigation arrows */
.hero-arrow{ 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(0,0,0,0.35); 
  border: none; 
  color: #fff; 
  padding: .5rem .75rem; 
  font-size: 1.5rem; 
  z-index: 5; 
  cursor: pointer; 
}

.hero-arrow--prev{ left: 1rem; }
.hero-arrow--next{ right: 1rem; }

/* Dots navigation */
.hero-dots{ 
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%); 
  bottom: 80px; /* Moved up from 28px */
  display: flex; 
  gap: .5rem; 
  z-index: 6; 
}

.hero-dots button{ 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.35); 
  border: none; 
  padding: 0; 
  box-shadow: 0 1px 2px rgba(0,0,0,0.3); 
}

.hero-dots button[aria-selected="true"]{ 
  background: #fff; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.4); 
}

/* Responsive design */
@media(min-width: 768px){
	.hero-content{ padding-bottom: 90px; }
}

@media (min-width: 768px){
	.hero-content{ left: 3rem; right: 3rem; bottom: 3rem; text-align: left; }
	.hero-title{ font-size: 3rem; }
	.hero-subtitle{ font-size: 1.25rem; }
}

/* Mobile optimizations for full screen */
@media (max-width: 768px) {
  .hero-full {
    width: 100vw !important;
    height: calc(100vh - 60px) !important; /* Smaller header on mobile */
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  .hero-full .hero-slides,
  .hero-full .hero-slide,
  .hero-full .hero-image {
    height: calc(100vh - 60px) !important;
  }
  
  .hero-arrow {
    display: none; /* Hide arrows on mobile for touch interaction */
  }
  
  .hero-dots button {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .hero-content {
    padding: 1rem;
    padding-bottom: 2rem;
  }
}



/* SPONSORS SECTION CSS - CACHE BUSTED */
/* Sponsors Marquee Section Styles */
.section-sponsors {
  padding: 3rem 0;
  background: #f8f9fa;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
}

/* Header styling */
.sponsors-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.sponsors-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}

.sponsors-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Marquee container */
.sponsors-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, 
    rgba(248, 249, 250, 1) 0%, 
    rgba(248, 249, 250, 0) 5%, 
    rgba(248, 249, 250, 0) 95%, 
    rgba(248, 249, 250, 1) 100%
  );
}

/* Track that holds the logos */
.sponsors-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  animation: scrollLeft var(--scroll-speed, 34s) linear infinite;
}

/* Pause animation on hover */
.sponsors-marquee.pause-on-hover:hover .sponsors-track {
  animation-play-state: paused;
}

/* Scroll animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Logo styling */
.sponsor-logo {
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1) opacity(0.85);
  transition: all 0.3s ease;
  display: block;
}

.sponsor-logo:hover,
.sponsor-link:hover .sponsor-logo {
  filter: none;
  transform: translateY(-4px);
}

/* No grayscale variant */
.section-sponsors.no-grayscale .sponsor-logo {
  filter: none;
  opacity: 1;
}

.section-sponsors.no-grayscale .sponsor-logo:hover,
.section-sponsors.no-grayscale .sponsor-link:hover .sponsor-logo {
  filter: none;
  transform: translateY(-4px);
}

/* Link styling */
.sponsor-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sponsor-link:focus {
  outline: 2px solid #007bff;
  outline-offset: 4px;
  border-radius: 8px;
}

/* Size variants */
.sponsors-small .sponsor-logo {
  width: 120px;
  max-height: 60px;
}

.sponsors-medium .sponsor-logo {
  width: 160px;
  max-height: 80px;
}

.sponsors-large .sponsor-logo {
  width: 200px;
  max-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-sponsors {
    padding: 2rem 0;
  }
  
  .sponsors-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  
  .sponsors-track {
    gap: 1.5rem;
  }
  
  .sponsors-small .sponsor-logo {
    width: 100px;
    max-height: 50px;
  }
  
  .sponsors-medium .sponsor-logo {
    width: 130px;
    max-height: 65px;
  }
  
  .sponsors-large .sponsor-logo {
    width: 150px;
    max-height: 75px;
  }
  
  /* Faster scroll on mobile */
  .sponsors-track {
    animation-duration: calc(var(--scroll-speed, 34s) * 0.7);
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .sponsors-track {
    animation-duration: calc(var(--scroll-speed, 34s) * 3);
  }
  
  .sponsor-logo:hover,
  .sponsor-link:hover .sponsor-logo {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .sponsor-logo {
    filter: grayscale(100%) contrast(1.2) opacity(1);
    border: 2px solid #333;
  }
  
  .sponsor-logo:hover,
  .sponsor-link:hover .sponsor-logo {
    filter: none;
    border-color: #007bff;
  }
}


/* TOURNAMENT-SCHEDULE SECTION CSS - CACHE BUSTED */
/* Tournament Schedule Section */
.tournament-schedule {
  background: var(--bg-color, #1b1f24);
  padding: 60px 24px;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.tournament-schedule__container {
  width: min(1100px, 100%);
}

.tournament-schedule__header {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.tournament-schedule__title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.tournament-schedule__subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tournament-schedule__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .tournament-schedule__grid {
    grid-template-columns: 1fr;
  }
  
  .tournament-schedule__title {
    font-size: 36px;
  }
  
  .tournament-schedule {
    padding: 40px 16px;
  }
}

.tournament-schedule__card {
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.tournament-schedule__card-header {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 28px 16px 18px;
  position: relative;
}

.tournament-schedule__dow {
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 600;
}

.tournament-schedule__date {
  font-size: 56px;
  line-height: 1;
  margin: 6px 0 2px;
  font-weight: 700;
}

.tournament-schedule__month {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.tournament-schedule__daynum {
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d9d9d9;
}

.tournament-schedule__session-bar {
  background: var(--accent-color, #a38c5b);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 14px;
}

.tournament-schedule__time {
  font-weight: 700;
  font-size: 13px;
}

.tournament-schedule__session {
  padding: 18px 14px 6px;
}

.tournament-schedule__session:last-child {
  padding-bottom: 20px;
}

.tournament-schedule__match {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 10px;
}

.tournament-schedule__team {
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}

.tournament-schedule__team--1 {
  color: var(--team1-color, #143f67);
}

.tournament-schedule__team--2 {
  color: var(--team2-color, #7a2328);
}

.tournament-schedule__match-info {
  text-align: center;
}

.tournament-schedule__match-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.tournament-schedule__match-type {
  font-size: 11px;
  text-transform: uppercase;
  color: #6b7280;
}

.tournament-schedule__note {
  margin: -8px 0 10px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

/* Dark mode and responsive adjustments */
@media (max-width: 640px) {
  .tournament-schedule__match {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  
  .tournament-schedule__team {
    font-size: 16px;
  }
  
  .tournament-schedule__match-info {
    order: -1;
    margin-bottom: 8px;
  }
  
  .tournament-schedule__date {
    font-size: 48px;
  }
}
