/* ==========================================================================
   BEER'N'BREAKDOWN MODERN DESIGN
   Fonts loaded async in HTML for better performance
   ========================================================================== */

/* ==========================================================================
   CSS VARIABLES - Modern Color Palette
   ========================================================================== */
:root {
    /* Primary Colors - Dark theme im Beernbreakdown-Style */
    --modern-bg-primary: #2b050c;        /* sehr dunkles Bordeaux (Seitenhintergrund) */
    --modern-bg-secondary: #3a0712;      /* etwas heller für Sektionen */
    --modern-bg-tertiary: #4a0c18;       /* Übergang / Hover */
    --modern-bg-card: rgba(58, 7, 18, 0.9); /* Cards leicht transparent */

    /* Accent Colors - warm & bold wie Skull/Flamme */
    --modern-accent-yellow: #ffd54a;      /* kräftiges Gelb der Flamme (Highlight) */
    --modern-accent-red-orange: #ff512f;     /* intensives Rot/Orange vom Schädel */
    --modern-accent-coral: #ff7a59;       /* softer Orange-/Korallton für Secondary */
    --modern-accent-off-white: #ffe8dd;       /* sehr helles warmes Off-White (Dosen-/Circle-Ton) */
    --modern-accent-gold: #ffb347;       /* tieferes Orange/Gold für Buttons */

    /* Text Colors – warmes Off-White statt kaltes Grau */
    --modern-text-primary: #fff7f3;      /* Haupttext, hoher Kontrast auf Bordeaux */
    --modern-text-secondary: #f6c8b0;    /* Untertitel / Meta */
    --modern-text-muted: #b37d73;        /* dezente Labels, Platzhalter */

    /* Gradients – angelehnt an Skull-Gradient */
    --modern-gradient-hero: linear-gradient(
    135deg,
    var(--modern-accent-red-orange) 0%,
    var(--modern-accent-coral) 50%,
    var(--modern-accent-gold) 100%
    );

    --modern-gradient-accent: linear-gradient(
    135deg,
    var(--modern-accent-gold) 0%,
    var(--modern-accent-off-white) 100%
    );

    --modern-gradient-dark: linear-gradient(
    180deg,
    var(--modern-bg-primary) 0%,
    var(--modern-bg-secondary) 100%
    );

    /* Shadows & Glows – warme Glows statt Neon */
    --modern-glow-yellow: 0 0 35px rgba(255, 213, 74, 0.35);   /* gelber Glow */
    --modern-glow-red-orange: 0 0 35px rgba(255, 81, 47, 0.35);   /* rot/orange Glow */
    --modern-glow-coral: 0 0 35px rgba(255, 122, 89, 0.35);    /* softer Korallglow */

    /* Borders */
    --modern-border-color: rgba(255, 248, 243, 0.08);         /* dezente, helle Kante */
    --modern-border-hover: rgba(255, 179, 71, 0.6);           /* gold/orange Hover */

    /* RGB Components – Beernbreakdown Palette */
    --modern-yellow-rgb: 255, 213, 74;        /* Warmes Highlight-Gelb (statt Neon-Lime) */
    --modern-dark-rgb: 43, 5, 12;           /* Sehr dunkles Bordeaux */
    --modern-bg-secondary-rgb: 58, 7, 18;   /* Bordeaux für Sektionen (RGB) */
    --modern-red-orange-rgb: 255, 81, 47;       /* Rot/Orange Hauptakzent */
    --modern-coral-rgb: 255, 122, 89;        /* Korall-/Orange-Akzent */
    --modern-violet-rgb: 255, 143, 94;      /* Heller, warmer Übergangston */
    --modern-teal-rgb: 184, 91, 59;         /* Warmes Rotbraun als Alternativ-Akzent */
    --modern-black-rgb: 0, 0, 0;            /* Schwarz */
    --modern-white-rgb: 255, 247, 243;      /* Warmes Off-White */
    --modern-gold-alt-rgb: 255, 179, 71;    /* Alternatives Gold/Orange */
    --modern-gold-dark-rgb: 204, 122, 31;   /* Dunkles, tiefes Gold */

    /* Solid Colors */
    --modern-yellow: rgb(var(--modern-yellow-rgb));          /* Warmes Gelb-Highlight */
    --modern-red-orange: rgb(var(--modern-red-orange-rgb));      /* Rot/Orange Hauptakzent */
    --modern-coral: rgb(var(--modern-coral-rgb));          /* Korall-/Orange-Akzent */
    --modern-gold-dark: rgb(var(--modern-gold-dark-rgb));/* Dunkles Gold */

    /* Timing */
    --modern-transition-fast: 0.15s ease;
    --modern-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --modern-transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Typography */
    --font-mono: 'Space Mono', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--modern-bg-primary);
    color: var(--modern-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* ==========================================================================
   MODERN HEADER / NAVIGATION
   ========================================================================== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(var(--modern-dark-rgb), 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--modern-border-color);
    transition: var(--modern-transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-header.scrolled {
    padding: 0.75rem 2rem;

}

/* Skull - Links */
.modern-header .logo.skull-div {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.modern-header .skull {
    width: 100px !important;
    height: auto !important;
    transition: var(--modern-transition);
    filter: drop-shadow(0 0 10px rgba(var(--modern-yellow-rgb), 0.3));
}

.modern-header .skull:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(var(--modern-yellow-rgb), 0.6));
}

/* Schriftzug - neben Navigation */
.modern-header .logo.schriftzug-div {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.modern-header .schriftzug {
    height: 45px;
    width: auto;
    transition: var(--modern-transition);
}

.modern-header .schriftzug:hover {
    filter: drop-shadow(0 0 15px rgba(var(--modern-yellow-rgb), 0.4));
}

/* Navigation Container - Rechts */
.modern-header__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation - Rechts */
.modern-header #nav {
    display: flex;
    align-items: center;
}

.modern-header #nav ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-header #nav ul li a {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--modern-text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: var(--modern-transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-header #nav ul li a:hover {
    color: var(--modern-accent-yellow);
    background: rgba(var(--modern-yellow-rgb), 0.1);
}

.modern-header #nav ul li.current a {
    color: var(--modern-accent-yellow);
}

.modern-header #nav ul li.nav-cta a {
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--modern-glow-yellow);
}

.modern-header #nav ul li.nav-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(var(--modern-yellow-rgb), 0.6);
}

/* ==========================================================================
   MODERN HERO SECTION
   ========================================================================== */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

/* Background Effects */
.modern-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.modern-hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(var(--modern-red-orange-rgb), 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(var(--modern-coral-rgb), 0.08) 0%, transparent 40%),
                radial-gradient(ellipse at 80% 60%, rgba(var(--modern-yellow-rgb), 0.06) 0%, transparent 40%);
}

.modern-hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--modern-bg-primary), transparent);
}

/* Video Background (optional) */
.modern-hero__video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.modern-hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.modern-hero__video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(var(--modern-dark-rgb), 0.6) 0%,
        rgba(var(--modern-dark-rgb), 0.8) 50%,
        var(--modern-bg-primary) 100%);
}

/* Mobile: Kein Video, nur Poster-Bild als Hintergrund */
.modern-hero__video.mobile-no-video video {
    display: none;
}

.modern-hero__video.mobile-no-video {
    background: url('../../images/slideshow1.webp') center/cover no-repeat;
}

/* Hero Content */
.modern-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

.modern-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--modern-yellow-rgb), 0.1);
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modern-hero__badge i {
    animation: pulse 2s ease-in-out infinite;
}

.modern-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 0.95;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.modern-hero__title-line {
    display: block;
    color: var(--modern-text-primary);
    text-shadow: 0 0 60px rgba(var(--modern-white-rgb), 0.3);
}

.modern-hero__title-highlight {
    display: block;
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

.modern-hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--modern-text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

.modern-hero__date {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--modern-accent-yellow);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.modern-hero__date span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-hero__date .separator {
    width: 6px;
    height: 6px;
    background: var(--modern-accent-yellow);
    border-radius: 50%;
}

/* Hero CTA Buttons */
.modern-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* ==========================================================================
   MARQUEE / TICKER
   ========================================================================== */
.modern-marquee {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
    background: var(--modern-accent-yellow);
    transform: rotate(-1deg) scale(1.02);
    margin: -1rem 0 0;
}

.modern-marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.modern-marquee__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.modern-marquee__item {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--modern-bg-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modern-marquee__item i {
    font-size: 0.875em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Reverse marquee for alternating rows */
.modern-marquee--reverse .modern-marquee__track {
    animation-direction: reverse;
}

/* ==========================================================================
   MODERN BUTTONS
   ========================================================================== */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--modern-transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modern-btn--primary {
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
    box-shadow: var(--modern-glow-yellow);
}

.modern-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(var(--modern-yellow-rgb), 0.6), 0 20px 40px rgba(var(--modern-black-rgb), 0.3);
}

.modern-btn--secondary {
    background: transparent;
    border-color: var(--modern-text-secondary);
    color: var(--modern-text-primary);
}

.modern-btn--secondary:hover {
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
    transform: translateY(-2px);
}

.modern-btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   MODERN SECTIONS
   ========================================================================== */
.modern-section {
    position: relative;
    padding: var(--section-padding) 2rem;
}

.modern-section__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Section Headers */
.modern-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.modern-section__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.modern-section__title {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.modern-section__subtitle {
    font-size: 1.125rem;
    color: var(--modern-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   INFO SECTION - Modern Grid Layout
   ========================================================================== */
.modern-info {
    background: var(--modern-bg-secondary);
    position: relative;
    overflow: hidden;
}

.modern-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--modern-accent-yellow), transparent);
}

.modern-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .modern-info__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.modern-info__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.modern-info__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--modern-transition-slow);
}

.modern-info__media:hover img {
    transform: scale(1.05);
}

.modern-info__media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--modern-border-color);
    border-radius: 20px;
    pointer-events: none;
}

.modern-info__content h2 {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
}

.modern-info__content p {
    color: var(--modern-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature List */
.modern-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.modern-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.modern-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--modern-yellow-rgb), 0.1);
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.2);
    border-radius: 12px;
    color: var(--modern-accent-yellow);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.modern-feature__text strong {
    display: block;
    color: var(--modern-text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.modern-feature__text span {
    font-size: 0.9375rem;
    color: var(--modern-text-muted);
}

/* ==========================================================================
   LINEUP SECTION - Coming Soon Style
   ========================================================================== */
.modern-lineup {
    background: var(--modern-bg-primary);
    position: relative;
}

.modern-lineup__tba {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--modern-bg-card);
    border: 1px solid var(--modern-border-color);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-lineup__tba::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--modern-red-orange-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.modern-lineup__tba-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

.modern-lineup__tba h3 {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.modern-lineup__tba p {
    color: var(--modern-text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* ==========================================================================
   SPOTIFY SECTION
   ========================================================================== */
.modern-spotify {
    background: linear-gradient(180deg, var(--modern-bg-primary) 0%, var(--modern-bg-secondary) 100%);
}

.modern-spotify__wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--modern-black-rgb), 0.4);
}

.modern-spotify__wrapper iframe {
    display: block;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.modern-cta {
    position: relative;
    padding: var(--section-padding) 2rem;
    overflow: hidden;
}

.modern-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.modern-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.modern-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        var(--modern-bg-primary) 0%,
        rgba(var(--modern-dark-rgb), 0.8) 30%,
        rgba(var(--modern-dark-rgb), 0.8) 70%,
        var(--modern-bg-primary) 100%);
}

.modern-cta__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.modern-cta__badge {
    display: inline-block;
    background: rgba(var(--modern-coral-rgb), 0.08);
    border: 1px solid rgba(var(--modern-coral-rgb), 0.25);
    color: var(--modern-accent-coral);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.modern-cta__title {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    line-height: 1;
}

.modern-cta__title span {
    display: block;
}

.modern-cta__title .highlight {
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-cta__description {
    font-size: 1.125rem;
    color: var(--modern-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.modern-cta__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.modern-cta__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    color: var(--modern-text-secondary);
}

.modern-cta__feature i {
    color: var(--modern-accent-yellow);
}

.modern-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   MODERN FOOTER
   ========================================================================== */
.modern-footer {
    background: var(--modern-bg-secondary);
    border-top: 1px solid var(--modern-border-color);
    padding: 4rem 2rem 2rem;
}

.modern-footer .footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 900px) {
    .modern-footer .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .modern-footer .footer-content {
        grid-template-columns: 1fr;
    }
}

.modern-footer .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.modern-footer .footer-tagline {
    color: var(--modern-text-muted);
    font-size: 0.9375rem;
}

.modern-footer .footer-heading {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem;
}

.modern-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-footer .footer-links li {
    margin-bottom: 0.75rem;
}

.modern-footer .footer-links a {
    color: var(--modern-text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--modern-transition-fast);
}

.modern-footer .footer-links a:hover {
    color: var(--modern-accent-yellow);
}

.modern-footer .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modern-footer .footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--modern-white-rgb), 0.05);
    border: 1px solid var(--modern-border-color);
    border-radius: 12px;
    color: var(--modern-text-secondary);
    font-size: 1.125rem;
    transition: var(--modern-transition);
}

.modern-footer .footer-social a:hover {
    background: rgba(var(--modern-yellow-rgb), 0.1);
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
    transform: translateY(-3px);
}

.modern-footer .footer-bottom {
    max-width: var(--container-max);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--modern-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.modern-footer .footer-bottom p {
    color: var(--modern-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.modern-footer .footer-heart {
    color: var(--modern-accent-coral);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: var(--modern-glow-yellow); }
    50% { box-shadow: 0 0 60px rgba(var(--modern-yellow-rgb), 0.6); }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--modern-text-primary);
    margin: 3px 0;
    transition: var(--modern-transition);
    border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 900px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .modern-header__right {
        flex: 1;
        justify-content: flex-end;
    }

    .modern-header__right .logo.schriftzug-div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
    }

    .modern-header .schriftzug {
        height: 35px;
    }

    .modern-header .skull {
        width: 80px !important;
    }

    .modern-header #nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(var(--modern-dark-rgb), 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--modern-border-color);
        z-index: 1000;
    }

    .modern-header #nav.active {
        right: 0;
    }

    .modern-header #nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .modern-header #nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .modern-header #nav ul li.nav-cta {
        margin-top: 1rem;
    }

    .modern-header #nav ul li.nav-cta a {
        text-align: center;
    }

    /* Mobile nav overlay */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(var(--modern-black-rgb), 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--modern-transition);
        z-index: 999;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .modern-header {
        padding: 0.75rem 1rem;
    }

    .modern-hero {
        padding: 8rem 1rem 3rem;
        min-height: 90vh;
    }

    .modern-hero__title {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .modern-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        max-width: 300px;
    }

    .modern-marquee {
        transform: rotate(-2deg) scale(1.05);
    }

    .modern-marquee__item {
        font-size: 0.875rem;
    }

    .modern-section {
        padding: 3rem 1rem;
    }

    .modern-cta__features {
        flex-direction: column;
        align-items: center;
    }

    .modern-cta__title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-gradient {
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-green {
    color: var(--modern-accent-yellow);
}

.glow-green {
    box-shadow: var(--modern-glow-yellow);
}

.glow-purple {
    box-shadow: var(--modern-glow-red-orange);
}

/* ==========================================================================
   LINEUP PAGE STYLES
   ========================================================================== */

/* Lineup Hero */
.lineup-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.lineup-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center top, rgba(var(--modern-red-orange-rgb), 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(var(--modern-coral-rgb), 0.08) 0%, transparent 35%);
}

.lineup-hero__content {
    position: relative;
    z-index: 1;
}

.lineup-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.lineup-hero__subtitle {
    font-size: 1.25rem;
    color: var(--modern-text-secondary);
    max-width: 600px;
}

/* Year Filter */
.year-filter {
    background: var(--modern-bg-secondary);
    padding: 2rem;
    border-bottom: 1px solid var(--modern-border-color);
}

.year-filter__container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.year-filter__btn {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--modern-border-color);
    border-radius: 50px;
    color: var(--modern-text-secondary);
    cursor: pointer;
    transition: var(--modern-transition);
}

.year-filter__btn:hover {
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
}

.year-filter__btn.active {
    background: var(--modern-accent-yellow);
    border-color: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
}

/* Search Box */
.search-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 50px;
    color: var(--modern-text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--modern-transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--modern-accent-yellow);
    box-shadow: 0 0 20px rgba(var(--modern-yellow-rgb), 0.2);
}

.search-input::placeholder {
    color: var(--modern-text-muted);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--modern-text-muted);
}

/* Lineup Section */
.lineup-section {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.lineup-container {
    max-width: 1400px;
    margin: 0 auto;
}

.lineup-year {
    margin-bottom: 4rem;
    display: none;
}

.lineup-year.visible {
    display: block;
}

.year-title {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--modern-accent-yellow);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--modern-border-color);
}

/* TBA Message */
.lineup-tba-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--modern-bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--modern-border-color);
}

.lineup-tba-message i {
    font-size: 3rem;
    color: var(--modern-accent-red-orange);
    margin-bottom: 1.5rem;
}

.lineup-tba-message h3 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--modern-text-primary);
    margin-bottom: 1rem;
}

.lineup-tba-message p {
    color: var(--modern-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Band Grid */
.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Band Card */
.band-card {
    background: var(--modern-bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--modern-border-color);
    transition: var(--modern-transition);
}

.band-card:hover {
    transform: translateY(-5px);
    border-color: var(--modern-accent-yellow);
    box-shadow: 0 20px 40px rgba(var(--modern-black-rgb), 0.3);
}

.band-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.band-card__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.band-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--modern-transition);
}

.band-card:hover .band-card__media img {
    transform: scale(1.1);
}

.band-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--modern-dark-rgb), 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--modern-transition);
}

.band-card:hover .band-card__overlay {
    opacity: 1;
}

.band-card__genre {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--modern-accent-yellow);
    background: rgba(var(--modern-yellow-rgb), 0.12);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.band-card__year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--modern-text-muted);
}

.band-card__content {
    padding: 1.25rem;
}

.band-card__name {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin-bottom: 0.5rem;
}

.band-card__description {
    font-size: 0.875rem;
    color: var(--modern-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

/* FAQ Hero */
.faq-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.faq-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center top, rgba(var(--modern-coral-rgb), 0.35) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(var(--modern-red-orange-rgb), 0.2) 0%, transparent 35%);
}

.faq-hero__content {
    position: relative;
    z-index: 1;
}

.faq-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--modern-accent-yellow) 0%, var(--modern-accent-red-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.faq-hero__subtitle {
    font-size: 1.25rem;
    color: var(--modern-text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Category */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category__title {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category__title i {
    font-size: 1.25rem;
}

/* FAQ Search */
.faq-search-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.faq-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--modern-text-muted);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3rem;
    background: var(--modern-bg-secondary);
    border: 2px solid var(--modern-border-color);
    border-radius: 50px;
    color: var(--modern-text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--modern-transition);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--modern-accent-yellow);
    box-shadow: 0 0 20px rgba(var(--modern-yellow-rgb), 0.2);
}

.faq-search-input::placeholder {
    color: var(--modern-text-muted);
}

.faq-search-clear {
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 50%;
    color: var(--modern-text-muted);
    cursor: pointer;
    transition: var(--modern-transition);
}

.faq-search-clear:hover {
    border-color: var(--modern-accent-coral);
    color: var(--modern-accent-coral);
}

.faq-search-results {
    margin-top: 1rem;
    text-align: center;
}

.faq-search-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(var(--modern-yellow-rgb), 0.1);
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.25);
    border-radius: 50px;
    color: var(--modern-accent-yellow);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.faq-search-summary.faq-search-no-results {
    background: rgba(var(--modern-coral-rgb), 0.1);
    border-color: rgba(var(--modern-coral-rgb), 0.3);
    color: var(--modern-accent-coral);
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--modern-bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--modern-border-color);
    overflow: hidden;
    transition: var(--modern-transition);
}

.faq-item:hover {
    border-color: rgba(var(--modern-yellow-rgb), 0.3);
}

.faq-item__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-item__question span {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--modern-text-primary);
}

.faq-item__question i {
    color: var(--modern-text-muted);
    transition: var(--modern-transition);
}

.faq-item__question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--modern-accent-yellow);
}

.faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--modern-text-secondary);
    line-height: 1.7;
}

.faq-item__answer p {
    margin-bottom: 1rem;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer a {
    color: var(--modern-accent-yellow);
    text-decoration: none;
    transition: var(--modern-transition);
}

.faq-item__answer a:hover {
    text-decoration: underline;
}

.faq-item__answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.faq-item__answer ul li {
    margin-bottom: 0.5rem;
}

/* Opening Hours Grid */
.opening-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.opening-hours__item {
    background: var(--modern-bg-primary);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--modern-border-color);
}

.opening-hours__item h4 {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opening-hours__item p {
    color: var(--modern-text-primary);
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    padding: 4rem 2rem;
    background: var(--modern-bg-secondary);
    text-align: center;
}

.faq-cta__content h2 {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--modern-text-primary);
    margin-bottom: 0.5rem;
}

.faq-cta__content p {
    color: var(--modern-text-secondary);
    margin-bottom: 2rem;
}

.faq-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-cta__actions .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-weight: 700;
    text-decoration: none;
    transition: var(--modern-transition);
}

.faq-cta__actions .button--primary {
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
}

.faq-cta__actions .button--primary:hover {
    box-shadow: var(--modern-glow-yellow);
    transform: translateY(-2px);
}

.faq-cta__actions .button--ghost {
    background: transparent;
    border: 2px solid var(--modern-border-color);
    color: var(--modern-text-primary);
}

.faq-cta__actions .button--ghost:hover {
    border-color: var(--modern-accent-red-orange);
    color: var(--modern-accent-red-orange);
}

/* ==========================================================================
   TIMETABLE PAGE STYLES
   ========================================================================== */

/* Timetable Hero */
.timetable-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.timetable-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at center top, rgba(var(--modern-yellow-rgb), 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(var(--modern-red-orange-rgb), 0.08) 0%, transparent 35%);
}

.timetable-hero__content {
    position: relative;
    z-index: 1;
}

.timetable-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--modern-accent-yellow) 0%, var(--modern-accent-red-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.timetable-hero__subtitle {
    font-size: 1.25rem;
    color: var(--modern-text-secondary);
}

/* Timetable Section */
.timetable-page-section {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.timetable-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Day Switcher */
.day-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.day-switcher__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: var(--modern-bg-secondary);
    border: 2px solid var(--modern-border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--modern-transition);
}

.day-switcher__btn:hover {
    border-color: var(--modern-accent-yellow);
}

.day-switcher__btn.active {
    background: rgba(var(--modern-yellow-rgb), 0.08);
    border-color: var(--modern-accent-yellow);
}

.day-switcher__label {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    text-transform: uppercase;
}

.day-switcher__btn.active .day-switcher__label {
    color: var(--modern-accent-yellow);
}

.day-switcher__date {
    font-size: 0.875rem;
    color: var(--modern-text-muted);
    margin-top: 0.25rem;
}

/* TBA Message */
.timetable-tba {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--modern-bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--modern-border-color);
}

.timetable-tba i {
    font-size: 3rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 1.5rem;
}

.timetable-tba h3 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--modern-text-primary);
    margin-bottom: 1rem;
}

.timetable-tba p {
    color: var(--modern-text-secondary);
    max-width: 500px;
    margin: 0 auto 0.5rem;
    line-height: 1.6;
}

/* Day Schedule */
.day-schedule {
    display: none;
}

.day-schedule.active {
    display: block;
}

.day-schedule__header h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 2rem;
    text-align: center;
}

/* Timetable List */
.timetable-wrapper {
    background: var(--modern-bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--modern-border-color);
    overflow: hidden;
}

.timetable-list {
    display: flex;
    flex-direction: column;
}

.timetable-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--modern-border-color);
    transition: var(--modern-transition);
}

.timetable-item:last-child {
    border-bottom: none;
}

.timetable-item:hover {
    background: rgba(var(--modern-yellow-rgb), 0.04);
}

.timetable-item--headliner {
    background: rgba(var(--modern-red-orange-rgb), 0.08);
}

.timetable-item--headliner:hover {
    background: rgba(var(--modern-red-orange-rgb), 0.12);
}

.timetable-item--doors {
    background: rgba(var(--modern-yellow-rgb), 0.08);
}

.timetable-item__time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 120px;
}

.timetable-item__time i {
    color: var(--modern-accent-yellow);
    font-size: 1.25rem;
}

.timetable-item__time span {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--modern-text-primary);
}

.timetable-item__details {
    flex: 1;
}

.timetable-item__details h3 {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin-bottom: 0.25rem;
}

.timetable-item__details p {
    font-size: 0.875rem;
    color: var(--modern-text-secondary);
    margin: 0;
}

.timetable-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    background: var(--modern-accent-red-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

/* Info Box */
.timetable-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--modern-bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--modern-border-color);
    margin-top: 2rem;
}

.timetable-info-box i {
    font-size: 1.5rem;
    color: var(--modern-accent-yellow);
    flex-shrink: 0;
}

.timetable-info-box h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--modern-text-primary);
    margin-bottom: 0.75rem;
}

.timetable-info-box ul {
    list-style: disc;
    padding-left: 1.25rem;
    color: var(--modern-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.timetable-info-box ul li {
    margin-bottom: 0.25rem;
}

/* ==========================================================================
   MODERN FOOTER STYLES
   ========================================================================== */
.modern-footer {
    background: var(--modern-bg-secondary);
    border-top: 1px solid var(--modern-border-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--modern-border-color);
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--modern-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--modern-text-primary);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--modern-text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--modern-transition);
}

.footer-links a:hover {
    color: var(--modern-accent-yellow);
}

.footer-newsletter p {
    color: var(--modern-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 50%;
    color: var(--modern-text-secondary);
    text-decoration: none;
    transition: var(--modern-transition);
}

.footer-social a:hover {
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--modern-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-credits {
    font-size: 0.75rem;
}

.footer-heart {
    color: var(--modern-accent-coral);
}

/* Footer Sponsors Section */
.footer-sponsors {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 3rem 0;
    border-top: 1px solid var(--modern-border-color);
    text-align: center;
}

.footer-sponsors__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--modern-text-primary);
    margin: 0 0 2rem;
    letter-spacing: 0.05em;
}

.footer-sponsors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: var(--modern-bg-secondary);
    border: 2px dashed var(--modern-border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sponsor-placeholder:hover {
    border-color: var(--modern-accent-red-orange);
    background: rgba(var(--modern-violet-rgb), 0.05);
}

.sponsor-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--modern-text-muted);
    text-align: center;
    padding: 0.5rem;
}

.sponsor-placeholder:hover span {
    color: var(--modern-accent-red-orange);
}

/* Real Sponsor Logos */
.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1rem;
    background: var(--modern-bg-secondary);
    border: 1px solid var(--modern-border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.footer-sponsors__cta {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(var(--modern-violet-rgb), 0.1), rgba(var(--modern-teal-rgb), 0.05));
    border: 1px solid var(--modern-border-color);
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.footer-sponsors__cta p {
    font-size: 1rem;
    color: var(--modern-text-secondary);
    margin: 0 0 1rem;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--modern-accent-red-orange), var(--modern-accent-yellow));
    color: white;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--modern-violet-rgb), 0.3);
}

.sponsor-btn i {
    font-size: 1rem;
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-social {
        justify-content: center;
    }
}

/* ==========================================================================
   DSGVO-KONFORME EMBED PLACEHOLDER (Zwei-Klick-Lösung)
   ========================================================================== */
.embed-placeholder {
    position: relative;
    background: var(--modern-bg-card);
    border: 2px dashed var(--modern-border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    min-height: 380px;
    transition: all 0.3s ease;
}

.embed-placeholder:hover {
    border-color: var(--modern-accent-yellow);
    background: rgba(var(--modern-yellow-rgb), 0.02);
}

.embed-placeholder__icon {
    font-size: 4rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.embed-placeholder__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1rem 0;
}

.embed-placeholder__text {
    color: var(--modern-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 0 1.5rem 0;
}

.embed-placeholder__privacy {
    font-size: 0.8rem;
    color: var(--modern-text-muted);
    margin-bottom: 2rem;
}

.embed-placeholder__privacy a {
    color: var(--modern-accent-yellow);
    text-decoration: underline;
}

.embed-placeholder__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--modern-accent-yellow), var(--modern-accent-off-white));
    color: var(--modern-bg-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.embed-placeholder__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--modern-glow-yellow);
}

.embed-placeholder__btn i {
    font-size: 1.1rem;
}

/* Spotify-specific placeholder */
.embed-placeholder--spotify {
    background: var(--modern-gradient-dark)
}

.embed-placeholder--spotify .embed-placeholder__icon {
    color: var(--modern-accent-yellow);
}

.embed-placeholder--spotify .embed-placeholder__btn {
    background: var(--modern-accent-yellow);
}

.embed-placeholder--spotify .embed-placeholder__btn:hover {
    box-shadow: 0 0 30px rgba(var(--modern-yellow-rgb), 0.4);
}

/* Google Maps-specific placeholder */
.embed-placeholder--maps {
    min-height: 450px;
    background: var(--modern-gradient-dark)
}

.embed-placeholder--maps .embed-placeholder__icon {
    color: var(--modern-accent-yellow);
}

.embed-placeholder--maps .embed-placeholder__btn {
    background: var(--modern-accent-yellow);
}

.embed-placeholder--maps .embed-placeholder__btn:hover {
    box-shadow: 0 0 30px rgba(var(--modern-yellow-rgb), 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .embed-placeholder {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }

    .embed-placeholder__icon {
        font-size: 3rem;
    }

    .embed-placeholder__title {
        font-size: 1.25rem;
    }

    .embed-placeholder--maps {
        min-height: 350px;
    }
}

/* ==========================================================================
   PAGE-SPECIFIC RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 768px) {
    .lineup-hero,
    .faq-hero,
    .timetable-hero {
        padding: 6rem 1rem 3rem;
        min-height: 30vh;
    }

    .year-filter {
        padding: 1.5rem 1rem;
    }

    .year-filter__btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .lineup-section,
    .faq-section,
    .timetable-page-section {
        padding: 2rem 1rem;
    }

    .band-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .day-switcher {
        flex-direction: column;
        align-items: stretch;
    }

    .day-switcher__btn {
        padding: 1rem 1.5rem;
    }

    .timetable-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }

    .timetable-item__time {
        min-width: auto;
    }

    .faq-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .faq-cta__actions .button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   BAND PAGE STYLES
   ========================================================================== */

/* Band Hero */
.band-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.band-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.band-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.band-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--modern-bg-primary) 0%, transparent 50%);
}

.band-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.band-hero__genre {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--modern-accent-yellow);
    background: rgba(var(--modern-yellow-rgb), 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.25);
    margin-bottom: 1rem;
}

.band-hero__title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 12vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: var(--modern-gradient-hero);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.band-hero__location {
    font-size: 1.125rem;
    color: var(--modern-text-secondary);
    margin-bottom: 0.5rem;
}

.band-hero__year {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--modern-text-muted);
}

/* Band Info Section */
.band-info {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.band-info__container {
    max-width: 1200px;
    margin: 0 auto;
}

.band-info__content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

/* Band Description */
.band-info__description {
    color: var(--modern-text-secondary);
    line-height: 1.8;
}

.band-info__description p {
    margin-bottom: 1.5rem;
}

.band-info__description p.lead {
    font-size: 1.25rem;
    color: var(--modern-text-primary);
    line-height: 1.6;
}

.band-info__description strong {
    color: var(--modern-text-primary);
}

.band-quote {
    position: relative;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--modern-text-primary);
    padding: 2rem;
    background: var(--modern-bg-secondary);
    border-radius: 16px;
    border-left: 4px solid var(--modern-accent-red-orange);
    margin: 2rem 0;
}

.band-quote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--modern-accent-red-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Band Sidebar */
.band-info__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.band-details,
.band-members,
.social-links {
    background: var(--modern-bg-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--modern-border-color);
}

.band-details h3,
.band-members h3,
.social-links h3 {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--modern-accent-yellow);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--modern-border-color);
}

.band-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--modern-border-color);
}

.band-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.875rem;
    color: var(--modern-text-muted);
}

.detail-value {
    font-size: 0.875rem;
    color: var(--modern-text-primary);
    font-weight: 500;
}

/* Band Members */
.band-members ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.band-members li {
    padding: 0.5rem 0;
    color: var(--modern-text-secondary);
    font-size: 0.875rem;
}

.band-members li strong {
    color: var(--modern-text-primary);
}

/* Social Links */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 10px;
    color: var(--modern-text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--modern-transition);
}

.social-link:hover {
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
}

.social-link i {
    font-size: 1rem;
}

.social-link.facebook:hover {
    border-color: var(--modern-accent-coral);
    color: var(--modern-accent-coral);
}

.social-link.instagram:hover {
    border-color: var(--modern-accent-coral);
    color: var(--modern-accent-coral);
}

.social-link.spotify:hover {
    border-color: var(--modern-accent-yellow);
    color: var(--modern-accent-yellow);
}

.social-link.website:hover {
    border-color: var(--modern-accent-red-orange);
    color: var(--modern-accent-red-orange);
}

/* Band Page Responsive */
@media (max-width: 900px) {
    .band-info__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .band-info__sidebar {
        order: -1;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .band-hero {
        min-height: 50vh;
        padding: 6rem 1rem 3rem;
    }

    .band-hero__title {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }

    .band-info {
        padding: 2rem 1rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   LEGAL/CONTENT PAGE STYLES (Impressum, AGB, Datenschutz, Info)
   ===================================================== */

/* Wrapper */
#wrapper {
    padding-top: 100px;
    min-height: 100vh;
}

/* Main Content Section */
.main.style1 {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.main.style1 header.small {
    text-align: center;
    margin-bottom: 3rem;
}

.main.style1 header.small h1,
.main.style1 header.small h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--modern-text-primary);
    margin: 0;
    text-shadow: 0 0 40px rgba(var(--modern-violet-rgb), 0.2);
}

.main.style1 .inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--modern-bg-secondary);
    border: 1px solid var(--modern-border-color);
    border-radius: 16px;
    padding: 3rem;
}

.main.style1 .inner h2,
.main.style1 .inner h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--modern-accent-yellow);
    margin: 2rem 0 1rem;
}

.main.style1 .inner h2 {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--modern-border-color);
}

.main.style1 .inner h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.main.style1 .inner h3 {
    font-size: 1.25rem;
}

.main.style1 .inner p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--modern-text-secondary);
    margin-bottom: 1rem;
}

.main.style1 .inner strong {
    color: var(--modern-text-primary);
    font-weight: 600;
}

.main.style1 .inner a {
    color: var(--modern-accent-red-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main.style1 .inner a:hover {
    color: var(--modern-accent-yellow);
    text-decoration: underline;
}

.main.style1 .inner ul,
.main.style1 .inner ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--modern-text-secondary);
}

.main.style1 .inner li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Toggle Container (for Info page) */
.toggle-container {
    margin-bottom: 1rem;
}

.toggle-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 12px;
    color: var(--modern-text-primary);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-button:hover {
    border-color: var(--modern-accent-red-orange);
    background: rgba(var(--modern-violet-rgb), 0.05);
}

.toggle-button .icon {
    color: var(--modern-accent-yellow);
    transition: transform 0.3s ease;
}

.toggle-div {
    padding: 1.5rem;
    margin-top: 0.5rem;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 12px;
}

.toggle-div p {
    color: var(--modern-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.toggle-div strong {
    color: var(--modern-accent-yellow);
    display: block;
    margin: 1.5rem 0 0.5rem;
}

.toggle-div ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--modern-text-secondary);
}

.toggle-div li {
    margin-bottom: 0.25rem;
}

.toggle-div .image.fit {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.toggle-div .faq-link {
    color: var(--modern-accent-red-orange);
    text-decoration: none;
}

.toggle-div .faq-link:hover {
    text-decoration: underline;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    #wrapper {
        padding-top: 80px;
    }

    .main.style1 {
        padding: 2rem 1rem;
    }

    .main.style1 .inner {
        padding: 1.5rem;
    }

    .toggle-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.contact-hero__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--modern-bg-primary) 0%, var(--modern-bg-secondary) 50%, rgba(var(--modern-violet-rgb), 0.1) 100%);
    z-index: 0;
}

.contact-hero__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(var(--modern-violet-rgb), 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(var(--modern-teal-rgb), 0.1) 0%, transparent 50%);
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--modern-text-primary);
    margin: 0 0 1rem;
    text-shadow: 0 0 60px rgba(var(--modern-violet-rgb), 0.3);
}

.contact-hero__subtitle {
    font-size: 1.25rem;
    color: var(--modern-text-secondary);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: var(--modern-bg-primary);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Cards Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--modern-bg-secondary);
    border: 1px solid var(--modern-border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--modern-accent-red-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(var(--modern-black-rgb), 0.3);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--modern-accent-red-orange), var(--modern-accent-yellow));
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 0.75rem;
}

.contact-card__description {
    font-size: 0.9375rem;
    color: var(--modern-text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.contact-card__link {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--modern-accent-yellow);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--modern-accent-yellow);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-card__link:hover {
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
}

/* Contact Info Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--modern-bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--modern-border-color);
}

.contact-info__item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info__item h3 i {
    font-size: 1.25rem;
}

.contact-info__item p {
    font-size: 0.9375rem;
    color: var(--modern-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.contact-info__item p strong {
    color: var(--modern-text-primary);
}

/* Contact Social */
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--modern-bg-primary);
    border: 1px solid var(--modern-border-color);
    border-radius: 50%;
    color: var(--modern-text-secondary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    border-color: var(--modern-accent-red-orange);
    color: var(--modern-accent-red-orange);
    transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(var(--modern-violet-rgb), 0.1), rgba(var(--modern-teal-rgb), 0.05));
    border-radius: 16px;
    border: 1px solid var(--modern-border-color);
}

.contact-form-section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 1rem;
}

.contact-form-section p {
    font-size: 1rem;
    color: var(--modern-text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button--primary {
    background: linear-gradient(135deg, var(--modern-accent-red-orange), var(--modern-accent-yellow));
    color: white;
    border-color: transparent;
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--modern-violet-rgb), 0.3);
}

.button--ghost {
    background: transparent;
    color: var(--modern-text-primary);
    border-color: var(--modern-border-color);
}

.button--ghost:hover {
    border-color: var(--modern-accent-red-orange);
    color: var(--modern-accent-red-orange);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 30vh;
        padding: 6rem 1rem 3rem;
    }

    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .contact-form-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   COUNTDOWN TIMER
   ========================================================================== */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(var(--modern-yellow-rgb), 0.05);
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 90px;
    position: relative;
    overflow: hidden;
    transition: var(--modern-transition);
}

.countdown__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--modern-yellow-rgb), 0.1), transparent);
    animation: shimmer 3s infinite;
}

.countdown__item:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--modern-yellow-rgb), 0.5);
    box-shadow: 0 10px 40px rgba(var(--modern-yellow-rgb), 0.2);
}

.countdown__number {
    font-family: var(--font-mono);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--modern-accent-yellow);
    line-height: 1;
    text-shadow: 0 0 30px rgba(var(--modern-yellow-rgb), 0.5);
}

.countdown__label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--modern-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.countdown__separator {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    opacity: 0.5;
    animation: blink 1s ease infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Countdown Responsive */
@media (max-width: 600px) {
    .countdown {
        gap: 0.25rem;
    }

    .countdown__item {
        padding: 0.75rem 0.5rem;
        min-width: 60px;
        border-radius: 12px;
    }

    .countdown__separator {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   FLOATING ELEMENTS - Hero Background
   ========================================================================== */
.hero-floating {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-floating__item {
    position: absolute;
    font-size: 2rem;
    color: var(--modern-accent-yellow);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
    filter: blur(1px);
}

.hero-floating__item i {
    display: block;
}

.hero-floating__item--1 {
    top: 15%;
    left: 10%;
    font-size: 2.5rem;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero-floating__item--2 {
    top: 25%;
    right: 15%;
    font-size: 1.75rem;
    animation-delay: -3s;
    animation-duration: 22s;
    color: var(--modern-accent-red-orange);
}

.hero-floating__item--3 {
    bottom: 30%;
    left: 8%;
    font-size: 2rem;
    animation-delay: -6s;
    animation-duration: 25s;
    color: var(--modern-accent-coral);
}

.hero-floating__item--4 {
    top: 40%;
    right: 8%;
    font-size: 1.5rem;
    animation-delay: -9s;
    animation-duration: 20s;
    color: var(--modern-accent-gold);
}

.hero-floating__item--5 {
    bottom: 20%;
    right: 20%;
    font-size: 2.25rem;
    animation-delay: -12s;
    animation-duration: 23s;
}

.hero-floating__item--6 {
    top: 60%;
    left: 15%;
    font-size: 1.75rem;
    animation-delay: -15s;
    animation-duration: 19s;
    color: var(--modern-accent-off-white);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(10deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(8deg);
    }
}

/* Hide floating elements on mobile for performance */
@media (max-width: 768px) {
    .hero-floating {
        display: none;
    }
}

/* ==========================================================================
   HERO ANIMATIONS - Stagger & Effects
   ========================================================================== */
/* Stagger Animation for Hero Content */
.modern-hero__badge {
    animation: fadeInUp 0.8s ease both;
}

.modern-hero__title-line {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.modern-hero__title-highlight {
    animation: fadeInUp 0.8s ease 0.3s both, glowPulse 3s ease-in-out infinite 1.5s;
}

.modern-hero__subtitle {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.modern-hero__date {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.modern-hero__actions {
    animation: fadeInUp 0.8s ease 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(var(--modern-red-orange-rgb), 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(var(--modern-coral-rgb), 0.6));
    }
}

/* Glitch Effect for Title on Hover */
.modern-hero__title:hover .modern-hero__title-highlight {
    animation: glitch 0.5s ease infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow:
            2px 0 var(--modern-accent-off-white),
            -2px 0 var(--modern-accent-coral);
        transform: translate(0);
    }
    20% {
        text-shadow:
            -2px 0 var(--modern-accent-off-white),
            2px 0 var(--modern-accent-coral);
        transform: translate(-2px, 2px);
    }
    40% {
        text-shadow:
            2px 0 var(--modern-accent-coral),
            -2px 0 var(--modern-accent-off-white);
        transform: translate(2px, -2px);
    }
    60% {
        text-shadow:
            -2px 0 var(--modern-accent-coral),
            2px 0 var(--modern-accent-off-white);
        transform: translate(-1px, 1px);
    }
    80% {
        text-shadow:
            2px 0 var(--modern-accent-off-white),
            -2px 0 var(--modern-accent-coral);
        transform: translate(1px, -1px);
    }
}

/* ==========================================================================
   PULSING CTA BUTTON
   ========================================================================== */
.modern-btn--primary {
    position: relative;
    overflow: visible;
}

.modern-btn--primary::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--modern-accent-yellow);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.modern-btn--primary:hover::before {
    animation: none;
    opacity: 0.6;
    transform: scale(1.1);
}

/* ==========================================================================
   PARALLAX EFFECT (via JS class)
   ========================================================================== */
.modern-hero.parallax-active .modern-hero__bg {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.1s linear;
}

.modern-hero.parallax-active .modern-hero__video {
    transform: translateY(calc(var(--parallax-offset, 0) * 0.5));
    transition: transform 0.1s linear;
}

/* ==========================================================================
   ENHANCED GRADIENT ANIMATION
   ========================================================================== */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================================================
   SCROLL INDICATOR
   ========================================================================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease 1.2s both;
    z-index: 10;
}

.scroll-indicator__mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--modern-text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: var(--modern-accent-yellow);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-indicator__text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--modern-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS - Intersection Observer
   ========================================================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate--left {
    opacity: 0;
    transform: translateX(-60px);
}

.scroll-animate--left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate--right {
    opacity: 0;
    transform: translateX(60px);
}

.scroll-animate--right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate--scale {
    opacity: 0;
    transform: scale(0.9);
}

.scroll-animate--scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for list items */
.scroll-animate--stagger > *:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate--stagger > *:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate--stagger > *:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate--stagger > *:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate--stagger > *:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate--stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ==========================================================================
   NAVIGATION SCROLL EFFECT
   ========================================================================== */
.modern-header {
    transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.modern-header.scrolled {
    padding: 0.5rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(var(--modern-black-rgb), 0.3);
}

.modern-header.scrolled .modern-logo img {
    height: 40px;
    transition: height 0.3s ease;
}

/* ==========================================================================
   LOCATION SECTION PARALLAX & ANIMATIONS
   ========================================================================== */
.modern-info__image {
    overflow: hidden;
    position: relative;
}

.modern-info__image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-info__image:hover img {
    transform: scale(1.05);
}

.modern-info__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--modern-red-orange-rgb), 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.modern-info__image:hover::after {
    opacity: 1;
}

/* Feature list animation */
.modern-info__features li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.modern-info__features.animate-in li {
    opacity: 1;
    transform: translateX(0);
}

.modern-info__features li:nth-child(1) { transition-delay: 0.1s; }
.modern-info__features li:nth-child(2) { transition-delay: 0.2s; }
.modern-info__features li:nth-child(3) { transition-delay: 0.3s; }

.modern-info__features li .icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-info__features li:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(var(--modern-yellow-rgb), 0.3);
}

/* ==========================================================================
   COMING SOON - Simple Style (no animation)
   ========================================================================== */
/* Animations removed per user request */

/* ==========================================================================
   SPOTIFY CARD FLOATING EFFECT
   ========================================================================== */
.embed-placeholder {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.embed-placeholder:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(var(--modern-black-rgb), 0.4),
                0 0 40px rgba(var(--modern-yellow-rgb), 0.2);
    animation-play-state: paused;
}

.embed-placeholder--spotify .embed-placeholder__icon {
    transition: transform 0.3s ease;
}

.embed-placeholder--spotify:hover .embed-placeholder__icon {
    transform: scale(1.1) rotate(10deg);
}

/* ==========================================================================
   FOOTER SOCIAL ICONS ANIMATIONS
   ========================================================================== */
.footer-social a {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                box-shadow 0.3s ease !important;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1) !important;
}

/* Individual icon colors on hover */
.footer-social a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877F2, #4267B2) !important;
    border-color: #1877F2 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(var(--modern-coral-rgb), 0.4) !important;
}

.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF) !important;
    border-color: #DD2A7B !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(var(--modern-coral-rgb), 0.4) !important;
}

.footer-social a[href*="spotify"]:hover {
    background: linear-gradient(135deg, #1DB954, #1ED760) !important;
    border-color: #1DB954 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(var(--modern-yellow-rgb), 0.4) !important;
}

.footer-social a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000) !important;
    border-color: #FF0000 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(var(--modern-red-orange-rgb), 0.4) !important;
}

.footer-social a i {
    transition: transform 0.3s ease;
}

.footer-social a:hover i {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================================================
   ENHANCED BUTTON HOVER EFFECTS
   ========================================================================== */
.modern-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--modern-white-rgb), 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--modern-yellow-rgb), 0.4),
                0 0 20px rgba(var(--modern-yellow-rgb), 0.2);
}

.modern-btn--secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--modern-red-orange-rgb), 0.3);
}

.modern-btn:active {
    transform: translateY(-1px);
}

/* ==========================================================================
   CARD LIFT EFFECTS
   ========================================================================== */
.modern-cta__feature {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
}

.modern-cta__feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--modern-black-rgb), 0.3);
}

.modern-cta__feature .icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.modern-cta__feature:hover .icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--modern-accent-yellow);
}

/* Sponsor placeholder hover */
.modern-footer__sponsor-placeholder {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.modern-footer__sponsor-placeholder:hover {
    transform: scale(1.05);
    border-color: var(--modern-accent-red-orange);
    background: rgba(var(--modern-red-orange-rgb), 0.1);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR ANIMATIONS
   ========================================================================== */
@media (max-width: 768px) {
    .scroll-animate {
        transform: translateY(20px);
    }

    .scroll-animate--left,
    .scroll-animate--right {
        transform: translateY(20px);
    }

    .embed-placeholder {
        animation: none;
    }

    .modern-lineup__tba::after {
        animation-duration: 12s;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .scroll-animate--left,
    .scroll-animate--right,
    .scroll-animate--scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .embed-placeholder,
    .modern-lineup__tba::after,
    .modern-lineup__tba .icon,
    .modern-lineup__tba h3 {
        animation: none;
    }
}

/* ==========================================================================
   HERO STATS - Event Key Facts
   ========================================================================== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(var(--modern-bg-secondary-rgb), 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--modern-border-color);
    border-radius: 16px;
    flex-wrap: wrap;
}

.hero-stats__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--modern-text-primary);
}

.hero-stats__item i {
    font-size: 1.25rem;
    color: var(--modern-accent-yellow);
}

.hero-stats__number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
}

.hero-stats__label {
    font-size: 0.85rem;
    color: var(--modern-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stats__divider {
    width: 1px;
    height: 30px;
    background: var(--modern-border-color);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    .hero-stats__item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .hero-stats__number {
        font-size: 1.25rem;
    }

    .hero-stats__label {
        font-size: 0.7rem;
    }

    .hero-stats__divider {
        display: none;
    }
}

/* ==========================================================================
   HEADER INFO BADGE - Datum & Location
   ========================================================================== */
.header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--modern-text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(var(--modern-yellow-rgb), 0.1);
    border: 1px solid rgba(var(--modern-yellow-rgb), 0.2);
    border-radius: 20px;
    margin-right: 1rem;
}

.header-info__date,
.header-info__location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-info__date i,
.header-info__location i {
    color: var(--modern-accent-yellow);
    font-size: 0.7rem;
}

.header-info__divider {
    color: var(--modern-border-color);
}

@media (max-width: 1024px) {
    .header-info {
        display: none;
    }
}

/* ==========================================================================
   TICKET CARDS SECTION
   ========================================================================== */
.modern-tickets {
    background: linear-gradient(180deg, var(--modern-bg-secondary) 0%, var(--modern-bg-primary) 100%);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    background: var(--modern-bg-card);
    border: 1px solid var(--modern-border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-5px);
    border-color: var(--modern-accent-yellow);
    box-shadow: 0 20px 40px rgba(var(--modern-black-rgb), 0.3);
}

.ticket-card--highlight {
    border-color: var(--modern-accent-gold);
    background: linear-gradient(135deg, rgba(var(--modern-gold-alt-rgb), 0.1), var(--modern-bg-card));
}

.ticket-card--highlight:hover {
    border-color: var(--modern-accent-gold);
    box-shadow: 0 20px 40px rgba(var(--modern-gold-alt-rgb), 0.2);
}

.ticket-card__badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.ticket-card__badge--gold {
    background: linear-gradient(135deg, var(--modern-accent-gold), var(--modern-gold-dark));
}

.ticket-card__badge--earlybird {
    background: linear-gradient(135deg, var(--modern-accent-coral), var(--modern-accent-red-orange));
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.ticket-card--earlybird {
    border-color: var(--modern-accent-coral);
    background: linear-gradient(135deg, rgba(var(--modern-coral-rgb), 0.1), var(--modern-bg-card));
}

.ticket-card--earlybird:hover {
    border-color: var(--modern-accent-coral);
    box-shadow: 0 20px 40px rgba(var(--modern-coral-rgb), 0.2);
}

.ticket-card--earlybird .ticket-card__icon {
    color: var(--modern-accent-coral);
}

.ticket-card--earlybird .ticket-card__amount {
    color: var(--modern-accent-coral);
}

.ticket-card__limited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--modern-accent-coral);
    background: rgba(var(--modern-coral-rgb), 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    animation: pulse-limited 1.5s ease-in-out infinite;
}

@keyframes pulse-limited {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.ticket-card__icon {
    font-size: 2.5rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 1rem;
}

.ticket-card--highlight .ticket-card__icon {
    color: var(--modern-accent-gold);
}

.ticket-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--modern-text-primary);
    margin: 0 0 0.5rem 0;
}

.ticket-card__description {
    font-size: 0.9rem;
    color: var(--modern-text-secondary);
    margin: 0 0 1.5rem 0;
    min-height: 2.5rem;
}

.ticket-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.ticket-card__amount {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--modern-accent-yellow);
    line-height: 1;
}

.ticket-card--highlight .ticket-card__amount {
    color: var(--modern-accent-gold);
}

.ticket-card__currency {
    font-size: 1.25rem;
    color: var(--modern-text-secondary);
}

.ticket-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.ticket-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--modern-text-secondary);
    border-bottom: 1px solid var(--modern-border-color);
}

.ticket-card__features li:last-child {
    border-bottom: none;
}

.ticket-card__features li i {
    color: var(--modern-accent-yellow);
    font-size: 0.85rem;
}

.ticket-card__features li i.fa-minus {
    color: var(--modern-text-muted);
}

.modern-btn--gold {
    background: linear-gradient(135deg, var(--modern-accent-gold), var(--modern-gold-dark));
    color: var(--modern-bg-primary);
}

.modern-btn--gold:hover {
    box-shadow: 0 0 30px rgba(var(--modern-gold-alt-rgb), 0.4);
}

@media (max-width: 992px) {
    .ticket-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .ticket-card--highlight {
        order: -1;
    }
}

/* ==========================================================================
   NEWSLETTER SECTION
   ========================================================================== */
.modern-newsletter {
    padding: var(--section-padding) 2rem;
    background: linear-gradient(135deg, var(--modern-bg-tertiary), var(--modern-bg-secondary));
    position: relative;
    overflow: hidden;
}

.modern-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--modern-yellow-rgb), 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(var(--modern-red-orange-rgb), 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.modern-newsletter__container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.modern-newsletter__content {
    text-align: center;
}

.modern-newsletter__icon {
    font-size: 3rem;
    color: var(--modern-accent-yellow);
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modern-newsletter__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--modern-text-primary);
    margin: 0 0 1rem 0;
}

.modern-newsletter__text {
    font-size: 1.1rem;
    color: var(--modern-text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.7;
}

.modern-newsletter__form {
    width: 100%;
}

.modern-newsletter__input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modern-newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--modern-bg-card);
    border: 2px solid var(--modern-border-color);
    border-radius: 12px;
    color: var(--modern-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-newsletter__input:focus {
    outline: none;
    border-color: var(--modern-accent-yellow);
    box-shadow: 0 0 20px rgba(var(--modern-yellow-rgb), 0.2);
}

.modern-newsletter__input::placeholder {
    color: var(--modern-text-muted);
}

.modern-newsletter__privacy {
    font-size: 0.8rem;
    color: var(--modern-text-muted);
    margin: 0;
}

.modern-newsletter__privacy i {
    color: var(--modern-accent-yellow);
    margin-right: 0.5rem;
}

.modern-newsletter__privacy a {
    color: var(--modern-accent-yellow);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .modern-newsletter__input-group {
        flex-direction: column;
    }

    .modern-newsletter__input-group .modern-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   STICKY SOCIAL BAR
   ========================================================================== */
.sticky-social {
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.scrolled .sticky-social,
.sticky-social.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--modern-bg-card);
    border: 1px solid var(--modern-border-color);
    border-radius: 50%;
    color: var(--modern-text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sticky-social__link:hover {
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
    border-color: var(--modern-accent-yellow);
    transform: scale(1.1);
    box-shadow: var(--modern-glow-yellow);
}

@media (max-width: 768px) {
    .sticky-social {
        display: none;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--modern-accent-yellow);
    color: var(--modern-bg-primary);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(var(--modern-yellow-rgb), 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--modern-glow-yellow);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}
