
    :root {
      --blue: #034694;
      --blue-dark: #022f6b;
      --blue-deeper: #011840;
      --gold: #c8a84b;
      --gold-light: #e8cb72;
      --white: #f8f9fc;
      --gray-100: #eef0f5;
      --gray-200: #d4d8e2;
      --gray-500: #8a91a4;
      --text: #0d1220;
      --text-muted: #5a6172;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* HEADER */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 2rem; height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(2,18,60,0.97); backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(200,168,75,0.25);
    }
    .logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
    .logo-wrap img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,168,75,0.5); flex-shrink: 0; }
    .logo-text strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 1.5px; color: #fff; }
    .logo-text small { font-size: 0.7rem; color: var(--gold); letter-spacing: 1.2px; text-transform: uppercase; }
    nav { display: flex; align-items: center; gap: 1.5rem; }
    nav a { font-size: 0.8rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: color 0.2s; position: relative; padding-bottom: 2px; }
    nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.25s; }
    nav a:hover { color: #fff; }
    nav a:hover::after { width: 100%; }
    .nav-cta { background: var(--gold) !important; color: var(--blue-deeper) !important; padding: 0.45rem 1.1rem; border-radius: 4px; font-weight: 700 !important; }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--blue-deeper) !important; }

    /* HERO */
    .hero {
      min-height: 100vh; background: var(--blue-deeper);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column; justify-content: center; align-items: center;
      text-align: center; padding: 5rem 1.5rem 4rem;
      margin-top: 68px;
    }
    .hero::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(3,70,148,0.5) 0%, transparent 70%);
    }
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(200,168,75,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,0.07) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-stripe { position: absolute; bottom: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue)); }
    .hero-logo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin-bottom: 1.5rem; box-shadow: 0 0 40px rgba(200,168,75,0.3); opacity: 0; animation: fadeUp 0.7s 0.1s forwards; }
    .hero-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
    .hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 9vw, 7rem); color: #fff; line-height: 0.95; letter-spacing: 2px; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
    .hero h1 span { color: var(--gold); display: block; }
    .hero-sub { max-width: 560px; font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }

    /* BUTTONS */
    .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 4px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.22s; border: 2px solid transparent; }
    .btn-gold { background: var(--gold); color: var(--blue-deeper); border-color: var(--gold); }
    .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.35); }
    .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

    /* STATS BAR */
    .stats-bar { background: var(--blue); padding: 1.25rem 2rem; display: flex; justify-content: center; flex-wrap: wrap; border-bottom: 3px solid var(--gold); }
    .stat-item { text-align: center; padding: 0.5rem 2.2rem; border-right: 1px solid rgba(255,255,255,0.15); }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
    .stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

    /* SECTIONS */
    .section { padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
    .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 1px; line-height: 1; color: var(--text); margin-bottom: 1.2rem; }
    .section-title.light { color: #fff; }
    .gold-divider { width: 60px; height: 3px; background: var(--gold); margin-bottom: 2rem; }
    .section-dark { background: var(--blue-deeper); }

    /* ABOUT */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-body p { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1rem; }
    .about-body p strong { color: var(--text); }
    .about-visual { position: relative; }
    .about-img-frame { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(200,168,75,0.2); overflow: hidden; }
    .about-img-frame img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
    .about-accent { position: absolute; bottom: -16px; right: -16px; width: 80px; height: 80px; background: var(--gold); border-radius: 8px; z-index: -1; }
    .coverage-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
    .pill { background: var(--gray-100); border: 1px solid var(--gray-200); color: var(--blue); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; padding: 0.3rem 0.9rem; border-radius: 999px; }

    /* VM CARDS */
    .vm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
    .vm-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; padding: 1.5rem; border-top: 4px solid var(--gold); transition: box-shadow 0.25s, transform 0.25s; }
    .vm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(3,70,148,0.1); }
    .vm-icon { font-size: 2rem; margin-bottom: 0.75rem; }
    .vm-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.5px; color: var(--blue); margin-bottom: 0.6rem; }
    .vm-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

    /* OBJECTIVES LIST */
    .obj-list { list-style: none; margin-top: 1.5rem; }
    .obj-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }
    .obj-list li:last-child { border-bottom: none; }
    .obj-dot { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px; }

    /* EVENTS */
    .events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
    .event-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.15); border-radius: 10px; padding: 1.5rem; position: relative; overflow: hidden; transition: transform 0.25s, border-color 0.25s; }
    .event-card:hover { transform: translateY(-4px); border-color: rgba(200,168,75,0.5); }
    .event-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
    .event-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
    .event-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: #fff; letter-spacing: 0.5px; margin-bottom: 0.3rem; line-height: 1.15; }
    .event-loc { font-size: 0.82rem; color: var(--gray-500); display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.6rem; }
    .event-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* BEARERS */
    .bearers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; margin-top: 2rem; }
    .bearer-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,168,75,0.2); border-radius: 8px; padding: 1.1rem 1.2rem; transition: border-color 0.2s, transform 0.2s; }
    .bearer-card:hover { border-color: var(--gold); transform: translateY(-3px); }
    .bearer-role { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 0.25rem; }
    .bearer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

    /* MEMBERSHIP */
    .membership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 2rem; }
    .membership-reqs { background: var(--gray-100); border-radius: 10px; padding: 1.75rem; }
    .membership-reqs h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 1.25rem; }
    .req-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
    .req-item:last-child { border-bottom: none; }
    .req-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

    /* TEAM */
    .team-section { background: var(--blue); position: relative; overflow: hidden; }
    .team-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%); }
    .team-inner { position: relative; z-index: 1; max-width: 700px; }
    .team-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      margin-top: 2rem;
    }
    .gallery-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: var(--gray-200);
      height: 260px;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center 15%;
      transition: transform 0.35s ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }

    /* NEWS */
    .news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .news-card { background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
    .news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(3,70,148,0.12); }
    .news-card-img { height: 130px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
    .news-card-body { padding: 1.25rem 1.4rem; }
    .news-tag { display: inline-block; background: var(--gray-100); color: var(--blue); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 3px; margin-bottom: 0.6rem; }
    .news-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--text); line-height: 1.15; margin-bottom: 0.4rem; letter-spacing: 0.5px; }
    .news-date { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 0.6rem; }
    .news-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

    /* CONSTITUTION TABS */
    .tabs { display: flex; flex-wrap: wrap; gap: 0; margin-top: 2rem; border-bottom: 2px solid var(--gray-200); }
    .tab-btn { padding: 0.75rem 1.4rem; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; background: none; border: none; color: var(--text-muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
    .tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
    .tab-btn:hover { color: var(--blue); }
    .tab-pane { display: none; padding-top: 2rem; }
    .tab-pane.active { display: block; }

    .constitution-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1rem; }
    .constitution-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; padding: 1.25rem 1.4rem; border-left: 4px solid var(--blue); }
    .constitution-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 0.5rem; }
    .constitution-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

    .finance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .finance-box { background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; padding: 1.5rem; border-top: 4px solid var(--blue); }
    .finance-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 1rem; }
    .finance-box ul { list-style: none; }
    .finance-box li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
    .finance-box li:last-child { border-bottom: none; }
    .finance-box li::before { content: '›'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

    .rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1rem; }
    .rule-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 8px; padding: 1.2rem 1.4rem; display: flex; align-items: flex-start; gap: 1rem; transition: box-shadow 0.2s; }
    .rule-card:hover { box-shadow: 0 6px 20px rgba(3,70,148,0.1); }
    .rule-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 6px; background: var(--blue); color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
    .rule-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

    /* JOIN / DONATE */
    .join-donate-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .join-panel { background: var(--blue); padding: 5rem 3rem; }
    .donate-panel { background: var(--blue-deeper); padding: 5rem 3rem; }
    .panel-body p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 1.5rem; }
    .info-block { background: rgba(0,0,0,0.2); border: 1px solid rgba(200,168,75,0.2); border-radius: 8px; padding: 1.25rem 1.4rem; margin-bottom: 1.5rem; }
    .info-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
    .info-row:last-child { border-bottom: none; }
    .info-row .label { color: rgba(255,255,255,0.55); }
    .info-row .value { color: #fff; font-weight: 600; }
    .info-row .value.gold { color: var(--gold); }
    .steps-list { list-style: none; margin-bottom: 1.5rem; }
    .steps-list li { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 0.8rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
    .step-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--blue-deeper); font-weight: 700; font-size: 0.78rem; display: flex; align-items: center; justify-content: center; }

    /* MODAL */
    .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(1,24,64,0.92); backdrop-filter: blur(6px); z-index: 200; align-items: center; justify-content: center; padding: 1.5rem; }
    .modal-overlay.open { display: flex; }
    .modal-box { background: #fff; border-radius: 14px; max-width: 480px; width: 100%; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: fadeUp 0.35s ease; }
    .modal-header { background: var(--blue-deeper); padding: 1.75rem 2rem 1.5rem; position: relative; }
    .modal-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 1px; margin-bottom: 0.2rem; }
    .modal-header p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
    .modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; cursor: pointer; line-height: 1; }
    .modal-close:hover { color: #fff; }
    .modal-body { padding: 2rem; }
    .modal-steps { list-style: none; margin-bottom: 1.5rem; }
    .modal-steps li { display: flex; align-items: flex-start; gap: 0.85rem; margin-bottom: 1rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
    .modal-step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
    .modal-info { background: var(--gray-100); border-radius: 8px; padding: 1.1rem 1.3rem; margin-bottom: 1.5rem; }
    .modal-info-row { display: flex; justify-content: space-between; padding: 0.4rem 0; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; }
    .modal-info-row:last-child { border-bottom: none; }
    .modal-info-row .lbl { color: var(--text-muted); }
    .modal-info-row .val { color: var(--blue); font-weight: 700; }
    .modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }
    .modal-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.5rem; border-radius: 6px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; }
    .modal-btn-green { background: #25D366; color: #fff; }
    .modal-btn-green:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.4); }
    .modal-btn-gold { background: var(--gold); color: var(--blue-deeper); }
    .modal-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
    .modal-note { font-size: 0.78rem; color: var(--gray-500); text-align: center; margin-top: 0.75rem; }

    /* FOOTER */
    footer { background: #040e22; color: rgba(255,255,255,0.7); padding: 3.5rem 2rem 2rem; font-size: 0.88rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
    .footer-brand strong { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1.5px; color: #fff; display: block; margin-bottom: 0.3rem; }
    .footer-brand .sub { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
    .footer-brand p { line-height: 1.7; font-size: 0.85rem; }
    .footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.5rem; }
    .footer-col a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-col a:hover { color: #fff; }
    .social-links { display: flex; flex-direction: column; gap: 0.4rem; }
    .social-link { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
    .social-link:hover { color: var(--gold); }
    .social-icon { width: 28px; height: 28px; border-radius: 4px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.35); }


    /* BUTTON ANIMATIONS */
    @keyframes pulse-gold {
      0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.5); }
      50% { box-shadow: 0 0 0 12px rgba(200,168,75,0); }
    }
    @keyframes shine {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes float-btn {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    .btn-pulse {
      animation: pulse-gold 2s ease-in-out infinite, float-btn 3s ease-in-out infinite;
      position: relative;
    }
    .btn-pulse:hover { animation: none; transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(200,168,75,0.5); }
    .btn-shine {
      background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.15) 50%, transparent 75%);
      background-size: 200% auto;
      animation: shine 3s linear infinite;
      border-color: rgba(255,255,255,0.5);
    }
    .btn-shine:hover { animation: none; border-color: #fff; background: rgba(255,255,255,0.12); transform: translateY(-3px); }
    .hero-goat { font-size: clamp(1rem, 3vw, 1.8rem) !important; color: var(--gold-light) !important; letter-spacing: 4px !important; margin-top: 0.3rem; font-family: 'Barlow', sans-serif !important; font-weight: 300 !important; text-transform: uppercase; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .about-grid, .membership-grid, .finance-grid, .join-donate-grid { grid-template-columns: 1fr; }
      .vm-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(3,1fr); }
      .gallery-item:nth-child(n) { grid-column: span 1 !important; height: 140px !important; }
      .join-panel, .donate-panel { padding: 3.5rem 2rem; }
    }
    /* HAMBURGER */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 101; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(2,18,60,0.98); backdrop-filter: blur(10px); border-bottom: 2px solid var(--gold); padding: 1.5rem 1.5rem; z-index: 99; flex-direction: column; gap: 0; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 0.9rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav a:last-child { border-bottom: none; margin-top: 0.5rem; }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .nav-cta { background: var(--gold); color: var(--blue-deeper) !important; padding: 0.75rem 1rem; border-radius: 4px; text-align: center; margin-top: 0.5rem; }

    @media (max-width: 680px) {
      header { padding: 0 1rem; }
      .hamburger { display: flex; }
      nav { display: none; }
      .section { padding: 3rem 1rem; }
      .vm-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .stat-item { padding: 0.5rem 0.75rem; }
      .bearers-grid { grid-template-columns: 1fr 1fr; }
      .join-panel, .donate-panel { padding: 2.5rem 1.25rem; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
      .gallery-item { height: 160px; border-radius: 6px; }
      .hero { padding: 4rem 1.25rem 3rem; margin-top: 68px; }
      .hero-logo { width: 90px; height: 90px; }
      .hero-actions { flex-direction: column; align-items: center; width: 100%; }
      .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
      .hero-sub { font-size: 0.95rem; }
      .stats-bar { padding: 0.75rem 0.5rem; gap: 0; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 50%; }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
      .stat-item:last-child { border-bottom: none; }
      .about-grid { grid-template-columns: 1fr; gap: 2rem; }
      .about-visual { display: none; }
      .vm-card { padding: 1.2rem; }
      .events-grid { grid-template-columns: 1fr; }
      .membership-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .join-donate-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .finance-grid { grid-template-columns: 1fr; }
      .tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
      .tab-btn { white-space: nowrap; font-size: 0.78rem; padding: 0.65rem 1rem; }
      .constitution-grid { grid-template-columns: 1fr; }
      .rules-grid { grid-template-columns: 1fr; }
      .modal-box { max-height: 90vh; overflow-y: auto; }
      .modal-body { padding: 1.25rem; }
      .footer-top { gap: 1.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 0.25rem; }
      .info-row { flex-direction: column; align-items: flex-start; gap: 2px; }
      .info-row .value { font-size: 0.85rem; }
      .coverage-pills { gap: 0.35rem; }
      .pill { font-size: 0.75rem; }
      .obj-list li { font-size: 0.88rem; }
      .section-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
      .gold-divider { margin-bottom: 1.25rem; }
    }
    @media (max-width: 400px) {
      .bearers-grid { grid-template-columns: 1fr; }
      .stat-item { width: 100%; border-right: none !important; }
      .hero-actions .btn { max-width: 100%; }
    }
  
    /* GLOWING NAV */
    .nav-glow-wrap { display: flex; align-items: center; gap: 0.25rem; }
    .nav-glow-link {
      position: relative; font-size: 0.78rem; font-weight: 600;
      letter-spacing: 1.2px; text-transform: uppercase;
      color: rgba(255,255,255,0.85); padding: 0.45rem 0.85rem;
      border-radius: 6px; transition: all 0.3s; border: 1px solid transparent;
      text-decoration: none;
    }
    .nav-glow-link::before {
      content: ''; position: absolute; inset: 0; border-radius: 6px;
      opacity: 0; transition: opacity 0.3s; z-index: -1;
    }
    .nav-glow-link:hover { color: #fff; transform: translateY(-1px); }

    .nav-glow-link.g-blue { --gc: #378ADD; --gs: rgba(55,138,221,0.6); }
    .nav-glow-link.g-yellow { --gc: #EF9F27; --gs: rgba(239,159,39,0.6); }
    .nav-glow-link.g-orange { --gc: #D85A30; --gs: rgba(216,90,48,0.6); }
    .nav-glow-link.g-pink { --gc: #D4537E; --gs: rgba(212,83,126,0.6); }
    .nav-glow-link.g-dark { --gc: #888780; --gs: rgba(136,135,128,0.6); }
    .nav-glow-link.g-white { --gc: #f8f9fc; --gs: rgba(248,249,252,0.4); }

    .nav-glow-link:hover { border-color: var(--gc); color: var(--gc); box-shadow: 0 0 12px var(--gs), 0 0 24px var(--gs); }
    .nav-glow-link.active-glow { border-color: var(--gc); color: var(--gc); box-shadow: 0 0 8px var(--gs); }

    .nav-glow-link::after {
      content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
      width: 0; height: 2px; background: var(--gc);
      box-shadow: 0 0 8px var(--gc); border-radius: 2px;
      transition: width 0.3s;
    }
    .nav-glow-link:hover::after, .nav-glow-link.active-glow::after { width: 80%; }

    @keyframes nav-pulse {
      0%, 100% { box-shadow: 0 0 6px var(--gs); }
      50% { box-shadow: 0 0 16px var(--gs), 0 0 28px var(--gs); }
    }
    .nav-glow-link.active-glow { animation: nav-pulse 2s ease-in-out infinite; }
