
    :root {
      --navy: #0a1628;
      --deep: #0d2045;
      --mid: #1a3a6e;
      --gold: #c9a84c;
      --gold-light: #f0d080;
      --cream: #f5efe0;
      --white: #ffffff;
      --text-muted: rgba(245,239,224,0.65);
      --wave: #1e4d8c;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lora', Georgia, serif;
      background: var(--navy);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(10,22,40,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,168,76,0.25);
      padding: 14px 5%;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }
    .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px; /* Controls space between logo and text */
    text-decoration: none;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-text {
    margin-left: -2px; /* Move text even closer */
}
    .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
    .nav-links a {
      font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 500;
      color: var(--cream); text-decoration: none; padding: 5px 10px;
      border-radius: 20px; letter-spacing: 0.08em; text-transform: uppercase;
      transition: all 0.2s;
    }
    .nav-links a:hover { background: rgba(201,168,76,0.15); color: var(--gold); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: radial-gradient(ellipse at 20% 50%, #1a3a6e 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 20%, #0d2a5a 0%, transparent 50%),
                  linear-gradient(160deg, #0a1628 0%, #0d2045 40%, #0a1628 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 5% 60px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230a1628' d='M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") bottom/cover;
      z-index: 1;
    }
    .hero-eyebrow {
      font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 18px;
    }
    .hero h1 {
      font-family: 'Cinzel', serif; font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 800; color: var(--white); line-height: 1.1;
      margin-bottom: 16px;
      text-shadow: 0 0 80px rgba(201,168,76,0.3);
    }
    .hero-sub {
      font-family: 'Lora', serif; font-size: clamp(1rem, 2vw, 1.3rem);
      color: var(--gold-light); margin-bottom: 14px; font-style: italic;
    }
    .hero-verse {
      font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text-muted);
      max-width: 480px; margin-bottom: 36px;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold), #a87c2a);
      color: var(--navy); font-family: 'Cinzel', serif; font-size: 0.85rem;
      font-weight: 700; padding: 14px 32px; border-radius: 40px;
      text-decoration: none; letter-spacing: 0.06em; transition: all 0.3s;
      box-shadow: 0 4px 24px rgba(201,168,76,0.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
    .btn-outline {
      border: 1.5px solid rgba(201,168,76,0.5); color: var(--gold-light);
      font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600;
      padding: 13px 30px; border-radius: 40px; text-decoration: none;
      letter-spacing: 0.06em; transition: all 0.3s;
    }
    .btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

    /* ── COUNTDOWN ── */
    .countdown-wrapper {
      background: rgba(13,32,69,0.6);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 16px; padding: 24px 36px; text-align: center;
      backdrop-filter: blur(8px); max-width: 580px; width: 100%;
    }
    .countdown-label {
      font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
    }
    .countdown-event-name {
      font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--white);
      margin-bottom: 2px;
    }
    .countdown-date {
      font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--text-muted);
      margin-bottom: 20px;
    }
    .countdown-digits {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .countdown-unit { text-align: center; min-width: 60px; }
    .countdown-num {
      font-family: 'Cinzel', serif; font-size: 2.4rem; font-weight: 800;
      color: var(--gold-light); line-height: 1; display: block;
    }
    .countdown-unit-label {
      font-family: 'Inter', sans-serif; font-size: 0.65rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text-muted); margin-top: 4px;
    }
    .countdown-sep {
      font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold);
      align-self: flex-start; padding-top: 4px;
    }
    .countdown-ended {
      font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold);
    }

    /* ── STATS ── */
    .stats {
      display: flex; gap: 0; flex-wrap: wrap;
      justify-content: center; margin-top: 48px;
    }
    .stat {
      padding: 18px 32px; text-align: center;
      border-right: 1px solid rgba(201,168,76,0.2);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 800;
      color: var(--gold-light); display: block;
    }
    .stat-label {
      font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text-muted);
    }

    /* ── SECTION SHARED ── */
    section {
      padding: 90px 5%;
      position: relative;
    }
    .section-tag {
      font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
      display: block;
    }
    .section-title {
      font-family: 'Cinzel', serif; font-size: clamp(1.7rem, 4vw, 2.6rem);
      font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2;
    }
    .section-divider {
      width: 60px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 40px;
    }
    .gold-star { color: var(--gold); font-size: 1.4rem; margin-bottom: 12px; display: block; }

    /* ── MISSION ── */
    #mission {
      background: linear-gradient(180deg, #0a1628 0%, #0d2045 100%);
      text-align: center;
    }
    #mission .section-title, #mission .section-divider { margin-left: auto; margin-right: auto; }
    #mission .section-divider { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .mission-text {
      max-width: 680px; margin: 0 auto 24px;
      font-size: 1.05rem; line-height: 1.8; color: var(--cream);
    }
    .mission-quote {
      font-style: italic; color: var(--gold-light); font-size: 1rem;
      border-left: 3px solid var(--gold); padding-left: 20px;
      max-width: 540px; margin: 0 auto; text-align: left;
    }

    /* ── COMMUNITY ── */
    #community { background: var(--navy); }
    .community-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px; margin-top: 20px;
    }
    .community-card {
      background: rgba(13,32,69,0.5);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 14px; padding: 28px;
      transition: all 0.3s;
    }
    .community-card:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-4px);
      background: rgba(13,32,69,0.8);
    }
    .card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
    .card-title {
      font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
      color: var(--gold-light); margin-bottom: 10px;
    }
    .card-text {
      font-family: 'Inter', sans-serif; font-size: 0.88rem; line-height: 1.7;
      color: var(--text-muted);
    }

    /* ── MEMBERS ── */
    #members {
      background: linear-gradient(180deg, var(--navy) 0%, #0d2045 100%);
    }
    .members-subtitle {
      font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--text-muted);
      margin-bottom: 36px;
    }
    .members-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }
    .member-card {
      background: rgba(13,32,69,0.6);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 14px; padding: 22px 18px;
      text-align: center; transition: all 0.3s; position: relative;
      overflow: hidden;
    }
    .member-card.live {
      border-color: rgba(100,220,100,0.5);
      background: rgba(13,32,69,0.8);
    }
    .member-card.live::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, #64dc64, transparent);
    }
    .member-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--mid), var(--navy));
      border: 2px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin: 0 auto 14px;
    }
    .member-card.live .member-avatar { border-color: rgba(100,220,100,0.6); }
    .member-name {
      font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 600;
      color: var(--white); margin-bottom: 4px;
    }
    .member-handle {
      font-family: 'Inter', sans-serif; font-size: 0.78rem;
      color: var(--gold); margin-bottom: 10px;
    }
    .member-status {
      font-family: 'Inter', sans-serif; font-size: 0.75rem;
      padding: 4px 12px; border-radius: 20px; display: inline-block;
    }
    .member-status.online {
      background: rgba(100,220,100,0.15);
      color: #64dc64; border: 1px solid rgba(100,220,100,0.3);
    }
    .member-status.offline {
      background: rgba(255,255,255,0.06);
      color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1);
    }
    .live-badge {
      position: absolute; top: 12px; right: 12px;
      background: #e53935; color: #fff;
      font-family: 'Inter', sans-serif; font-size: 0.6rem;
      font-weight: 700; letter-spacing: 0.08em;
      padding: 2px 8px; border-radius: 4px;
    }
    .member-viewers {
      font-family: 'Inter', sans-serif; font-size: 0.75rem;
      color: var(--text-muted); margin-top: 6px;
    }
    .members-header {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px; margin-bottom: 24px;
    }
    .members-live-count {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-light);
    }
    .members-updated {
      font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-muted);
    }
    .member-card-skeleton {
      background: rgba(13,32,69,0.3);
      border: 1px solid rgba(201,168,76,0.08);
      border-radius: 14px; height: 160px;
      animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer {
      0%,100% { opacity: 0.4; } 50% { opacity: 0.7; }
    }
    .member-card a {
      text-decoration: none; color: inherit; display: block;
    }
    .member-card:hover { cursor: pointer; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--navy); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .testimonial {
      background: rgba(13,32,69,0.5);
      border: 1px solid rgba(201,168,76,0.12);
      border-radius: 14px; padding: 28px;
    }
    .testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
    .testimonial-text {
      font-style: italic; line-height: 1.75; color: var(--cream); margin-bottom: 20px;
      font-size: 0.95rem;
    }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-icon { font-size: 1.6rem; }
    .testimonial-name {
      font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
    }
    .testimonial-role {
      font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-muted);
    }

    /* ── BELIEFS ── */
    #beliefs {
      background: linear-gradient(180deg, var(--navy) 0%, #0d2045 100%);
    }
    .beliefs-intro {
      max-width: 580px; font-size: 0.95rem; line-height: 1.75;
      color: var(--text-muted); margin-bottom: 40px;
    }
    .beliefs-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .belief-card {
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 14px; padding: 28px;
      background: rgba(13,32,69,0.4);
    }
    .belief-num {
      font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 800;
      color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 12px;
    }
    .belief-title {
      font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
      color: var(--gold-light); margin-bottom: 10px;
    }
    .belief-text {
      font-family: 'Inter', sans-serif; font-size: 0.86rem;
      line-height: 1.7; color: var(--text-muted);
    }

    /* ── SPONSORS ── */
    #sponsors { background: var(--navy); }
    .sponsors-tier-label {
      font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
    }
    .sponsors-flagship {
      display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
    }
    .sponsor-card {
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 12px; padding: 20px 28px;
      background: rgba(13,32,69,0.5);
      text-decoration: none; color: inherit;
      display: flex; align-items: center; gap: 14px;
      transition: all 0.3s; flex: 1; min-width: 220px;
    }
    .sponsor-card:hover {
      border-color: var(--gold); background: rgba(13,32,69,0.8);
      transform: translateY(-3px);
    }
    .sponsor-card.flagship { border-color: rgba(201,168,76,0.5); }
    .sponsor-icon { font-size: 2rem; }
    .sponsor-badge {
      font-family: 'Inter', sans-serif; font-size: 0.6rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 2px;
    }
    .sponsor-name {
      font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: var(--white);
    }
    .sponsor-tagline {
      font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-muted);
    }
    .sponsors-supporting {
      display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px;
    }
    .sponsor-cta {
      background: rgba(201,168,76,0.06);
      border: 1.5px dashed rgba(201,168,76,0.3);
      border-radius: 14px; padding: 28px; margin-top: 16px;
    }
    .sponsor-cta-title {
      font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px;
    }
    .sponsor-cta-text {
      font-family: 'Inter', sans-serif; font-size: 0.87rem; color: var(--text-muted);
      line-height: 1.65; margin-bottom: 20px;
    }

    /* ── VIDEOS ── */
    #videos { background: linear-gradient(180deg, #0d2045 0%, var(--navy) 100%); }
    .videos-subtitle {
      font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-muted);
      max-width: 540px; line-height: 1.7; margin-bottom: 36px;
    }
    .videos-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .video-block-label {
      font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block;
    }
    .video-embed {
      position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
      border-radius: 12px; border: 1px solid rgba(201,168,76,0.2);
    }
    .video-embed iframe {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      border: none;
    }

    /* ── LEADERSHIP ── */
    #leadership { background: var(--navy); text-align: center; }
    .leader-card {
      max-width: 600px; margin: 0 auto;
      background: rgba(13,32,69,0.5);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 16px; padding: 48px 40px;
    }
    .leader-icon { font-size: 3.5rem; margin-bottom: 16px; display: block; }
    .leader-role {
      font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
    }
    .leader-name {
      font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700;
      color: var(--white); margin-bottom: 6px;
    }
    .leader-handle { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 22px; }
    .leader-bio {
      font-family: 'Inter', sans-serif; font-size: 0.88rem;
      line-height: 1.8; color: var(--text-muted);
    }

    /* ── DONATE ── */
    #donate {
      background: linear-gradient(135deg, #0d2045 0%, #0a1628 100%);
      text-align: center;
    }
    .donate-text {
      max-width: 560px; margin: 0 auto 36px;
      font-size: 0.95rem; line-height: 1.8; color: var(--text-muted);
    }
    .donate-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ── CONTACT ── */
    #contact { background: var(--navy); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
      align-items: start;
    }
    @media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-info-item {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 18px;
      font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--cream);
    }
    .contact-info-icon { font-size: 1.2rem; flex-shrink: 0; }
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .contact-form input,
    .contact-form textarea {
      background: rgba(13,32,69,0.6);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 8px; padding: 13px 16px;
      color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.9rem;
      outline: none; transition: border-color 0.2s;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: var(--text-muted); }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--gold); }
    .contact-form textarea { min-height: 130px; resize: vertical; }
    .contact-form button {
      background: linear-gradient(135deg, var(--gold), #a87c2a);
      color: var(--navy); font-family: 'Cinzel', serif; font-size: 0.85rem;
      font-weight: 700; padding: 14px; border: none; border-radius: 8px;
      cursor: pointer; letter-spacing: 0.06em; transition: all 0.3s;
    }
    .contact-form button:hover { opacity: 0.9; transform: translateY(-1px); }

    /* ── LIVE STREAM POPUP ── */
    #live-popup {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      background: rgba(10,22,40,0.97);
      border: 1px solid rgba(100,220,100,0.4);
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 12px 48px rgba(0,0,0,0.6);
      width: 340px; max-width: calc(100vw - 48px);
      display: none;
    }
    #live-popup.visible { display: block; }
    .live-popup-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 14px;
      background: rgba(13,32,69,0.8);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .live-popup-title {
      font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--white);
      display: flex; align-items: center; gap: 8px;
    }
    .live-dot {
      width: 8px; height: 8px; border-radius: 50%; background: #e53935;
      animation: pulse-live 1.5s infinite;
    }
    @keyframes pulse-live {
      0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
    }
    .live-popup-close {
      background: none; border: none; color: var(--text-muted);
      font-size: 1.1rem; cursor: pointer; padding: 2px 6px;
      transition: color 0.2s;
    }
    .live-popup-close:hover { color: var(--white); }
    .live-popup-embed {
      position: relative; padding-bottom: 56.25%; height: 0;
    }
    .live-popup-embed iframe {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
    }

    /* ── FOOTER ── */
    footer {
      background: #060f1e;
      border-top: 1px solid rgba(201,168,76,0.15);
      padding: 40px 5%;
      display: flex; flex-wrap: wrap; gap: 20px;
      align-items: center; justify-content: space-between;
    }
    .footer-logo {
      font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 800;
      color: var(--gold); text-decoration: none;
    }
    .footer-quote {
      font-style: italic; color: var(--text-muted); font-size: 0.85rem;
      flex: 1; text-align: center;
    }
    .footer-links { display: flex; flex-wrap: wrap; gap: 8px; }
    .footer-links a {
      font-family: 'Inter', sans-serif; font-size: 0.72rem; color: var(--text-muted);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      width: 100%; text-align: center;
      font-family: 'Inter', sans-serif; font-size: 0.75rem; color: rgba(245,239,224,0.3);
      padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05);
    }

    .form-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    @media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
    .contact-form select {
      background: rgba(13,32,69,0.6);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 8px; padding: 13px 16px;
      color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.9rem;
      outline: none; transition: border-color 0.2s; width: 100%;
      appearance: none; cursor: pointer;
    }
    .contact-form select:focus { border-color: var(--gold); }
    .contact-form select option { background: #0d2045; color: var(--cream); }
    .cf-ip-note {
      font-family: 'Inter', sans-serif; font-size: 0.75rem;
      color: var(--text-muted); padding: 8px 0;
    }
    @media (max-width: 600px) {
      .stats { flex-direction: column; }
      .stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
      .stat:last-child { border-bottom: none; }
      #live-popup { bottom: 12px; right: 12px; width: calc(100vw - 24px); }
    }
.logo-img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }


}

/*Event and quote*/
.event-section{
    display:flex;
    gap:50px;
    align-items:center;
    justify-content:center;
    max-width:1200px;
    margin:90px auto;
    padding:0 20px;
    flex-wrap:wrap;
}

.event-image{
    flex:1;
    min-width:320px;
}

.event-image img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.event-content{
    flex:1;
    min-width:320px;
}

.section-tag{
    color:#ffcc66;
    font-weight:bold;
    text-transform:uppercase;
    letter-spacing:2px;
}

.event-content h2{
    font-size:2.3rem;
    margin:15px 0;
}

.event-content p{
    line-height:1.8;
}

.event-quote{
    margin:30px 0;
    padding:25px;
    border-left:5px solid #f5b942;
    background:rgba(255,255,255,.05);
    border-radius:10px;
    font-style:italic;
}

.event-quote footer{
    margin-top:15px;
    font-style:normal;
    font-weight:bold;
}
.event-banner {
    text-align: center;
    margin: 30px auto;
}

.event-banner img {
    max-width: 80%;
    width: 800px;      /* Adjust as desired */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
}