/* 
     * OFFICIAL KEMAH VIBRANT COASTAL CULINARY PALETTE 
     */
    :root {
      --boardwalk-blue: #0f172a; /* Deep Ocean Blue */
      --coastal-cyan: #ea580c;   /* Sunset Coral (appetizing, energetic) */
      --sunny-yellow: #facc15;   /* Sunshine Yellow */
      --bg-light: #fafaf9;       /* Sandy Cream */
      --clean-white: #ffffff;    /* Pure White */
      --text-dark: #0f172a;      /* Deep Ocean Blue Text */
      /* Typography */
      --font-display: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
      
      --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.05);
      --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 25px 50px rgba(15, 23, 42, 0.12);
      --shadow-solid: 0 10px 30px rgba(234, 88, 12, 0.15); /* Warm diffused shadow */
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-padding-top: 100px; scroll-behavior: smooth; scroll-behavior: smooth; }

    body {
      background-color: var(--bg-light); /* Warmer default background */
      color: var(--text-dark);
      font-family: var(--font-body);
      line-height: 1.6;
      
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, .display {
      font-family: var(--font-display);
      font-weight: 900;
      line-height: 1.1;
    }

    /* Vibrant Navigation */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 2rem;
      display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
      position: sticky; top: 0; z-index: 1000;
      border-bottom: 1px solid rgba(15, 23, 42, 0.05);
      box-shadow: var(--shadow-sm);
    }
    .brand {
      font-size: 1.8rem; font-weight: 900; color: var(--boardwalk-blue);
      display: flex; align-items: center; gap: 0.8rem; text-decoration: none;
      font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
    }
    .brand img { height: 45px; border-radius: 50%; border: 2px solid var(--sunny-yellow); }
    
    .nav-links { display: flex; gap: 2rem; align-items: center; }
    .nav-links a {
      font-weight: 700; font-size: 1.05rem; text-transform: uppercase;
      color: var(--boardwalk-blue); text-decoration: none;
      transition: color 0.2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 3px;
      background: var(--coastal-cyan); transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.highlight {
      background: var(--sunny-yellow); padding: 0.5rem 1.2rem; border-radius: 8px;
      color: var(--boardwalk-blue);
    }
    .nav-links a.highlight::after { display: none; }
    .nav-links a.highlight:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

    /* Dynamic Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      padding: 0.8rem 2rem; border-radius: 16px; font-weight: 800; font-size: 1.2rem;
      text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: none; text-decoration: none;
      font-family: var(--font-display);
      line-height: 1;
    }
    .btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    
    .btn-navy {
      background-color: var(--boardwalk-blue); color: var(--clean-white);
      box-shadow: var(--shadow-sm);
    }

    .btn-cyan {
      background-color: var(--coastal-cyan); color: var(--clean-white);
      box-shadow: var(--shadow-sm);
    }
    .btn-cyan:hover { background-color: var(--boardwalk-blue); color: var(--clean-white); }

    /* --- HERO SECTION --- */
    .hero {
      position: relative; min-height: 90vh; display: flex; align-items: center;
      background: var(--boardwalk-blue); overflow: hidden;
    }
    .hero-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background-attachment: fixed;
      background-size: cover; background-position: center; background-repeat: no-repeat;
      opacity: 0.85; z-index: 1;
    }
    .hero-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(234, 88, 12, 0.4) 100%);
      z-index: 2;
    }
    .hero-content {
      position: relative; z-index: 10; max-width: 1200px; margin: 0 auto;
      padding: 6rem 2rem 2rem; text-align: center; color: var(--clean-white);
    }
    .hero-badge {
      display: inline-block; background: var(--sunny-yellow); color: var(--boardwalk-blue);
      font-family: var(--font-display); font-weight: 900; font-size: 1.2rem;
      padding: 0.5rem 1.5rem; border-radius: 8px; text-transform: uppercase;
      letter-spacing: 2px; margin-bottom: 1.5rem; transform: rotate(-2deg);
      box-shadow: var(--shadow-md);
    }
    .hero h1 {
      font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 1rem;
      letter-spacing: -1px;
    }
    .hero h2 {
      font-size: clamp(1.2rem, 3vw, 2.2rem); font-family: var(--font-body); font-weight: 400;
      margin-bottom: 2rem; color: var(--bg-light); max-width: 800px; margin-inline: auto;
    }
    
    .countdown-grid {
      display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem;
    }
    .time-box {
      background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.3); padding: 1rem; border-radius: 12px;
      min-width: 90px; box-shadow: var(--shadow-md);
    }
    .time-box span {
      display: block; font-size: 2.8rem; font-family: var(--font-display);
      font-weight: 900; line-height: 1; color: var(--sunny-yellow);
    }
    .time-box label {
      font-size: 0.9rem; text-transform: uppercase; font-weight: 700; letter-spacing: 2px;
    }

    /* SVG Coastal Wave Divider */
    .wave-divider {
      position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 10;
    }
    .wave-divider svg { display: block; width: calc(100% + 1.3px); height: 80px; }
    .wave-divider .shape-fill { fill: var(--bg-light); }

    /* --- SECTION STYLING --- */
    .section { padding: 4rem 2rem; position: relative; }
    .bg-ice { background-color: var(--clean-white); } /* Swapped ice for clean white to contrast with bg-light */
    .bg-white { background-color: var(--clean-white); }
    .bg-navy { background-color: var(--boardwalk-blue); color: var(--clean-white); }
    
    .container { max-width: 1200px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-title { font-size: 4rem; color: var(--boardwalk-blue); margin-bottom: 1rem; position: relative; display: inline-block; }
    .bg-navy .section-title { color: var(--sunny-yellow); }
    .section-title::after {
      content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
      width: 80px; height: 6px; background: var(--coastal-cyan); border-radius: 3px;
    }
    .section-desc { font-size: 1.3rem; max-width: 700px; margin: 1.5rem auto 0; color: var(--text-dark); }
    .bg-navy .section-desc { color: var(--bg-light); }

    /* --- BENTO BOX (THE VIBE) --- */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 300px);
      gap: 1.5rem;
    }
    .bento-item { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer;
      border-radius: 16px; overflow: hidden; position: relative;
      box-shadow: var(--shadow-sm); transition: transform 0.3s ease;
    }
    .bento-item:hover { transform: translateY(-6px); z-index: 5; box-shadow: var(--shadow-md); }
    .bento-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .bento-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15); }
      .bento-item:hover .bento-img { transform: scale(1.05); }
    .bento-overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
      display: flex; align-items: flex-end; padding: 2rem;
    }
    .bento-title { color: var(--clean-white); font-size: 2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
    
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-wide { grid-column: span 2; }

    /* --- TICKETS (CIVIC CARDS) --- */
    .tickets-wrapper {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem;
    }
    .civic-card {
      background: var(--clean-white); 
      border-radius: 20px; padding: 2.5rem 1.5rem; text-align: center; position: relative;
      box-shadow: var(--shadow-md); transition: all 0.3s ease;
      display: flex; flex-direction: column;
      color: var(--text-dark); border: 1px solid rgba(15,23,42,0.05);
    }
    .civic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .civic-card.premium { box-shadow: var(--shadow-solid); border: 2px solid var(--sunny-yellow); }
    .civic-card.premium:hover { box-shadow: 0 15px 40px rgba(234, 88, 12, 0.2); }
    
    .card-badge {
      position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
      background: var(--boardwalk-blue); color: var(--clean-white);
      padding: 0.5rem 1.5rem; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
      border-radius: 8px; white-space: nowrap; box-shadow: var(--shadow-sm);
    }
    .premium .card-badge { background: var(--coastal-cyan); color: var(--clean-white); }
    
    .price { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: var(--boardwalk-blue); line-height: 1; margin: 1rem 0; }
    .premium .price { color: var(--coastal-cyan); }
    .features-list { list-style: none; margin: 2rem 0; text-align: left; flex-grow: 1; }
    .features-list li { padding: 0.8rem 0; border-bottom: 1px solid rgba(15,23,42,0.05); display: flex; align-items: center; gap: 1rem; font-weight: 500; }
    .features-list li .lucide { color: var(--coastal-cyan); }
    .premium .features-list li .lucide { color: var(--coastal-cyan); }

    /* --- ATTRACTIONS GRID --- */
    .attractions-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem;
    }
    .attraction-card {
      background: var(--clean-white); padding: 2.5rem; border-radius: 16px;
      box-shadow: var(--shadow-sm); transition: transform 0.3s;
      border: 1px solid rgba(15,23,42,0.05);
    }
    .attraction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
    .icon-box {
      width: 70px; height: 70px; background: var(--bg-light); color: var(--coastal-cyan);
      display: flex; align-items: center; justify-content: center; border-radius: 16px; margin-bottom: 1.5rem;
    }
    .attraction-card h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--boardwalk-blue); }

    /* Footer */
    footer {
      background: var(--boardwalk-blue); color: var(--clean-white);
      padding: 4rem 2rem 2rem; text-align: center; 
    }
    footer .brand { justify-content: center; color: var(--clean-white); font-size: 2.5rem; margin-bottom: 2rem; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .footer-links a { color: var(--sunny-yellow); font-weight: 700; text-decoration: none; }
    .footer-links a:hover { color: var(--coastal-cyan); }
    .legal { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 3rem; }

    /* ROI Calculator Styles */
    .roi-card {
      background: var(--clean-white); padding: 2.5rem 1.5rem;  border-radius: 20px;
      box-shadow: var(--shadow-md); margin-top: 2rem; text-align: left;
    }
    .slider-container { margin: 2rem 0 3rem; }
    .slider-container input { width: 100%; accent-color: var(--coastal-cyan); }
    .stats-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
    }
    .stat-box {
      border: 1px solid rgba(15,23,42,0.1); border-radius: 12px; padding: 1.5rem; background: var(--bg-light);
    }
    .stat-label { font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; font-size: 0.95rem; }
    .stat-val { font-size: 2.2rem; font-family: var(--font-display); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; color: var(--coastal-cyan); }
    .funds-wrapper { margin-top: 4rem; text-align: left; }
    .funds-bar { display: flex; height: 30px; border-radius: 15px; overflow: hidden; margin-top: 1rem; }
    .fund-segment { display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; white-space: nowrap; overflow: hidden; }

    /* Form Grids & Inputs */
.form-card { background: var(--clean-white); padding: 3rem; border-radius: 24px; box-shadow: var(--shadow-md); max-width: 800px; margin: 0 auto; border: 1px solid rgba(15,23,42,0.05); }
.btn-coral { background-color: var(--festival-coral); color: var(--clean-white); box-shadow: var(--shadow-sm); }
.btn-coral:hover { background-color: #f43f5e; box-shadow: 0 10px 25px rgba(251, 113, 133, 0.3); }
@media (max-width: 768px) { .form-card { padding: 2rem 1.5rem; } }

    .form-group { margin-bottom: 1.5rem; }
    .form-group label { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
    .form-group input[type="text"], 
    .form-group input[type="email"], 
    .form-group input[type="tel"], 
    .form-group input[type="number"], 
    .form-group select, 
    .form-group textarea { 
      width: 100%; padding: 0.75rem 1rem; border: 2px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--text-dark); transition: border-color 0.2s; box-sizing: border-box;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
      outline: none; border-color: var(--coastal-cyan); 
    }
    .checkbox-group { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
    .checkbox-group input[type="checkbox"] { width: 1.2rem; height: 1.2rem; accent-color: var(--coastal-cyan); cursor: pointer; margin: 0; }
    .checkbox-group label { margin-bottom: 0; font-weight: 500; cursor: pointer; display: inline-block; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    
    /* Utility */
    .mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--boardwalk-blue); padding: 0.5rem; }

    /* Document Viewer Styles */
    .docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 2rem; }
    .doc-viewer {
      background: var(--clean-white); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
      box-shadow: var(--shadow-sm); border: 1px solid rgba(15,23,42,0.05);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .doc-viewer:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .doc-viewer h3 {
      background: var(--bg-light); padding: 1rem; margin: 0; font-size: 1.1rem; color: var(--boardwalk-blue);
      border-bottom: 1px solid rgba(15,23,42,0.05); display: flex;
      justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
    }
    .doc-viewer h3 span { }
    .doc-viewer a { display: flex; align-items: center; gap: 0.3rem; text-decoration: none; }
    .doc-iframe { width: 100%; height: 400px; border: none; background: #fff; }

    /* Invest Page Elements */
    .hot-tax-box { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
    .funds-wrapper { margin-top: 4rem; }

    /* Animations */
    .fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .stagger-1 { transition-delay: 100ms; }
    .stagger-2 { transition-delay: 200ms; }
    .stagger-3 { transition-delay: 300ms; }
    .stagger-4 { transition-delay: 400ms; }

    .gradient-text {
      background: linear-gradient(90deg, var(--boardwalk-blue), var(--coastal-cyan), var(--sunny-yellow));
      background-size: 200% auto;
      color: transparent;
      -webkit-background-clip: text;
      animation: gradient-shift 5s ease infinite;
    }
    @keyframes gradient-shift {
      0% { background-position: 0% center; }
      50% { background-position: 100% center; }
      100% { background-position: 0% center; }
    }

    /* Schedule & Lineup */
.timeline-item img { flex-shrink: 0; }

    .schedule-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
    .timeline-item { transition: transform 0.3s ease; cursor: pointer; display: flex; gap: 2rem; background: var(--clean-white); padding: 1.5rem; border-radius: 16px; box-shadow: var(--shadow-sm); border-left: 6px solid var(--coastal-cyan); align-items: center; transition: transform 0.3s; }
    .timeline-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
    .timeline-time { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--coastal-cyan); min-width: 120px; text-align: right; line-height: 1; }
    .timeline-content h4 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 0.2rem; }
    .timeline-content p { color: #475569; margin: 0; }

    /* Vendor Grid */
    .vendor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .vendor-card { background: var(--clean-white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s ease, box-shadow 0.4s; }
    .vendor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
    .vendor-img { width: 100%; height: 220px; object-fit: cover; }
    .vendor-info { padding: 1.5rem; }
    .vendor-tag { display: inline-block; background: var(--sunny-yellow); color: var(--boardwalk-blue); font-size: 0.8rem; font-weight: 800; padding: 0.3rem 0.8rem; border-radius: 20px; text-transform: uppercase; margin-bottom: 0.8rem; }
    .vendor-info h3 { margin-bottom: 0.5rem; }

    @media (max-width: 900px) {
      .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .bento-large, .bento-wide, .bento-item { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer; grid-column: span 1; grid-row: auto; height: 300px; }
      .hero h1 { font-size: 3.5rem; }
      .countdown-grid { flex-wrap: wrap; }
      
      /* Mobile Nav */
      .mobile-toggle { display: block; }
      .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
        flex-direction: column; padding: 2rem; text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-top: 2px solid var(--bg-light);
      }
      .nav-links.active { display: flex; }
      
      /* Typography & Spacing */
      .section { padding: 4rem 1.5rem; }
      .section-title { font-size: 2.8rem; }
      .hero-content { padding: 1rem; }
      .brand { font-size: 1.4rem; }
      .brand img { height: 35px; }
      .btn { padding: 0.8rem 1.5rem; font-size: 1.1rem; }
      
      /* Form Layouts */
      .grid-2 { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .docs-grid { grid-template-columns: 1fr; }
      .hot-tax-box { grid-template-columns: 1fr; gap: 1.5rem; }
      .timeline-item { transition: transform 0.3s ease; cursor: pointer; flex-direction: column; gap: 0.5rem; align-items: flex-start; border-left-width: 4px; }
      .timeline-time { text-align: left; }
    }
    
    /* =========================================================
       INTERACTIVE FEATURES (MODAL, MAP, SCROLL, TRANSITIONS)
       ========================================================= */

    /* Scroll Progress Bar */
    #scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      background: var(--coastal-cyan);
      width: 0%;
      z-index: 9999;
      transition: width 0.1s ease-out;
    }

    /* Page Transitions */
    body {
      animation: fadeIn 0.4s ease-out;
      opacity: 1;
      transition: opacity 0.3s ease-out;
    }
    body.fade-out {
      opacity: 0;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Interactive Map Hotspots */
    .hotspot {
      position: absolute;
      width: 24px;
      height: 24px;
      background: var(--sunny-yellow);
      border: 3px solid var(--clean-white);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;
      z-index: 10;
    }
    .hotspot-pulse {
      position: absolute;
      top: 50%; left: 50%;
      width: 100%; height: 100%;
      background: var(--sunny-yellow);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 2s infinite;
      z-index: -1;
    }
    @keyframes pulse {
      0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
      100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    }
    .hotspot-tooltip {
      position: absolute;
      bottom: 150%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: var(--boardwalk-blue);
      color: var(--clean-white);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
      pointer-events: none;
    }
    .hotspot-tooltip::after {
      content: '';
      position: absolute;
      top: 100%; left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: var(--boardwalk-blue) transparent transparent transparent;
    }
    .hotspot:hover .hotspot-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* Ticket Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(8px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .modal-content {
      background: var(--bg-light);
      width: 100%;
      max-width: 900px;
      border-radius: 24px;
      padding: 2.5rem 1.5rem; 
      position: relative;
      transform: scale(0.95) translateY(20px);
      transition: all 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-overlay.active .modal-content {
      transform: scale(1) translateY(0);
    }
    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      font-size: 2rem;
      color: var(--text-dark);
      cursor: pointer;
      transition: transform 0.2s;
    }
    .modal-close:hover {
      transform: rotate(90deg);
      color: var(--coastal-cyan);
    }









/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
  pointer-events: none;
}
.toast {
  background: var(--boardwalk-blue);
  color: var(--clean-white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastSlideUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
.toast.hiding {
  animation: toastSlideDown 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes toastSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastSlideDown {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(20px); }
}

      /* Toast Notifications */
      #toast-container {
        position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
        display: flex; flex-direction: column; gap: 10px; z-index: 9999;
        pointer-events: none;
      }
      .toast {
        background: rgba(15, 23, 42, 0.95); color: white; padding: 1rem 2rem;
        border-radius: 50px; font-weight: 600; font-family: var(--font-body);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        display: flex; align-items: center; gap: 10px;
        animation: slideUp 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        backdrop-filter: blur(10px);
      }
      .toast i { color: var(--coastal-cyan); }
      @keyframes slideUp {
        from { transform: translateY(100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
      }
      @keyframes fadeOut {
        to { opacity: 0; transform: translateY(-10px); }
      }

      /* Countdown Timer */
      .countdown-grid {
        display: flex; gap: 1rem; justify-content: center; align-items: center;
      }
      .countdown-item {
        background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px;
        padding: 1rem; min-width: 80px; text-align: center; color: white;
      }
      .countdown-item span {
        display: block; font-size: 2rem; font-weight: 800; font-family: var(--font-display); line-height: 1;
      }
      .countdown-item label {
        display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; 
opacity: 0.8;
      }

      /* Lineup Filter Bar */
      .filter-bar {
        display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem;
      }
      .filter-btn {
        background: var(--bg-light); border: 2px solid transparent; padding: 0.5rem 1.5rem;
        border-radius: 50px; font-weight: 600; cursor: pointer; color: var(--boardwalk-blue);
        transition: all 0.3s ease; font-family: var(--font-body); font-size: 1rem;
      }
      .filter-btn:hover { background: rgba(15, 23, 42, 0.1); }
      .filter-btn.active {
        background: var(--boardwalk-blue); color: white; border-color: var(--sunny-yellow);
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
      }
      @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
      }

      /* FAQ Accordion */
      .faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
      .faq-item {
        background: var(--clean-white); border-radius: 12px; border: 1px solid rgba(15,23,42,0.08);
        overflow: hidden; transition: all 0.3s ease; box-shadow: var(--shadow-sm);
      }
      .faq-question {
        width: 100%; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
        background: none; border: none; font-size: 1.1rem; font-weight: 700; color: var(--boardwalk-blue);
        cursor: pointer; text-align: left; font-family: var(--font-display);
      }
      .faq-question i { transition: transform 0.3s ease; color: var(--coastal-cyan); }
      .faq-answer {
        max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
        padding: 0 1.5rem; color: #475569; line-height: 1.6;
      }
      .faq-item.active .faq-answer {
        max-height: 200px; transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
        padding: 0 1.5rem 1.2rem 1.5rem;
      }
      .faq-item.active .faq-question i { transform: rotate(180deg); }
