/* ============================================
   Culture Rave Festival - Ultra Premium Design
   Glassmorphism Design System
   ============================================ */

:root {
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(24px);
    --glass-blur-strong: blur(32px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.18);

    /* Sky Gradient Colors */
    --sky-top: #4A90E2;
    --sky-mid: #67B8E3;
    --sky-bottom: #A8D8F0;

    /* White Section */
    --white-bg: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;

    /* Accent */
    --accent-primary: #FF3366;
    --accent-glow: rgba(255, 51, 102, 0.3);

    /* Spacing */
    --section-padding: clamp(3rem, 6vw, 5rem);
    --container-max: 1400px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* ===== HERO SIZING SYSTEM (Clean Control) ===== */
    /* Desktop Defaults */
    --hero-header-width: clamp(220px, 38vw, 520px);
    --hero-building-width: clamp(350px, 65vw, 950px);
    --hero-header-offset: 4.5rem;
    --hero-building-offset: -6rem;

    /* Mobile 768px */
    --hero-header-width-tablet: clamp(320px, 78vw, 550px);
    --hero-building-width-tablet: clamp(350px, 160vw, 1100px);
    --hero-header-offset-tablet: 1.5rem;
    --hero-building-offset-tablet: -12rem;

    /* Mobile 480px */
    --hero-header-width-mobile: clamp(300px, 82vw, 480px);
    --hero-building-width-mobile: clamp(350px, 180vw, 1000px);
    --hero-header-offset-mobile: -2rem;
    --hero-building-offset-mobile: -13rem;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--sky-mid);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Signature Details - Noise Overlay
   ============================================ */

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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");
}

/* ============================================
   Fixed Sky Background
   ============================================ */

.sky-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

/* Base Layer: Background.png */
.sky-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('Grafiken/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay Layer: Pattern.png (durchgehend über Hero) */
.sky-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('Grafiken/pattern.png');
    background-size: 120px 120px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.15;
    mix-blend-mode: overlay;
    z-index: 1;
}

/* Signature Detail - Light Rays */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% -20%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 60%
    );
    animation: lightPulse 8s ease-in-out infinite;
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 1rem 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Social Media Icons in Nav (Splash-Style) */
.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1.5rem;
}

.nav-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-social .social-icon:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-social .social-icon svg {
    width: 20px;
    height: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Signature Detail - Floating Badge */
.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #d4ff00 0%, #c0eb00 100%);
    backdrop-filter: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 255, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 255, 0, 0.6), 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e0ff20 0%, #ccf500 100%);
}

.badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.badge-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.floating-badge:hover .badge-icon {
    transform: translateX(4px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section - Premium Cloud World
   ============================================ */

.hero {
    position: relative;
    min-height: 85vh;
    max-height: 90vh;
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    padding: 6rem 2rem 0;
}

/* Cloud Layer - More Present */
.clouds-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cloud {
    position: absolute;
    opacity: 1;
    pointer-events: none;
    will-change: transform;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Cloud Positioning - Extending Further Into Screen */
.cloud-1 {
    top: 8%;
    left: 5%;
    width: clamp(180px, 22vw, 320px);
}

.cloud-2 {
    top: 15%;
    right: 8%;
    width: clamp(200px, 25vw, 380px);
}

.cloud-3 {
    top: 35%;
    left: -5%;
    width: clamp(220px, 28vw, 400px);
}

.cloud-4 {
    top: 45%;
    right: -3%;
    width: clamp(190px, 24vw, 350px);
}

.cloud-5 {
    top: 60%;
    left: 15%;
    width: clamp(170px, 20vw, 300px);
}

.cloud-6 {
    top: 68%;
    right: 18%;
    width: clamp(200px, 26vw, 360px);
}

/* ============================================
   Music Particles Effect
   ============================================ */

.music-particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5; /* Behind Kongresshaus (z-index: 10) but above clouds (z-index: 3) */
    overflow: hidden;
}

.music-note {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0;
    filter: drop-shadow(0 0 8px currentColor);
    will-change: transform, opacity;
}

.music-note svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Color variants - Primary: Tickets Green (70%) */
.music-note.color-primary {
    color: #d4ff00;
}

.music-note.color-primary-light {
    color: #e0ff40;
}

.music-note.color-white {
    color: rgba(255, 255, 255, 0.8);
}

.music-note.color-blue {
    color: rgba(147, 197, 253, 0.7);
}

.music-note.color-purple {
    color: rgba(196, 181, 253, 0.6);
}

/* Animation Keyframes */
@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-400px) translateX(var(--drift-x)) rotate(var(--rotation)) scale(1.2);
        opacity: 0;
        filter: blur(4px);
    }
}

/* Hero Sponsor Logos */
.hero-sponsors {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 25;
    pointer-events: none;
}

.hero-sponsor {
    pointer-events: auto;
}

.sponsor-logo {
    width: 100px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-sponsors {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .sponsor-logo {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .hero-sponsors {
        padding: 0 1rem;
    }

    .sponsor-logo {
        width: 50px;
    }
}

/* Hero Content - New Hierarchy (Kompakter, Desktop positioning) */
.hero-content {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    z-index: 10;
    flex-grow: 1;
}

/* 1. Gruppe 20 Header - TOP (schwebt über Kongresshaus) */
.hero-header {
    position: relative;
    z-index: 30;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0 !important;
    transform: translateY(var(--hero-header-offset));
}

.gruppe-img {
    /* Größer für bessere Sichtbarkeit */
    width: var(--hero-header-width);
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.25));
    opacity: 0.95;
    will-change: transform;
    transform: translateZ(0);
}

/* 2. Kongresshaus 2 - BOTTOM (Berührt weiße Section, nah bei Gruppe 20) */
.hero-building {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    margin-bottom: var(--hero-building-offset);
}

.building-img {
    width: var(--hero-building-width);
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    filter: none;
    opacity: 0.98;
    will-change: transform;
    transform: translateZ(0);
    mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(0, 0, 0, 0) 95%
    );
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(0, 0, 0, 0) 95%
    );
}

/* Hero Ticket Button */
.hero-ticket-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(212, 255, 0, 0.95);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(212, 255, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
}

.hero-ticket-btn:hover {
    background: #d4ff00;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 255, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-ticket-btn svg {
    transition: transform 0.3s ease;
}

.hero-ticket-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-ticket-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .hero-ticket-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-ticket-btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    z-index: 50;
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ============================================
   White Section - Clean Contrast
   ============================================ */

.section-white {
    background: var(--white-bg);
    padding: var(--section-padding) 2rem;
    position: relative;
    z-index: 2;
}

.white-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky-mid);
    margin-bottom: 1rem;
}

.section-title-dark {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-subtitle-dark {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(26, 26, 26, 0.6);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-glass-card {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(168, 216, 240, 0.05));
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--sky-mid);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-glass-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-detail {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.6);
}

/* ============================================
   Blue Sections - Glassmorphism Returns
   ============================================ */

.section-blue {
    position: relative;
    padding: var(--section-padding) 2rem;
    z-index: 2;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.container--narrow {
    max-width: 900px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Glass Cards - Premium Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--glass-bg-strong);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-5px);
}

.glass-card--large {
    padding: 4rem 3rem;
}

/* Line-Up Section */
.lineup-mystery {
    text-align: center;
}

.mystery-text {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mystery-item {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.3;
    letter-spacing: 0.05em;
}

.lineup-teaser {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.genre-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pill {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Glass Button - Premium */
.glass-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shadow);
}

.glass-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-button--primary {
    background: linear-gradient(135deg, var(--glass-bg-strong), rgba(255, 255, 255, 0.15));
}

.glass-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.glass-button:hover svg {
    transform: translateX(4px);
}

.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

/* Tickets Grid */
.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card--ticket {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-card--featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--accent-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px var(--accent-glow);
    overflow: hidden;
}

.ticket-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-price {
    margin: 1rem 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.ticket-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.ticket-features li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-status {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: auto;
}

/* Newsletter Section */
.glass-card--newsletter {
    text-align: center;
    padding: 3.5rem 3rem;
}

.newsletter-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.glass-input-wrapper {
    flex: 1;
    min-width: 250px;
}

.glass-input-wrapper input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.glass-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.glass-input-wrapper input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

/* Partner Section */
.glass-card--partner {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logos {
    max-width: 600px;
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-group h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-group a:hover {
    color: var(--text-light);
    transform: translateX(3px);
}

.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        gap: 1.5rem;
    }

    .cloud-1 { left: -10%; width: 200px; }
    .cloud-2 { right: -8%; width: 220px; }
    .cloud-3 { left: -12%; width: 240px; }
    .cloud-4 { right: -10%; width: 210px; }
    .cloud-5 { left: 10%; width: 180px; }
    .cloud-6 { right: 12%; width: 200px; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(2rem, 5vw, 3.5rem);
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(74, 144, 226, 0.95) 0%,
            rgba(103, 184, 227, 0.92) 50%,
            rgba(168, 216, 240, 0.90) 100%
        );
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 10%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: url('Grafiken/cloud^.png') no-repeat center;
        background-size: contain;
        opacity: 0.1;
        animation: cloudFloat1 20s ease-in-out infinite;
    }

    .nav-menu::after {
        content: '';
        position: absolute;
        bottom: 15%;
        right: -5%;
        width: 180px;
        height: 180px;
        background: url('Grafiken/cloud2.png') no-repeat center;
        background-size: contain;
        opacity: 0.12;
        animation: cloudFloat2 18s ease-in-out infinite;
    }

    @keyframes cloudFloat1 {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(20px, -15px); }
    }

    @keyframes cloudFloat2 {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-15px, 20px); }
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-menu .nav-link {
        font-size: 2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        padding: 1rem 2.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
        transition: left 0.6s ease;
    }

    .nav-menu .nav-link:active::before {
        left: 100%;
    }

    .nav-menu .nav-link:active {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(0.97);
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 70vh;
        max-height: 75vh;
        height: 70vh;
        padding: 4rem 1.5rem 0;
    }

    .hero-content {
        gap: 0.5rem;
    }

    /* RESET: Clean sizing with CSS variables */
    .hero-header {
        margin-top: 0;
        transform: translateY(var(--hero-header-offset-tablet));
    }

    .scroll-indicator {
        display: none;
    }

    .gruppe-img {
        width: var(--hero-header-width-tablet);
        max-width: 100vw;
    }

    .building-img {
        width: var(--hero-building-width-tablet);
        max-width: none;
    }

    .hero-building {
        margin-bottom: var(--hero-building-offset-tablet);
        transform: translateY(-9rem);
    }

    .section-white {
        padding-top: 0;
    }

    .cloud-1, .cloud-2, .cloud-3,
    .cloud-4, .cloud-5, .cloud-6 {
        width: 140px;
    }

    .mystery-text {
        gap: 1rem;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .glass-card--featured {
        transform: scale(1);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .glass-input-wrapper {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Lineup Cards Mobile */
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lineup-card {
        height: 350px;
    }

    .lineup-card-content {
        padding: 1.5rem;
    }

    .lineup-card-arrow {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 28px;
        height: 28px;
    }

    .artist-name {
        font-size: 1.5rem;
    }

    /* News Cards Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        height: auto;
        min-height: 480px;
    }

    .news-card-image {
        height: 200px;
    }

    .news-card-content {
        padding: 1.5rem;
    }

    .news-title {
        font-size: 1.5rem;
    }

    /* Lineup Names List Mobile */
    .lineup-names-list {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .artist-names-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Gallery Cards Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .gallery-card {
        height: 320px;
        /* Less rotation on mobile for better readability */
        transform: rotate(calc(var(--rotation, 0deg) * 0.5)) !important;
    }

    .gallery-card:hover {
        transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
    }

    .gallery-card-badge {
        bottom: 1.5rem;
    }

    /* Location Section Mobile */
    .location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-card {
        padding: 2rem 1.5rem;
    }

    /* Event Map Mobile */
    .event-map {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        padding: 2rem 1rem;
        min-height: auto;
        gap: 1rem;
    }

    .map-stage {
        grid-column: 1;
        grid-row: 1;
    }

    .map-food {
        grid-column: 1;
        grid-row: 2;
    }

    .map-crowd {
        grid-column: 1;
        grid-row: 3;
    }

    .map-vip {
        grid-column: 1;
        grid-row: 4;
    }

    .map-bottom-area {
        grid-column: 1;
        grid-row: 5;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .map-area {
        padding: 1.25rem;
    }

    .map-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .map-icon-wrapper svg {
        width: 22px;
        height: 22px;
    }

    .map-label {
        font-size: 0.85rem;
    }

    .vip-header {
        flex-direction: column;
        gap: 0.25rem;
    }

    .vip-tables {
        grid-template-columns: 1fr;
    }

    .map-tooltip {
        white-space: normal;
        max-width: 200px;
        text-align: center;
    }

    /* CTA Banner Mobile */
    .cta-banner {
        min-height: 400px;
        margin: 4rem 0;
    }

    .cta-banner-content {
        padding: 3rem 1.5rem;
    }

    .cta-banner-title {
        font-size: 3rem;
    }

    .cta-banner-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-banner-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Aftermovie Mobile */
    .aftermovie-section {
        padding: 4rem 0;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button svg {
        width: 32px;
        height: 32px;
    }

    .play-text {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .floating-badge {
        display: none !important;
    }

    .nav-social {
        display: none !important;
    }

    .nav-toggle {
        position: relative;
        z-index: 1001;
    }

    .hero {
        height: 65vh;
        padding: 3rem 1rem 0;
    }

    /* RESET: Clean sizing with CSS variables */
    .gruppe-img {
        width: var(--hero-header-width-mobile);
        max-width: 100vw;
    }

    .hero-building {
        margin-bottom: var(--hero-building-offset-mobile);
        transform: translateY(-10rem);
    }

    .hero-header {
        transform: translateY(var(--hero-header-offset-mobile));
    }

    .section-white {
        padding-top: 6rem;
    }

    .building-img {
        width: var(--hero-building-width-mobile);
        max-width: none;
    }

    .section-white,
    .section-blue {
        padding: 3rem 1.5rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .glass-card--large {
        padding: 2.5rem 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cloud-deco {
        width: 60px;
        height: 60px;
        top: -15px;
        right: -10px;
    }

    .deco-cloud-1, .deco-cloud-2, .deco-cloud-3, .deco-cloud-4 {
        opacity: 0.08;
    }
}

/* ============================================
   Media Partner Section
   ============================================ */

.media-partner-section {
    padding: 2rem 0;
    position: relative;
}

.media-partner-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease-out;
}

.media-partner-content {
    max-width: 600px;
    margin: 0 auto;
}

.partner-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(212, 255, 0, 1);
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.1), rgba(192, 235, 0, 0.15));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 255, 0, 0.3);
    margin-bottom: 1.5rem;
}

.partner-logo-wrapper {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.media-partner-card:hover .partner-logo {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(212, 255, 0, 0.3));
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #d4ff00 0%, #c0eb00 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.partner-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 1rem 0 2rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 255, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.2);
}

.partner-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.partner-link:hover svg {
    transform: translate(3px, -3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .media-partner-section {
        padding: 1.5rem 0;
    }

    .media-partner-card {
        padding: 1.5rem 1rem;
    }

    .partner-name {
        font-size: 1.25rem;
    }
}

/* ============================================
   Line-Up Section
   ============================================ */

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lineup-card {
    position: relative;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.lineup-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.lineup-card:hover .lineup-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.lineup-card:hover .lineup-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.lineup-card:hover .lineup-card-image img {
    transform: scale(1.05);
}

.lineup-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lineup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lineup-card-image--placeholder {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.lineup-card-image--tba {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon,
.tba-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.lineup-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.lineup-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.lineup-card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.artist-name {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tba-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(212, 255, 0, 1);
    background: rgba(212, 255, 0, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    border: 1px solid rgba(212, 255, 0, 0.3);
    text-shadow: none;
    vertical-align: middle;
}

.artist-name.tba {
    opacity: 0.5;
    font-style: italic;
}

.artist-genre {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Headliner Card Styling */
.lineup-card--headliner {
    grid-column: span 2;
    height: 450px;
}

.lineup-card--headliner .artist-name {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.headliner-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    background: linear-gradient(135deg, #d4ff00 0%, #c0eb00 100%);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .lineup-card--headliner {
        grid-column: span 1;
        height: 400px;
    }
}

.lineup-card--tba {
    opacity: 0.6;
}

/* Full Artist Names List (Splash-Style) */
.lineup-names-list {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.artist-names-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================
   Gallery Section (Pitsong-Style with Tilted Images)
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.gallery-card {
    position: relative;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 380px;
    transform: rotate(var(--rotation, 0deg));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-card:hover .gallery-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-card-badge {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card-image--placeholder {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.6) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.gallery-card-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-card-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   Location/Venue Section
   ============================================ */

.location-content {
    margin-top: 3rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    color: white;
    margin-bottom: 0.5rem;
}

.location-icon svg {
    width: 30px;
    height: 30px;
}

.location-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.location-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.location-card-text strong {
    color: white;
    font-weight: 600;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.location-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(3px);
}

.location-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.location-link:hover svg {
    transform: translateX(3px);
}

/* ============================================
   Interactive Event Map - Apple Maps Style
   ============================================ */

.event-map-container {
    margin-top: 3rem;
}

.map-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* SVG Map Canvas */
.event-map-canvas {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(
        to bottom,
        rgba(17, 24, 39, 0.95) 0%,
        rgba(31, 41, 55, 0.9) 50%,
        rgba(17, 24, 39, 0.95) 100%
    );
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(147, 51, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.venue-map-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Map Ground Base */
.map-ground {
    transition: all 0.4s ease;
}

/* Map Zone Styling */
.map-zone {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.map-zone:hover {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.map-zone rect,
.map-zone ellipse,
.map-zone circle {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    transition: all 0.4s ease;
}

.map-zone:hover rect,
.map-zone:hover ellipse,
.map-zone:hover circle {
    stroke: rgba(255, 255, 255, 0.5);
    stroke-width: 3;
}

/* Building - Kongresshaus */
.map-building rect {
    fill: rgba(147, 51, 234, 0.3);
}

.map-building:hover rect {
    fill: rgba(147, 51, 234, 0.5);
}

/* Stage Area */
.map-stage-area rect {
    fill: rgba(88, 28, 135, 0.4);
}

.map-stage-area:hover rect {
    fill: rgba(88, 28, 135, 0.6);
}

/* Crowd Area */
.map-crowd-area ellipse {
    fill: rgba(59, 130, 246, 0.15);
}

.map-crowd-area:hover ellipse {
    fill: rgba(59, 130, 246, 0.25);
}

/* VIP Area */
.map-vip-area rect {
    fill: rgba(212, 255, 0, 0.12);
    stroke: rgba(212, 255, 0, 0.3);
}

.map-vip-area:hover rect {
    fill: rgba(212, 255, 0, 0.2);
    stroke: rgba(212, 255, 0, 0.5);
}

/* Food Area */
.map-food-area rect {
    fill: rgba(147, 51, 234, 0.2);
}

.map-food-area:hover rect {
    fill: rgba(147, 51, 234, 0.35);
}

/* Paths Between Zones */
.map-path {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 60;
    fill: none;
    pointer-events: none;
    transition: stroke 0.4s ease;
}

/* Map Labels */
.map-label-main {
    fill: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
}

.map-label {
    fill: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.map-label-small {
    fill: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
}

.map-label-vip {
    fill: rgba(212, 255, 0, 1);
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    pointer-events: none;
}

.map-label-tiny {
    fill: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
}

/* Icon Circles */
.stage-icon,
.food-icon,
.vip-marker {
    transition: all 0.4s ease;
}

/* VIP Items */
.vip-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.vip-item:hover {
    filter: brightness(1.3);
}

/* Bar Areas */
.map-bar-area rect {
    fill: rgba(59, 130, 246, 0.25);
    transition: all 0.4s ease;
}

.map-bar-area:hover rect {
    fill: rgba(59, 130, 246, 0.4);
}

/* Entrance Area */
.map-entrance-area rect {
    fill: rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
}

.map-entrance-area:hover rect {
    fill: rgba(255, 255, 255, 0.2);
}

/* Pulse Marker Animation */
.pulse-marker {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(212, 255, 0, 0.8));
    }
    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 12px rgba(212, 255, 0, 1));
    }
}

/* Info Markers with Pulse Animation */
.info-marker circle {
    fill: rgba(212, 255, 0, 0.8);
    stroke: rgba(212, 255, 0, 1);
    stroke-width: 2;
    animation: markerPulse 2s ease-in-out infinite;
}

.info-marker text {
    fill: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
}

@keyframes markerPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Crowd Dots Animation */
.crowd-dot {
    fill: rgba(255, 255, 255, 0.4);
    animation: crowdDotPulse 3s ease-in-out infinite;
}

.crowd-dot:nth-child(2) { animation-delay: 0.3s; }
.crowd-dot:nth-child(3) { animation-delay: 0.6s; }
.crowd-dot:nth-child(4) { animation-delay: 0.9s; }
.crowd-dot:nth-child(5) { animation-delay: 1.2s; }
.crowd-dot:nth-child(6) { animation-delay: 1.5s; }
.crowd-dot:nth-child(7) { animation-delay: 1.8s; }
.crowd-dot:nth-child(8) { animation-delay: 2.1s; }
.crowd-dot:nth-child(9) { animation-delay: 2.4s; }
.crowd-dot:nth-child(10) { animation-delay: 2.7s; }

@keyframes crowdDotPulse {
    0%, 100% {
        opacity: 0.3;
        r: 4;
    }
    50% {
        opacity: 0.7;
        r: 5;
    }
}

/* Shadow Filters for Depth */
.map-shadow {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.map-shadow-soft {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Map Legend */
.map-legend {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-map-canvas {
        padding: 1rem;
        border-radius: 16px;
    }

    .venue-map-svg {
        min-height: 500px;
    }

    .map-label-main {
        font-size: 18px;
    }

    .map-label {
        font-size: 13px;
    }

    .map-label-small {
        font-size: 10px;
    }

    .map-path {
        stroke-width: 40;
    }
}

@media (max-width: 480px) {
    .event-map-canvas {
        padding: 0.75rem;
    }

    .venue-map-svg {
        min-height: 400px;
    }

    .map-label-main {
        font-size: 16px;
    }

    .map-label {
        font-size: 11px;
    }

    .map-label-small {
        font-size: 9px;
    }
}

/* ============================================
   Aftermovie Section (Lazy Loading)
   ============================================ */

.aftermovie-section {
    padding: 6rem 0;
}

.aftermovie-container {
    margin-top: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(147, 51, 234, 0.3);
    background: #000;
    aspect-ratio: 16 / 9;
}

.aftermovie-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.85) 0%,
        rgba(59, 130, 246, 0.75) 50%,
        rgba(147, 51, 234, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.video-play-overlay:hover {
    background: linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.9) 0%,
        rgba(59, 130, 246, 0.8) 50%,
        rgba(147, 51, 234, 0.9) 100%
    );
}

.video-play-overlay:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(212, 255, 0, 0.5);
}

.play-button {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4ff00 0%, #c0eb00 100%);
    border-radius: 50%;
    color: #1a1a1a;
    box-shadow: 0 10px 40px rgba(212, 255, 0, 0.4);
    transition: all 0.4s ease;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(212, 255, 0, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(212, 255, 0, 0.6); }
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.play-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-wrapper.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   CTA Banner (Splash-Style)
   ============================================ */

.cta-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 6rem 0;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(88, 28, 135, 0.8) 0%,
        rgba(59, 130, 246, 0.7) 50%,
        rgba(147, 51, 234, 0.8) 100%
    );
    mix-blend-mode: multiply;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-banner-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin: 0 0 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.cta-banner-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #d4ff00 0%, #c0eb00 100%);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(212, 255, 0, 0.5), 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-banner-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 255, 0, 0.7), 0 20px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #e0ff20 0%, #ccf500 100%);
}

.cta-banner-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-banner-button:hover svg {
    transform: translateX(5px);
}

/* ============================================
   News Section
   ============================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    position: relative;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 520px;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.news-card:hover .news-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card:hover .news-link {
    opacity: 1;
    transform: translateY(0);
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-image--placeholder {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-placeholder-icon {
    width: 60px;
    height: 60px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.news-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.news-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-title {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0.9;
    transform: translateY(5px);
    align-self: flex-start;
}

.news-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(0) translateX(3px);
}

.news-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.news-link:hover svg {
    transform: translateX(3px);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Ticket Button */
.ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ticket-button:hover {
    transform: translateY(-2px);
}

/* ============================================
   Cloud Decoration on Cards
   ============================================ */

.cloud-deco {
    position: absolute;
    top: -20px;
    right: -15px;
    width: 80px;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.4;
}

.card-cloud {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatCloud 4s ease-in-out infinite;
}

@keyframes floatCloud {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* ============================================
   Decorative Clouds in Layout
   ============================================ */

.decorative-clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.deco-cloud {
    position: absolute;
    opacity: 0.15;
    will-change: transform;
}

.deco-cloud-1 {
    top: 20%;
    left: 5%;
    width: 120px;
    animation: driftCloud1 25s ease-in-out infinite;
}

.deco-cloud-2 {
    top: 50%;
    right: 10%;
    width: 100px;
    animation: driftCloud2 30s ease-in-out infinite;
}

.deco-cloud-3 {
    bottom: 30%;
    left: 15%;
    width: 90px;
    animation: driftCloud3 28s ease-in-out infinite;
}

.deco-cloud-4 {
    bottom: 15%;
    right: 20%;
    width: 110px;
    animation: driftCloud4 32s ease-in-out infinite;
}

@keyframes driftCloud1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(3deg); }
}

@keyframes driftCloud2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 15px) rotate(-2deg); }
}

@keyframes driftCloud3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 25px) rotate(2deg); }
}

@keyframes driftCloud4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -15px) rotate(-3deg); }
}

/* ============================================
   Hero Overflow Fix (Clean Kongresshaus Cut)
   ============================================ */

.hero {
    overflow: hidden;
    position: relative;
}

/* ============================================
   Animations & Transitions
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
