@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

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

:root {
    --gs-red: #A50034;
    --gs-red-light: #FF1744;
    --gs-red-dark: #6B0021;
    --gs-gold: #FFB300;
    --gs-gold-light: #FFD54F;
    --gs-gold-dark: #FF8C00;
    --gs-cream: #FFF8E1;
    --dark-bg: #050505;
    --dark-secondary: #0d0d0d;
    --dark-tertiary: #141414;
    --dark-card: #1a1a1a;
    --dark-elevated: #222;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #6b6b6b;
    --win: #22c55e;
    --draw: #eab308;
    --loss: #ef4444;
    --grad-gold: linear-gradient(135deg, #FFB300 0%, #FFD54F 50%, #FF8C00 100%);
    --grad-red: linear-gradient(135deg, #A50034 0%, #FF1744 100%);
    --grad-fire: linear-gradient(135deg, #FFB300 0%, #FF8C00 40%, #FF1744 75%, #A50034 100%);
    --grad-noir: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,1) 100%);
    --shadow-gold: 0 20px 60px -15px rgba(255, 179, 0, 0.4);
    --shadow-red: 0 20px 60px -15px rgba(165, 0, 52, 0.5);
    --shadow-card: 0 24px 60px -10px rgba(0, 0, 0, 0.6);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.65;
    cursor: auto;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    padding: 0.7rem 1rem;
    background: var(--gs-gold);
    color: #000;
    border-radius: 0.5rem;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-140%);
    transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 3px solid var(--gs-gold);
    outline-offset: 4px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gs-gold), var(--gs-red)); border-radius: 5px; }
::selection { background: var(--gs-gold); color: #000; }


/* ============================ CUSTOM CURSOR ============================ */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gs-gold);
    transition: width 0.2s, height 0.2s;
}
.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gs-gold);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.cursor-ring.hover {
    width: 60px;
    height: 60px;
    background: rgba(255, 179, 0, 0.1);
}
@media (max-width: 1024px), (hover: none) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto !important; } }

/* ============================ TICKER ============================ */
.ticker {
    display: none;
    background: linear-gradient(90deg, #000 0%, var(--gs-red-dark) 50%, #000 100%);
    border-bottom: 1px solid rgba(255, 179, 0, 0.2);
    overflow: hidden;
    padding: 0.65rem 0;
    position: relative;
    z-index: 1100;
}
.ticker-track {
    display: flex;
    gap: 4rem;
    animation: tickerSlide 50s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.ticker-item i { color: var(--gs-gold); font-size: 0.7rem; }
.ticker-item strong { color: var(--gs-gold); margin-right: 0.4rem; font-weight: 700; }
@keyframes tickerSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ ANIMATIONS ============================ */
@keyframes slideUp { from { opacity: 0; transform: translate3d(0, 50px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes slideRight { from { opacity: 0; transform: translate3d(-30px, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes logoGlow { 0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 179, 0, 0.4)); } 50% { filter: drop-shadow(0 0 28px rgba(255, 179, 0, 0.8)); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes bounce { 0%, 100% { transform: translate3d(-50%, 0, 0); } 50% { transform: translate3d(-50%, -12px, 0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes orbit { from { transform: rotate(0deg) translateX(80px) rotate(0deg); } to { transform: rotate(360deg) translateX(80px) rotate(-360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes textShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ============================ REVEAL ON SCROLL ============================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ============================ TYPOGRAPHY ============================ */
.text-gradient {
    background: var(--grad-fire);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
}
.text-gold { color: var(--gs-gold); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gs-gold);
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gs-gold);
}

/* ============================ MUSIC PLAYER ============================ */
.music-player {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    margin-right: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06);
}
.music-btn {
    width: 28px; height: 28px;
    border-radius: 50%; border: none;
    background: transparent; color: var(--text-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    transition: color 0.2s ease, background 0.2s ease;
}
.music-btn:hover { color: var(--gs-gold); background: rgba(255, 179, 0, 0.1); }
.music-btn.play-btn { width: 32px; height: 32px; background: var(--gs-red); color: white; font-size: 0.75rem; }
.music-btn.play-btn:hover { background: var(--gs-gold); color: #000; }
.music-btn.play-btn.playing { background: var(--gs-gold); color: #000; animation: pulse 1.2s ease-in-out infinite; }
.music-info { display: flex; flex-direction: column; max-width: 110px; overflow: hidden; margin: 0 0.35rem; }
.music-title { font-size: 0.6rem; color: var(--gs-gold); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 700; letter-spacing: 0.05em; }
.music-artist { font-size: 0.5rem; color: var(--text-muted); }
.music-progress { width: 44px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin-left: 0.25rem; }
.music-progress-bar { height: 100%; background: var(--grad-gold); width: 0%; will-change: width; }

/* ============================ LANGUAGE SWITCHER ============================ */
.lang-switcher {
    display: flex; align-items: center; gap: 0.25rem;
    background: rgba(255,255,255,0.05);
    padding: 0.25rem;
    border-radius: 50px;
    margin-right: 1rem;
    border: 1px solid rgba(255,255,255,0.06);
}
.lang-btn {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 50px; border: none;
    background: transparent; color: var(--text-secondary);
    font-family: inherit; font-size: 0.72rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s ease;
    letter-spacing: 0.05em;
}
.lang-btn.active { background: var(--gs-red); color: white; box-shadow: 0 4px 14px rgba(165, 0, 52, 0.4); }
.lang-btn:hover:not(.active) { color: white; }
.lang-btn .flag { font-size: 1rem; }

/* ============================ NAVIGATION ============================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 2rem;
    transition: background 0.4s ease, padding 0.4s ease;
    will-change: background, padding;
}
.navbar.scrolled {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 179, 0, 0.12);
}
.nav-container {
    max-width: 1840px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.75rem, 1.2vw, 1.4rem);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; transition: transform 0.2s ease; }
.nav-logo:hover { transform: scale(1.02); }
.nav-logo-img { width: 48px; height: 48px; object-fit: contain; animation: logoGlow 3s ease-in-out infinite; }
.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu { display: flex; align-items: center; justify-content: center; gap: clamp(1.4rem, 2.8vw, 3.6rem); list-style: none; min-width: 0; }
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 0.7rem;
    position: relative;
    transition: color 0.25s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFB300;
    transition: width 0.25s ease;
    border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--gs-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    background: var(--grad-fire);
    color: white;
    padding: 0.65rem 1.35rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(165, 0, 52, 0.35);
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 179, 0, 0.5);
}
.nav-right { display: flex; align-items: center; flex: 0 0 auto; min-width: max-content; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1001; background: transparent; border: 0; }
.nav-toggle span { width: 25px; height: 2px; background: white; transition: transform 0.3s ease, opacity 0.3s ease; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================ HERO ============================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem 4rem;
}
.hero-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1) saturate(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(165, 0, 52, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 0, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.3) 30%, rgba(5,5,5,0.85) 80%, rgba(5,5,5,1) 100%);
    z-index: 1;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 179, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 179, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-particles { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 3px; height: 3px; background: var(--gs-gold); border-radius: 50%; opacity: 0; animation: particleFloat 9s infinite; box-shadow: 0 0 8px var(--gs-gold); }
.particle:nth-child(1) { left: 8%; animation-delay: 0s; }
.particle:nth-child(2) { left: 18%; animation-delay: 1s; }
.particle:nth-child(3) { left: 28%; animation-delay: 2s; }
.particle:nth-child(4) { left: 38%; animation-delay: 3s; }
.particle:nth-child(5) { left: 48%; animation-delay: 4s; }
.particle:nth-child(6) { left: 58%; animation-delay: 5s; }
.particle:nth-child(7) { left: 68%; animation-delay: 6s; }
.particle:nth-child(8) { left: 78%; animation-delay: 7s; }
.particle:nth-child(9) { left: 88%; animation-delay: 0.5s; }
.particle:nth-child(10) { left: 13%; animation-delay: 1.5s; }
.particle:nth-child(11) { left: 23%; animation-delay: 2.5s; }
.particle:nth-child(12) { left: 33%; animation-delay: 3.5s; }
.particle:nth-child(13) { left: 43%; animation-delay: 4.5s; }
.particle:nth-child(14) { left: 53%; animation-delay: 5.5s; width: 4px; height: 4px; }
.particle:nth-child(15) { left: 63%; animation-delay: 6.5s; }
.particle:nth-child(16) { left: 73%; animation-delay: 7.5s; }
.particle:nth-child(17) { left: 83%; animation-delay: 0.8s; width: 4px; height: 4px; }
.particle:nth-child(18) { left: 93%; animation-delay: 1.8s; }
.particle:nth-child(19) { left: 3%; animation-delay: 2.8s; }
.particle:nth-child(20) { left: 50%; animation-delay: 3.8s; }

@keyframes particleFloat {
    0% { bottom: -10px; opacity: 0; transform: scale(0.4); }
    10% { opacity: 0.9; }
    90% { opacity: 0.9; }
    100% { bottom: 100%; opacity: 0; transform: scale(1.4); }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: orbPulse 7s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 179, 0, 0.18), transparent 70%); top: 5%; right: -120px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(165, 0, 52, 0.25), transparent 70%); bottom: 15%; left: -80px; animation-delay: 3.5s; }
@keyframes orbPulse { 0%, 100% { transform: scale(1); opacity: 0.55; } 50% { transform: scale(1.25); opacity: 0.85; } }

.hero-content { position: relative; z-index: 10; max-width: 1100px; text-align: center; width: 100%; }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    margin-bottom: 1.75rem;
    animation: slideUp 0.8s ease-out;
    backdrop-filter: blur(10px);
}
.hero-tag .pulse-dot {
    width: 8px; height: 8px;
    background: var(--gs-gold);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gs-gold);
}
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.5; } }
.hero-logo {
    width: 112px;
    margin: 0 auto 1.5rem;
    animation: logoFloat 5s ease-in-out infinite, slideUp 1s ease-out;
    position: relative;
}
.hero-logo img {
    width: 100%; height: auto; object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(255, 179, 0, 0.7))
            drop-shadow(0 0 70px rgba(165, 0, 52, 0.5))
            drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.04); } }

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6.25rem);
    line-height: 0.92;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
    animation: slideUp 0.9s ease-out 0.2s backwards;
    text-shadow: 0 0 80px rgba(255, 179, 0, 0.3);
}
.hero-title .line-1 { color: white; display: block; }
.hero-title .line-2 {
    display: block;
    background: var(--grad-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    background-size: 200% auto;
    animation: textShine 4s linear infinite;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 1.45rem;
    animation: slideUp 0.9s ease-out 0.4s backwards;
    line-height: 1.7;
}
.hero-subtitle strong { color: var(--gs-gold); font-weight: 700; }
.hero-buttons { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; animation: slideUp 0.9s ease-out 0.6s backwards; margin-bottom: 1.55rem; }

.hero-actions {
    max-width: 980px;
    margin: 0 auto 1.45rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    animation: slideUp 1s ease-out 0.7s backwards;
}
.hero-action-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 66px;
    padding: 0.75rem 0.9rem;
    border-radius: 1rem;
    text-align: left;
    color: white;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 179, 0, 0.16);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-action-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 179, 0, 0.45);
    background:
        linear-gradient(135deg, rgba(255, 179, 0, 0.12), rgba(165, 0, 52, 0.1)),
        rgba(10, 10, 10, 0.68);
}
.hero-action-icon {
    width: 42px;
    height: 42px;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #090909;
    background: var(--grad-gold);
    box-shadow: 0 10px 24px rgba(255, 179, 0, 0.25);
}
.hero-action-card strong,
.hero-action-card small {
    display: block;
}
.hero-action-card strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.25;
}
.hero-action-card small {
    margin-top: 0.18rem;
    color: var(--text-secondary);
    font-size: 0.72rem;
    line-height: 1.35;
}

.btn-primary, .btn-secondary {
    padding: 1.05rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, background 0.3s, color 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.btn-primary {
    background: var(--grad-gold);
    color: #000;
    box-shadow: 0 12px 32px rgba(255, 179, 0, 0.35);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.7s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(255, 179, 0, 0.55); }
.btn-secondary {
    background: rgba(255,255,255,0.04);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
}
.btn-secondary:hover { background: rgba(255, 179, 0, 0.08); border-color: var(--gs-gold); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(255, 179, 0, 0.2); }

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    animation: slideUp 1s ease-out 0.8s backwards;
    margin-top: 0.75rem;
}
.hero-meta-item { display: flex; align-items: center; gap: 0.75rem; }
.hero-meta-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gs-gold);
    font-size: 1rem;
}
.hero-meta-text { text-align: left; }
.hero-meta-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: white; line-height: 1; letter-spacing: 0.05em; }
.hero-meta-lbl { font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.15em; }

.scroll-down {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gs-gold);
    font-size: 1.2rem;
    animation: bounce 2.2s infinite;
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 179, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================ STATS BAND ============================ */
.stats-band {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 179, 0, 0.08);
    border-bottom: 1px solid rgba(255, 179, 0, 0.08);
}
.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(165, 0, 52, 0.18), transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 179, 0, 0.12), transparent 50%);
}
.stats-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 179, 0, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.15), rgba(165, 0, 52, 0.1));
    border: 1px solid rgba(255, 179, 0, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gs-gold);
    font-size: 1.4rem;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.6rem);
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.stat-num .plus { font-size: 0.65em; color: var(--gs-gold); -webkit-text-fill-color: var(--gs-gold); }
.stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}

/* ============================ COUNTDOWN ============================ */
.countdown-banner {
    background: linear-gradient(135deg, var(--gs-red-dark) 0%, var(--gs-red) 50%, var(--gs-red-dark) 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.countdown-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB300' fill-opacity='0.06'%3E%3Cpath d='M40 38v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}
.countdown-banner::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.15));
}
.countdown-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.countdown-team { display: flex; align-items: center; gap: 1.1rem; }
.countdown-team-logo {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.countdown-team-logo img { width: 80%; height: 80%; object-fit: contain; }
.countdown-team-logo i { font-size: 2rem; color: white; }
.countdown-team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: white; letter-spacing: 0.1em; }
.countdown-team-name.gs { color: var(--gs-gold); text-shadow: 0 0 20px rgba(255, 179, 0, 0.4); }
.countdown-center { text-align: center; }
.countdown-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gs-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.4em;
    text-shadow: 0 0 20px rgba(255, 179, 0, 0.5);
}
.countdown-timer { display: flex; gap: 0.6rem; }
.countdown-unit {
    background: rgba(0,0,0,0.4);
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    min-width: 65px;
    text-align: center;
    border: 1px solid rgba(255, 179, 0, 0.2);
    backdrop-filter: blur(8px);
}
.countdown-number { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: white; display: block; line-height: 1; }
.countdown-label { font-size: 0.6rem; color: rgba(255, 179, 0, 0.9); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }
.countdown-info {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ============================ MATCHDAY HUB ============================ */
.matchday-hub {
    position: relative;
    overflow: hidden;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(20, 0, 8, 0.94)),
        radial-gradient(circle at 16% 18%, rgba(255, 179, 0, 0.18), transparent 34%),
        radial-gradient(circle at 86% 72%, rgba(165, 0, 52, 0.22), transparent 38%);
    border-bottom: 1px solid rgba(255, 179, 0, 0.08);
}
.matchday-hub::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 179, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 179, 0, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
    pointer-events: none;
}
.matchday-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.matchday-copy .section-title,
.matchday-copy .section-subtitle {
    text-align: left;
    margin-left: 0;
}
.matchday-subtitle {
    max-width: 560px;
}
.matchday-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.matchday-board {
    border-radius: 1.25rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
        rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 179, 0, 0.2);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}
.matchday-board-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.matchday-board-top strong {
    color: white;
    white-space: nowrap;
}
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gs-gold);
    font-weight: 700;
}
.live-pill i {
    font-size: 0.48rem;
    color: #22c55e;
}
.matchday-fixture {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0;
}
.matchday-club {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    text-align: center;
    font-weight: 800;
}
.matchday-club img,
.matchday-club i {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 179, 0, 0.2);
    object-fit: contain;
    padding: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.matchday-club i {
    color: #003580;
    font-size: 2.4rem;
}
.matchday-vs {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    color: #050505;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 38px rgba(255, 179, 0, 0.28);
}
.matchday-details {
    display: grid;
    gap: 0.75rem;
}
.matchday-details div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-secondary);
    line-height: 1.35;
}
.matchday-details i {
    color: var(--gs-gold);
    width: 18px;
    text-align: center;
}

/* ============================ SECTIONS ============================ */
section { padding: 6rem 2rem; }
.section-container { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.12), rgba(255, 179, 0, 0.04));
    border: 1px solid rgba(255, 179, 0, 0.25);
    border-radius: 50px;
    margin-bottom: 1.4rem;
    font-size: 0.7rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
}
.section-badge i { font-size: 0.65rem; }
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1.25rem;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.06), transparent);
    transition: left 0.7s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.glass-card:hover::before { left: 100%; }
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 179, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 179, 0, 0.02));
    box-shadow: 0 30px 60px rgba(255, 179, 0, 0.18), 0 0 0 1px rgba(255, 179, 0, 0.1);
}

/* ===== PHASE 2: DESIGN SYSTEM CONSOLIDATION (einheitliche Cards & Buttons) ===== */
.event-card, .match-card {
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event-card .event-title,
.match-card .match-competition {
    font-weight: 700;
    letter-spacing: 0.01em;
}
.event-card .event-date-box {
    min-width: 52px;
}
.match-card .match-teams {
    align-items: center;
    gap: 0.75rem;
}
.match-card .match-info {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Leichte Reduktion der Lift-Animation auf Touch-Geräten für bessere Performance */
@media (hover: none) {
    .glass-card:hover,
    .event-card:hover,
    .match-card:hover {
        transform: none;
    }
}

/* ============================ TROPHY / HISTORY ============================ */
#trophies { background: var(--dark-bg); position: relative; overflow: hidden; }
#trophies::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255, 179, 0, 0.06), transparent 60%);
}
.trophies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.trophy-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.04) 0%, rgba(255, 179, 0, 0.01) 100%);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 1.25rem;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
.trophy-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 179, 0, 0.08));
    pointer-events: none;
}
.trophy-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gs-gold);
    box-shadow: 0 20px 50px rgba(255, 179, 0, 0.25);
}
.trophy-icon {
    font-size: 3rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(255, 179, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}
.trophy-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: white;
    letter-spacing: 0.02em;
}
.trophy-name {
    font-size: 0.78rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-top: 0.5rem;
}
.trophy-detail { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.4rem; }

/* ============================ FEATURED STAR ============================ */
#featured { background: var(--dark-bg); padding: 6rem 2rem; position: relative; overflow: hidden; }
.featured-card {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0010 0%, #0a0a0a 50%, #1a1100 100%);
    border: 1px solid rgba(255, 179, 0, 0.2);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    min-height: 460px;
}
.featured-content { padding: 3.5rem 3rem; position: relative; z-index: 2; }
.featured-content::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}
.featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gs-gold);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}
.featured-eyebrow .star-pulse { color: var(--gs-gold); animation: pulse 1.5s ease-in-out infinite; }
.featured-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    color: white;
}
.featured-name .surname {
    background: var(--grad-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.featured-role {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.featured-role-tag {
    padding: 0.4rem 0.9rem;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}
.featured-role-tag.flag { padding: 0.4rem 0.9rem; }
.featured-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}
.featured-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 179, 0, 0.15);
    border-bottom: 1px solid rgba(255, 179, 0, 0.15);
    margin-bottom: 2rem;
}
.featured-stat { text-align: center; }
.featured-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.featured-stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 0.3rem;
}
.featured-image-wrap {
    position: relative;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--gs-red-dark) 0%, transparent 70%);
}
.featured-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--dark-bg) 0%, transparent 30%),
        linear-gradient(180deg, transparent 60%, var(--dark-bg));
    z-index: 2;
}
.featured-jersey {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18rem;
    font-weight: 900;
    color: rgba(255, 179, 0, 0.15);
    line-height: 1;
    z-index: 1;
    letter-spacing: -0.05em;
}
.featured-image {
    position: absolute;
    inset: 0;
    background: url('../images/osimhen.jpg') center top / cover;
    z-index: 2;
    mix-blend-mode: luminosity;
}
.featured-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: normal;
    opacity: 1;
    filter: saturate(1.08) contrast(1.05);
}

/* ============================ STARS SECTION ============================ */
#stars { background: var(--dark-secondary); position: relative; }
#stars::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 179, 0, 0.05), transparent 50%);
}
.stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.star-card {
    position: relative;
    overflow: hidden;
    padding: 0;
}
.star-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gs-red-dark), #1a0010);
}
.star-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, var(--dark-card) 100%);
    z-index: 2;
}
.star-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.7s ease;
    filter: contrast(1.05) saturate(1.1);
}
.star-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 1;
    transition: transform 0.7s ease;
    filter: contrast(1.05) saturate(1.08);
}
.star-card:hover .star-img-bg,
.star-card:hover .star-photo { transform: scale(1.08); }
.star-jersey-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(255, 179, 0, 0.95);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 3;
}
.star-flag-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    z-index: 3;
}
.star-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1.5rem;
    z-index: 3;
}
.star-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: white;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.star-position {
    font-size: 0.7rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-top: 0.25rem;
}
.star-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--dark-card);
    padding: 1rem;
    border-top: 1px solid rgba(255, 179, 0, 0.1);
}
.star-stat {
    text-align: center;
    padding: 0.4rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.star-stat:last-child { border-right: none; }
.star-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--gs-gold);
    display: block;
}
.star-stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.2rem;
    font-weight: 600;
}

/* ============================ LEAGUE TABLE ============================ */
#table { background: var(--dark-bg); }
.table-wrap {
    background: linear-gradient(180deg, rgba(255, 179, 0, 0.03), transparent);
    border: 1px solid rgba(255, 179, 0, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.league-table { width: 100%; border-collapse: collapse; }
.league-table th, .league-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}
.league-table th {
    background: rgba(0,0,0,0.4);
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 700;
}
.league-table td.center, .league-table th.center { text-align: center; }
.league-table tbody tr { transition: background 0.2s ease; }
.league-table tbody tr:hover { background: rgba(255, 179, 0, 0.04); }
.league-table tbody tr.highlight { background: linear-gradient(90deg, rgba(255, 179, 0, 0.12), transparent); }
.league-table tbody tr.highlight td { color: white; font-weight: 600; }
.league-table tbody tr.highlight .team-cell { color: var(--gs-gold); }
.league-table .pos { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--gs-gold); text-align: center; min-width: 40px; }
.league-table .team-cell { display: flex; align-items: center; gap: 0.7rem; }
.league-table .team-logo {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.league-table .team-logo img { width: 100%; height: 100%; object-fit: contain; }
.league-table .team-logo i { font-size: 0.9rem; color: var(--text-secondary); }
.league-table .form-pill {
    display: inline-flex;
    width: 22px; height: 22px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 0.3rem;
}
.form-pill.W { background: var(--win); color: white; }
.form-pill.D { background: var(--draw); color: black; }
.form-pill.L { background: var(--loss); color: white; }

/* ============================ MATCHES ============================ */
#matches { background: var(--dark-secondary); }
.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.matches-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    padding: 0.35rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}
.match-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.match-tab.active { background: var(--grad-gold); color: #000; box-shadow: 0 6px 18px rgba(255, 179, 0, 0.3); }
.match-tab:hover:not(.active) { color: white; }
.matches-list { display: grid; gap: 1rem; }
.match-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.match-card.highlight {
    background: linear-gradient(135deg, rgba(255,179,0,0.08), rgba(165,0,52,0.05));
    border-color: rgba(255, 179, 0, 0.3);
}
.match-card.highlight::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--grad-gold);
}
.match-card:hover {
    border-color: rgba(255, 179, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 179, 0, 0.12);
}
.match-competition {
    font-size: 0.7rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
}
.match-team { display: flex; align-items: center; gap: 0.85rem; }
.match-team.home { justify-content: flex-end; }
.match-team-logo {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.06);
}
.match-team-logo img { width: 80%; height: 80%; object-fit: contain; }
.match-team-name { font-weight: 700; font-size: 0.95rem; }
.match-score {
    text-align: center;
    min-width: 110px;
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
}
.match-date-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: white;
    line-height: 1.3;
    letter-spacing: 0.05em;
}
.result {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}
.result.win { background: rgba(34, 197, 94, 0.15); color: var(--win); border: 1px solid rgba(34, 197, 94, 0.3); }
.result.draw { background: rgba(234, 179, 8, 0.15); color: var(--draw); border: 1px solid rgba(234, 179, 8, 0.3); }
.result.loss { background: rgba(239, 68, 68, 0.15); color: var(--loss); border: 1px solid rgba(239, 68, 68, 0.3); }
.match-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.match-info span { display: inline-flex; align-items: center; gap: 0.4rem; }
.match-info i { color: var(--gs-gold); font-size: 0.75rem; }
.result-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.result-badge.win { background: rgba(34, 197, 94, 0.2); color: var(--win); }
.result-badge.draw { background: rgba(234, 179, 8, 0.2); color: var(--draw); }
.result-badge.loss { background: rgba(239, 68, 68, 0.2); color: var(--loss); }

/* ============================ EVENTS ============================ */
#events { background: var(--dark-bg); position: relative; }
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.75rem;
}
.event-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 1.5rem;
}
.event-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--gs-red-dark), #2a0015);
}
.event-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
}
.event-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    opacity: 0.45;
}
.event-card:hover .event-card-bg { transform: scale(1.08); }
.event-card-pattern {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 179, 0, 0.04) 20px 22px);
    z-index: 1;
}
.event-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--grad-gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 6px 18px rgba(255, 179, 0, 0.4);
}
.event-card-content {
    padding: 1.5rem 1.75rem 1.75rem;
}
.event-date {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
    margin-top: -3rem;
    position: relative;
    z-index: 4;
}
.event-date-box {
    background: var(--grad-red);
    padding: 0.85rem 0.65rem;
    border-radius: 0.6rem;
    text-align: center;
    min-width: 64px;
    box-shadow: 0 10px 25px rgba(165, 0, 52, 0.45);
    border: 1px solid rgba(255,255,255,0.1);
}
.event-date-day { font-family: 'Bebas Neue', sans-serif; font-size: 1.95rem; color: white; line-height: 1; letter-spacing: 0.04em; }
.event-date-month { font-size: 0.65rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; }
.event-time { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--gs-gold); letter-spacing: 0.05em; }
.event-weekday { font-size: 0.78rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.event-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
}
.event-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.event-location {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.event-location i { color: var(--gs-gold); }

/* ============================ ABOUT ============================ */
#about { background: var(--dark-secondary); position: relative; overflow: hidden; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}
.about-img { border-radius: 1.5rem; overflow: hidden; position: relative; }
.about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
    pointer-events: none;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-img:hover img { transform: scale(1.08); }
.about-img:nth-child(1) { aspect-ratio: 4/5; }
.about-img:nth-child(2) { aspect-ratio: 1; margin-top: 2.5rem; }
.about-img:nth-child(3) { aspect-ratio: 1; }
.about-img:nth-child(4) { aspect-ratio: 4/5; margin-top: -2.5rem; }

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 179, 0, 0.3);
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255, 179, 0, 0.1);
}
.about-badge::before {
    content: '⭐';
    font-size: 1.5rem;
}
.about-badge-text .year { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gs-gold); line-height: 1; letter-spacing: 0.04em; }
.about-badge-text .label { font-size: 0.7rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-top: 0.2rem; }

.about-content { position: relative; }
.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
    line-height: 1.8;
}
.about-text strong { color: var(--gs-gold); }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem;
    transition: all 0.3s ease;
}
.about-feature:hover {
    background: rgba(255, 179, 0, 0.05);
    border-color: rgba(255, 179, 0, 0.2);
    transform: translateY(-3px);
}
.about-feature-icon {
    width: 44px; height: 44px;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, rgba(165, 0, 52, 0.25), rgba(255, 179, 0, 0.25));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 179, 0, 0.15);
}
.about-feature-icon i { color: var(--gs-gold); font-size: 1rem; }
.about-feature-title { font-weight: 700; font-size: 0.92rem; line-height: 1.2; }
.about-feature-desc { font-size: 0.72rem; color: var(--text-secondary); margin-top: 0.2rem; }

/* ============================ TIMELINE ============================ */
#timeline { background: var(--dark-bg); position: relative; }
.timeline-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--gs-gold) 8%, var(--gs-gold) 92%, transparent 100%);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 2.5rem 1.5rem 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    margin-left: auto;
    padding: 1.5rem 0 1.5rem 2.5rem;
    text-align: left;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: -10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--gs-gold);
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 2px var(--gs-gold), 0 0 20px rgba(255, 179, 0, 0.5);
    z-index: 2;
}
.timeline-item:nth-child(even)::before { right: auto; left: -10px; }
.timeline-content {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}
.timeline-content:hover {
    border-color: rgba(255, 179, 0, 0.4);
    transform: translateX(-4px);
    box-shadow: 0 15px 40px rgba(255, 179, 0, 0.15);
}
.timeline-item:nth-child(even) .timeline-content:hover { transform: translateX(4px); }
.timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}
.timeline-title { font-weight: 700; font-size: 1rem; color: white; margin-bottom: 0.4rem; }
.timeline-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================ VORSTAND ============================ */
#vorstand { background: var(--dark-secondary); }
.vorstand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; }
.vorstand-card {
    text-align: center;
    padding: 2.5rem 1.25rem 2rem;
    position: relative;
    overflow: hidden;
}
.vorstand-card::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 4px;
    background: var(--grad-gold);
    border-radius: 0 0 50px 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vorstand-card:hover::after { opacity: 1; }
.vorstand-avatar {
    width: 110px; height: 110px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 179, 0, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
}
.vorstand-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--grad-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vorstand-card:hover .vorstand-avatar { border-color: var(--gs-gold); transform: scale(1.08); box-shadow: 0 15px 40px rgba(255, 179, 0, 0.3); }
.vorstand-avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vorstand-card:hover .vorstand-avatar img { transform: scale(1.1); }
.vorstand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.vorstand-role {
    color: var(--gs-gold);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

/* ============================ MEMBERSHIP ============================ */
#membership { background: var(--dark-secondary); position: relative; }
#membership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 179, 0, 0.06), transparent 60%);
}
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.membership-card {
    position: relative;
    padding: 2.5rem 2rem;
    text-align: left;
}
.membership-card.featured {
    border-color: rgba(255, 179, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.06), rgba(255, 179, 0, 0.01));
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 179, 0, 0.15);
}
.membership-card.featured::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.6), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
}
.membership-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--grad-gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    box-shadow: 0 8px 22px rgba(255, 179, 0, 0.4);
}
.membership-icon {
    width: 56px; height: 56px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(165, 0, 52, 0.25), rgba(255, 179, 0, 0.25));
    border: 1px solid rgba(255, 179, 0, 0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gs-gold);
    font-size: 1.4rem;
}
.membership-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}
.membership-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.membership-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 1.5rem; }
.membership-price .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}
.membership-price .period { font-size: 0.95rem; color: var(--text-secondary); }
.membership-features { list-style: none; margin-bottom: 2rem; }
.membership-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.membership-features li:last-child { border-bottom: none; }
.membership-features li i {
    width: 22px; height: 22px;
    background: rgba(255, 179, 0, 0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem;
    color: var(--gs-gold);
    flex-shrink: 0;
}
.membership-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: none;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.membership-btn.primary { background: rgba(255,255,255,0.05); color: white; border: 1.5px solid rgba(255, 179, 0, 0.3); }
.membership-btn.primary:hover { background: var(--gs-red); border-color: var(--gs-red); color: white; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(165, 0, 52, 0.4); }
.membership-btn.secondary { background: var(--grad-gold); color: #000; box-shadow: 0 10px 28px rgba(255, 179, 0, 0.35); }
.membership-btn.secondary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 179, 0, 0.5); }

.membership-summary {
    border: 1px solid rgba(255, 179, 0, 0.18);
    background: rgba(255, 179, 0, 0.06);
    border-radius: 0.7rem;
    padding: 0.8rem 0.9rem;
    margin-bottom: 0.1rem;
}
.membership-summary-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    color: white;
    font-weight: 800;
    margin-bottom: 0.55rem;
}
.membership-summary-top strong { color: var(--gs-gold); }
.membership-summary ul {
    display: grid;
    gap: 0.35rem;
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.78rem;
}
.membership-summary li::before {
    content: '✓';
    color: var(--gs-gold);
    margin-right: 0.45rem;
}
.membership-check {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0.1rem 0 0.2rem;
}
.membership-check input {
    width: 18px;
    height: 18px;
    margin-top: 0.12rem;
    accent-color: var(--gs-gold);
    flex: 0 0 auto;
}
.membership-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.membership-flow-item {
    border: 1px solid rgba(255, 179, 0, 0.16);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 0.75rem;
    padding: 1.1rem;
}
.membership-flow-step {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-gold);
    color: #000;
    font-weight: 900;
    margin-bottom: 0.85rem;
}
.membership-flow-item strong {
    display: block;
    color: white;
    margin-bottom: 0.35rem;
}
.membership-flow-item p {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
}
.membership-faq {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.membership-faq details {
    border: 1px solid rgba(255, 179, 0, 0.14);
    background: rgba(0, 0, 0, 0.24);
    border-radius: 0.7rem;
    padding: 0.9rem 1rem;
}
.membership-faq summary {
    cursor: pointer;
    color: var(--gs-gold);
    font-weight: 800;
}
.membership-faq p {
    color: var(--text-secondary);
    margin-top: 0.65rem;
    line-height: 1.7;
}
.membership-check a,
.membership-legal-box a {
    color: var(--gs-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.membership-legal-box {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem 0.9rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 179, 0, 0.22);
    background: rgba(255, 179, 0, 0.07);
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}
.membership-legal-box strong {
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

/* ============================ GALLERY ============================ */
#gallery { background: var(--dark-bg); position: relative; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 0.75rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    position: relative;
    background: var(--dark-card);
    color: inherit;
    text-decoration: none;
}
.gallery-item img,
.gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.4s ease;
    filter: grayscale(0.2) contrast(1);
}
.gallery-item video {
    display: block;
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(165, 0, 52, 0.4), rgba(255, 179, 0, 0.25));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.1); filter: grayscale(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s ease; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 0.5rem; box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gs-red); border-color: var(--gs-red); transform: rotate(90deg); }

/* ============================ SPONSORS ============================ */
#sponsors { background: var(--dark-secondary); }
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.35rem;
    margin-bottom: 3rem;
}
.sponsor-card {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-fire);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.sponsor-card:hover { border-color: rgba(255, 179, 0, 0.35); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(255, 179, 0, 0.18); }
.sponsor-card > * { position: relative; z-index: 1; }
.sponsor-card--logo {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: space-between;
}
.sponsor-logo-wrap {
    width: 100%;
    height: 150px;
    margin: 0 auto 1rem;
    padding: 0.8rem;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 179, 0, 0.14);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}
.sponsor-logo-wrap--light { background: #f7f5f0; }
.sponsor-logo-wrap--dark { background: #050505; }
.sponsor-logo-wrap--bright { background: #ffe800; }
.sponsor-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.sponsor-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.1), rgba(165, 0, 52, 0.1));
    border: 1px solid rgba(255, 179, 0, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--gs-gold);
    transition: all 0.3s ease;
}
.sponsor-card:hover .sponsor-icon {
    background: var(--grad-gold);
    color: #000;
    transform: rotate(-8deg) scale(1.1);
}
.sponsor-name {
    font-size: 0.88rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
}
.sponsor-tag {
    font-size: 0.65rem;
    color: var(--gs-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 0.4rem;
    font-weight: 700;
}
.sponsors-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(165, 0, 52, 0.08), rgba(255, 179, 0, 0.04));
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.sponsors-cta p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 1rem; }

/* ============================ SOCIAL ============================ */
#social { background: var(--dark-bg); }
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
}
.social-card { text-align: center; padding: 2.5rem 2rem; }
.social-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}
.social-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.social-stat { text-align: center; }
.social-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.social-stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-top: 0.3rem;
}
.social-metric {
    padding: 0.75rem;
    background: rgba(255, 179, 0, 0.08);
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 179, 0, 0.15);
}
.social-metric i { color: var(--gs-gold); margin-right: 0.5rem; }
.social-metric strong { color: white; font-weight: 700; }
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4); }
.social-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgba(255, 179, 0, 0.3); }

/* ============================ CONTACT ============================ */
#contact { background: var(--dark-secondary); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-list { margin: 2rem 0; }
.contact-item { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
    width: 54px; height: 54px;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, rgba(165, 0, 52, 0.2), rgba(255, 179, 0, 0.2));
    border: 1px solid rgba(255, 179, 0, 0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon i { color: var(--gs-gold); font-size: 1.15rem; }
.contact-item-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.contact-item-value { font-weight: 600; font-size: 0.95rem; }
.contact-item-value a { color: white; text-decoration: none; transition: color 0.2s ease; }
.contact-item-value a:hover { color: var(--gs-gold); }
.contact-socials { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.contact-socials-title { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; }
.contact-socials-links { display: flex; gap: 0.7rem; }
.contact-social-link {
    width: 48px; height: 48px;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.05rem;
}
.contact-social-link:hover { background: var(--gs-gold); color: #000; transform: translateY(-3px); border-color: var(--gs-gold); }
.contact-form { padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.72rem;
    color: var(--gs-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 179, 0, 0.1);
    border-radius: 0.6rem;
    color: white;
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gs-gold);
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFB300'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}
.form-submit {
    width: 100%;
    padding: 1.05rem;
    background: var(--grad-gold);
    color: #000;
    border: none;
    border-radius: 0.6rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 12px 28px rgba(255, 179, 0, 0.3);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 179, 0, 0.5); }

/* Map embed */
.map-wrap {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 179, 0, 0.15);
    height: 240px;
    background: var(--dark-card);
    position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg); }

/* ============================ NEWSLETTER ============================ */
.newsletter {
    background:
        linear-gradient(135deg, var(--gs-red) 0%, var(--gs-red-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 179, 0, 0.2), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 179, 0, 0.15), transparent 50%);
}
.newsletter::after {
    content: '⚡';
    position: absolute;
    top: 50%; left: 5%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255, 179, 0, 0.06);
    z-index: 0;
}
.newsletter-container { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}
.newsletter-text { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1rem; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-family: inherit;
    backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { outline: none; border-color: var(--gs-gold); background: rgba(0,0,0,0.5); }
.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--grad-gold);
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    box-shadow: 0 10px 28px rgba(255, 179, 0, 0.35);
}
.newsletter-form button:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(255, 179, 0, 0.55); }
.newsletter-success {
    display: none;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: white;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}
.newsletter-success.show { display: inline-flex; }

/* ============================ FOOTER ============================ */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000 100%);
    border-top: 1px solid rgba(255, 179, 0, 0.1);
    padding: 4rem 2rem 1.5rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gs-gold), transparent);
    opacity: 0.4;
}
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-logo img { width: 50px; height: 50px; object-fit: contain; }
.footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.12em;
}
.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: 380px;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--gs-gold);
    color: #000;
    border-color: var(--gs-gold);
    transform: translateY(-3px);
}
.footer-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    color: var(--gs-gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.18em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease, padding 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover { color: var(--gs-gold); padding-left: 4px; }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copyright { font-size: 0.78rem; color: var(--text-muted); }
.footer-external {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.footer-external:hover { color: var(--gs-gold); }

/* ============================ UTILITIES ============================ */
.scroll-top {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.4);
    font-size: 0.95rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(255, 179, 0, 0.6); }

/* WhatsApp floating button */
.fab-whatsapp {
    display: none !important;
    position: fixed;
    bottom: 2rem; left: 2rem;
    width: 55px; height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7); }

.toast-container { position: fixed; top: 100px; right: 20px; z-index: 2000; }
.toast {
    padding: 1rem 1.25rem;
    border-radius: 0.6rem;
    display: flex; align-items: center; gap: 0.6rem;
    min-width: 280px;
    margin-bottom: 10px;
    animation: slideUp 0.4s ease-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.toast.success { background: rgba(34, 197, 94, 0.95); color: white; }
.toast.info { background: rgba(255, 179, 0, 0.95); color: black; }
.toast.error { background: rgba(239, 68, 68, 0.95); color: white; }
.toast-close { background: none; border: none; color: inherit; cursor: pointer; margin-left: auto; opacity: 0.8; }
.toast-close:hover { opacity: 1; }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }
.modal {
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 0.9rem;
    max-width: 700px;
    width: 100%;
    max-height: calc(100dvh - 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto 0;
    animation: scaleIn 0.4s ease-out;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
}
.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--gs-gold);
    letter-spacing: 0.06em;
}
.modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close:hover { background: var(--gs-red); color: white; transform: rotate(90deg); }
.modal-body {
    padding: 1.1rem 1.25rem 1.25rem;
    overflow-y: auto;
    min-height: 0;
}

.modal-body form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}
.modal-body form > input[type="hidden"] { display: none; }
.modal-body .form-group { margin-bottom: 0; }
.modal-body .form-group input,
.modal-body .form-group textarea,
.modal-body .form-group select {
    padding: 0.78rem 0.9rem;
    min-height: 46px;
}
.modal-body .form-group textarea {
    min-height: 78px;
}
.modal-body .membership-summary,
.modal-body .membership-note-field,
.modal-body .membership-legal-box,
.modal-body .membership-check,
.modal-body .form-submit {
    grid-column: 1 / -1;
}

.is-submitting {
    pointer-events: none;
    opacity: 0.75;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: var(--loss);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.field-error {
    display: block;
    margin-top: 0.4rem;
    color: #fecaca;
    font-size: 0.76rem;
    font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .hero-orb,
    .particle,
    .hero-particle-canvas,
    .star-pulse {
        animation: none !important;
        display: none !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1400px) {
    .navbar { padding-left: 1.25rem; padding-right: 1.25rem; }
    .nav-menu { gap: 1.4rem; }
    .nav-link { font-size: 0.78rem; letter-spacing: 0.12em; }
    .nav-logo-text { font-size: 1.15rem; letter-spacing: 0.13em; }
    .music-info, .music-progress { display: none; }
    .music-player { margin-right: 0.45rem; }
}

@media (max-width: 1600px) {
    .nav-menu { gap: 1.3rem; }
    .nav-link { font-size: 0.76rem; letter-spacing: 0.1em; }
    .nav-cta { padding: 0.62rem 1.05rem; }
}

@media (max-width: 1200px) {
    .nav-menu { gap: 1.1rem; }
    .music-info, .music-progress { display: none; }
    .music-player { margin-right: 0.45rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2n) { border-right: none; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-image-wrap { min-height: 320px; aspect-ratio: 16/9; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-actions { grid-template-columns: 1fr; max-width: 620px; }
}

@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .matchday-layout { grid-template-columns: 1fr; }
    .matchday-copy .section-title,
    .matchday-copy .section-subtitle { text-align: center; margin-left: auto; }
    .matchday-cta-row { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-wrap::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        padding: 1rem 0 1rem 3.5rem !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    .timeline-item::before, .timeline-item:nth-child(even)::before { left: 11px !important; right: auto !important; }
    .featured-content { padding: 2.5rem 2rem; }
    .featured-jersey { font-size: 12rem; }
}

@media (max-width: 768px) {
    section { padding: 4rem 1.25rem; padding-left: calc(1.25rem + env(safe-area-inset-left)); padding-right: calc(1.25rem + env(safe-area-inset-right)); }
    .navbar { padding: 0.85rem 1.25rem; padding-left: calc(1.25rem + env(safe-area-inset-left)); padding-right: calc(1.25rem + env(safe-area-inset-right)); }
    .navbar.scrolled { padding: 0.65rem 1.25rem; }
    .nav-container { gap: 0.75rem; }
    .nav-right { margin-left: auto; }
    .lang-switcher { margin-right: 0.5rem; }
    .music-info, .music-progress { display: none; }
    .music-player { padding: 0.2rem 0.4rem; }
    .ticker-track { animation-duration: 70s; }
    .hero { min-height: 92vh; padding-left: 1.25rem; padding-right: 1.25rem; }
    .hero-title { font-size: clamp(3rem, 17vw, 5.4rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-logo { width: 112px; height: 112px; }
    .hero-actions { margin-top: -1rem; margin-bottom: 1.8rem; }
    .hero-action-card { min-height: 66px; }
    .countdown-timer { grid-template-columns: repeat(2, minmax(72px, 1fr)); }
    .countdown-container { flex-direction: column; gap: 1.5rem; }
    .matchday-board-top { flex-direction: column; align-items: flex-start; }
    .matchday-fixture { grid-template-columns: 1fr; padding: 1.35rem 0; }
    .matchday-vs { margin: 0 auto; }
    .stats-grid { gap: 1rem; padding: 1rem; }
    .stat-item { border-right: none; padding: 1rem 0.5rem; }
    .matches-header { flex-direction: column; align-items: stretch; }
    .match-teams { grid-template-columns: 1fr; gap: 0.75rem; text-align: center; }
    .match-team { justify-content: center !important; }
    .match-info { flex-direction: column; align-items: stretch; }
    .about-images { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-badge { position: relative; bottom: auto; right: auto; margin-top: 1.5rem; justify-content: center; max-width: 280px; margin-left: auto; margin-right: auto; }
    .vorstand-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .membership-flow { grid-template-columns: 1fr; }
    .vorstand-card { padding: 1.5rem 0.75rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .featured-name { font-size: 2.8rem; }
    .featured-jersey { font-size: 8rem; }
    .featured-stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item.tall { grid-row: span 1; }
    .scroll-top, .fab-whatsapp { width: 44px; height: 44px; }
    .fab-whatsapp { font-size: 1.2rem; left: 1rem; bottom: 1rem; }
    .scroll-top { right: 1rem; bottom: 1rem; }
}


@media (max-width: 480px) {
    .nav-logo-text { display: none; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons a, .hero-buttons button { width: 100%; justify-content: center; min-height: 52px; }
    .hero-action-card { align-items: flex-start; min-height: 64px; }
    .hero-meta { gap: 1.25rem; }
    .matchday-cta-row .btn-primary,
    .matchday-cta-row .btn-secondary { width: 100%; justify-content: center; min-height: 48px; }
    .btn-primary, .btn-secondary, .nav-cta { min-height: 48px; padding: 0.85rem 1.4rem; }
    .matchday-club img,
    .matchday-club i { width: 72px; height: 72px; }
    .membership-grid { grid-template-columns: 1fr; }
    .membership-card.featured { transform: scale(1); }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input, .newsletter-form button { width: 100%; min-width: auto; }
    .lang-btn span:not(.flag) { display: none; }
    .lang-btn { padding: 0.4rem 0.5rem; }
    .music-player { margin-right: 0.4rem; }
    .music-btn { width: 24px; height: 24px; font-size: 0.6rem; }
    .music-btn.play-btn { width: 28px; height: 28px; }
    .vorstand-grid { grid-template-columns: 1fr; }
    .featured-content { padding: 2rem 1.25rem; }
    .featured-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .section-title { font-size: clamp(2rem, 13vw, 3.6rem); }
    .hero-meta { width: 100%; justify-content: center; padding: 1rem; }
    .hero-meta-item { min-width: 86px; justify-content: center; }
    .toast-container { left: 12px; right: 12px; top: 86px; }
    .toast { min-width: 0; width: 100%; }
    .modal-overlay { padding: 1rem; }
    .modal { max-height: calc(100vh - 2rem); overflow-y: auto; }
}

@media (max-width: 700px) {
    .modal-body form {
        grid-template-columns: 1fr;
    }
    .modal {
        max-height: calc(100dvh - 1rem);
    }
    .modal-overlay {
        padding: 0.5rem;
    }
}

/* === ERWEITERTE MOBILE TYPOGRAFIE & LAYOUT FIXES === */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    body {
        font-size: 15px;
        line-height: 1.55;
    }

    h1, .hero-title, .page-hero__title {
        font-size: clamp(2.1rem, 12vw, 3.8rem);
        line-height: 1.1;
    }

    h2, .section-title {
        font-size: 1.65rem;
        line-height: 1.2;
    }

    .hero-subtitle, .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .btn-primary, .btn-secondary {
        font-size: 0.88rem;
        padding: 0.85rem 1.1rem;
        min-height: 46px;
    }

    .stat-num {
        font-size: 1.75rem;
    }

    .hero-meta-num {
        font-size: 1.35rem;
    }
}

/* === STARK VERBESSERTES MOBILE DESIGN (besonders für kleine Handys) === */
@media (max-width: 480px) {
    /* Hero Meta */
    .hero-meta {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
        background: rgba(0,0,0,0.45);
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }
    .hero-meta-item {
        min-width: 0;
        padding: 6px 4px;
        text-align: center;
    }
    .hero-meta-num {
        font-size: 1.45rem;
        font-weight: 800;
        line-height: 1.05;
    }
    .hero-meta-lbl {
        font-size: 0.68rem;
        margin-top: 1px;
        opacity: 0.9;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
        padding: 8px;
    }
    .stat-item {
        padding: 14px 12px;
        border-radius: 14px;
    }
    .stat-num {
        font-size: 2rem;
        font-weight: 800;
    }
    .stat-label {
        font-size: 0.82rem;
        margin-top: 4px;
    }
    .stat-icon {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    /* Allgemeine Verbesserungen für Handy */
    section {
        padding: 3rem 14px;
    }
    .section-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 4px;
    }
}

/* ============================ SUBPAGE STYLES ============================ */
.page-hero {
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(135deg, var(--dark-secondary) 0%, #1a0010 50%, var(--dark-secondary) 100%);
    overflow: hidden;
    padding: 9rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 179, 0, 0.1);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(165,0,52,0.25), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255,179,0,0.15), transparent 60%);
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 179, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 179, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.page-hero__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero__badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(255,179,0,0.12);
    border: 1px solid rgba(255,179,0,0.3);
    border-radius: 50px;
    color: var(--gs-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.page-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1;
    margin-bottom: 1.25rem;
    background: var(--grad-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}
.page-hero__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.breadcrumb a { color: var(--gs-gold); text-decoration: none; transition: opacity 0.2s ease; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: var(--text-muted); }
.subpage-main { padding-top: 0; }

.modal-body form .full,
.form-group.full {
    grid-column: 1 / -1;
}

.legal-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
    cursor: pointer;
}

.legal-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: var(--gs-gold);
}

/* ============================ PERFORMANCE MODE ============================ */
.cursor-dot,
.cursor-ring,
.hero-particles,
.particle,
.hero-orb,
.hero-grid {
    display: none !important;
}

.hero-video-bg {
    display: block !important;
    filter: none !important;
    opacity: 0.72;
    transform: translate(-50%, -50%) translateZ(0);
    will-change: auto;
}

.hero-particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.78;
    mix-blend-mode: screen;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 179, 0, 0.12), transparent 22%),
        linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.35) 78%, var(--dark-bg) 100%);
}

.hero {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.92) 86%, var(--dark-bg) 100%),
        radial-gradient(circle at 24% 20%, rgba(255, 179, 0, 0.16), transparent 34%),
        radial-gradient(circle at 76% 18%, rgba(165, 0, 52, 0.22), transparent 36%),
        linear-gradient(135deg, #050505 0%, #160008 48%, #080808 100%);
}

.navbar,
.nav-menu,
.hero-tag,
.btn-secondary,
.glass-card,
.countdown-unit,
.about-badge,
.lightbox,
.modal-overlay,
.newsletter-success,
.toast {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-logo-img,
.hero-logo,
.hero-logo img,
.text-gradient,
.music-btn.play-btn.playing,
.featured-eyebrow .star-pulse,
.scroll-down,
.fab-whatsapp::before {
    animation: none !important;
}

.reveal,
.hero-tag,
.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-meta {
    animation: none !important;
    transition-duration: 0.25s !important;
}

.text-gradient {
    background-size: 100% 100%;
}

.glass-card:hover,
.membership-card.featured,
.match-card:hover,
.event-card:hover,
.star-card:hover,
.gallery-item:hover img,
.about-img:hover img,
.sponsor-card:hover,
.vorstand-card:hover .vorstand-avatar {
    transform: none !important;
}

.glass-card::before {
    display: none !important;
}

main > section:not(.hero),
.newsletter,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
}

.navbar,
.glass-card,
.featured-card,
.membership-card,
.modal,
.lightbox img {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38) !important;
}

@media (max-width: 768px) {
    .ticker-track { animation: none !important; transform: none !important; }
    .ticker-track .ticker-item:nth-child(n+5) { display: none; }
    .gallery-item img,
    .gallery-item video,
    .star-img-bg,
    .featured-image,
    .about-img img,
    .event-card-bg {
        filter: none !important;
    }
}


/* ============================================================
   RESPONSIVE NAVIGATION – sauber neu aufgebaut (Mai 2026)
   Desktop-Reihe ab 1081px · Hamburger-Panel bis 1080px
   Ersetzt den alten Override-"Friedhof".
   ============================================================ */

/* — Sprachumschalter: nur Kürzel zeigen (keine Flaggen-Doppelung) — */
.lang-btn .flag { display: none !important; }
.lang-switcher { gap: 0.15rem; padding: 0.2rem; }
.lang-btn { padding: 0.42rem 0.75rem; min-width: 2.6rem; justify-content: center; }

/* — Hamburger-Slide-Panel bis 1080px — */
@media (max-width: 1080px) {
    .nav-toggle { display: flex; z-index: 3001; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(84vw, 340px);
        height: 100vh; height: 100dvh;
        background: rgba(10, 8, 12, 0.97);
        backdrop-filter: blur(22px) saturate(160%);
        -webkit-backdrop-filter: blur(22px) saturate(160%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5.5rem 1.6rem 2rem;
        gap: 0.3rem;
        border-left: 1px solid rgba(255, 179, 0, 0.16);
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
        transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 3000;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .nav-menu.active li { opacity: 1; transform: translateX(0); }
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.09s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.13s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.17s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.21s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.29s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.33s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.37s; }
    .nav-link {
        display: block;
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 0.6rem;
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 179, 0, 0.10);
        color: var(--gs-gold);
    }
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.6rem;
        padding: 0.95rem;
        font-size: 0.9rem;
    }
    body.menu-open { overflow: hidden; }
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        z-index: 999;
    }
    /* Musik-Details im kompakten Modus ausblenden */
    .music-info, .music-progress { display: none; }
    .music-player { margin-right: 0.4rem; }
}

/* — Desktop ab 1081px sicher horizontal — */
@media (min-width: 1081px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        height: auto;
        width: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-left: none;
    }
    .nav-toggle { display: none; }
}

/* — Musikplayer erst ab 1251px (darunter zu eng für die Menüzeile) — */
@media (max-width: 1250px) {
    .music-player { display: none; }
}

/* ============================================================
   FOOTER – robust waagrecht (Marken-Spalte oben breit)
   ============================================================ */
.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
@media (max-width: 1024px) and (min-width: 681px) {
    .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.75rem; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* === AUTOMATIC MOBILE IMPROVEMENTS (Round 2) === */
@media (max-width: 480px) {
    .hero-meta {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 8px;
    }
    .hero-meta-num { font-size: 1.3rem; }
    .hero-meta-lbl { font-size: 0.65rem; }

    .stats-grid { gap: 8px; }
    .stat-item { padding: 12px 10px; }
    .stat-num { font-size: 1.65rem; }
    .stat-label { font-size: 0.78rem; }

    .section-title { font-size: 1.55rem; }
    .btn-primary, .btn-secondary { font-size: 0.85rem; min-height: 44px; }
}

@media (max-width: 480px) {
    /* Extra mobile polish */
    .event-card, .glass-card {
        padding: 1rem;
    }
    .about-features, .membership-flow {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding-top: 60px;
    }
    .nav-link {
        font-size: 1.05rem;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    /* Extra aggressive mobile polish */
    .hero {
        min-height: 85vh;
        padding-top: 70px;
    }
    .hero-meta {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 8px;
    }
    .stat-item {
        padding: 10px 8px;
    }
    .event-card {
        padding: 0.9rem;
    }
    .section-title {
        font-size: 1.55rem;
    }
}

@media (max-width: 480px) {
    /* Strong mobile typography fixes */
    body {
        font-size: 15.5px;
        line-height: 1.6;
    }

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .hero-meta {
        padding: 8px;
        border-radius: 10px;
    }

    .hero-meta-num {
        font-size: 1.4rem;
    }

    .stat-num {
        font-size: 1.9rem;
    }

    .glass-card, .event-card, .membership-card {
        padding: 1rem 0.85rem;
        border-radius: 12px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 16px 18px;
    }
}

/* ============================================================
   MOBILE STICKY BAR (WhatsApp + Mitglied werden)
   ============================================================ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(10, 8, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 179, 0, 0.15);
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    gap: 0.75rem;
}
.mobile-sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile-sticky-btn:active { transform: scale(0.97); opacity: 0.85; }
.mobile-sticky-wa {
    background: #25d366;
    color: #fff;
}
.mobile-sticky-member {
    background: var(--grad-gold);
    color: #000;
}
@media (min-width: 769px) {
    .mobile-sticky-bar { display: none !important; }
}
@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    /* Platz für Sticky-Bar unten lassen */
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
    /* Alte mobile-cta und WhatsApp-FAB ausblenden – durch neue Sticky-Bar ersetzt */
    .fab-whatsapp { display: none !important; }
    .mobile-cta   { display: none !important; }
    body.has-mobile-cta { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   MOBILE DESIGN VERBESSERUNGEN (Juni 2026)
   Kritische Fixes: Hero-Höhe, Gallery, Stars, Footer-Accordion
   ============================================================ */

/* — Hero: kompakt auf kleinen Screens — */
@media (max-width: 480px) {
    .hero {
        min-height: 58vh !important;
        padding: 60px 1rem 2rem;
    }

    /* — Hero Logo: kleiner für mehr Platz — */
    .hero-logo {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 0.75rem;
    }
    .hero-logo img { width: 80px !important; height: 80px !important; }

    /* — Hero Action-Cards: horizontal scroll statt 4 gestapelt — */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.6rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }
    .hero-actions::-webkit-scrollbar { display: none; }
    .hero-action-card {
        flex: 0 0 240px;
        scroll-snap-align: start;
        min-height: 60px !important;
    }

    /* — Hero Meta: kompakter — */
    .hero-meta {
        padding: 6px !important;
        gap: 4px !important;
    }
    .hero-meta-item { padding: 4px !important; }
    .hero-meta-num { font-size: 1.2rem !important; }
    .hero-meta-lbl { font-size: 0.6rem !important; }

    /* — Gallery: eine Spalte auf kleinen Screens — */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 220px;
    }
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* — Stars: eine Spalte — */
    .stars-grid {
        grid-template-columns: 1fr !important;
    }

    /* — Sponsoren: 2 Spalten — */
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    /* — Social Icons: größere Touch-Ziele (min 48px) — */
    .footer-social a {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
    }

    /* — Match-Score lesbarer — */
    .match-score .result {
        font-size: 1.4rem;
        font-weight: 800;
    }

    /* — Subpage Hero: weniger Höhe — */
    .page-hero {
        min-height: 28vh;
        padding: calc(5rem + env(safe-area-inset-top, 0px)) 1rem 2rem;
    }
}

/* — Footer Accordion auf Mobile (≤680px) — */
@media (max-width: 680px) {
    .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        padding-bottom: 0.6rem;
        border-bottom: 1px solid rgba(255, 179, 0, 0.12);
        margin-bottom: 0;
    }
    .footer-title::after {
        content: '\f078'; /* fa-chevron-down */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.65rem;
        color: var(--gs-gold);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    .footer-title.footer-accordion-open::after {
        transform: rotate(180deg);
    }
    .footer-links {
        display: none;
        margin-top: 0.75rem;
        overflow: hidden;
    }
    .footer-links.is-open {
        display: block;
        animation: footerAccordionIn 0.25s ease forwards;
    }
    @keyframes footerAccordionIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
