/* ===================================
   IT Rent-Service Köln
   Modern Event & Messe Theme
   =================================== */

/* CSS Variables */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b7a;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #f4a261;
    --accent-dark: #e76f51;
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-section: #0d1117;
    --bg-section-alt: #111827;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --text-heading: #f9fafb;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --gradient-1: linear-gradient(135deg, #e63946, #f4a261);
    --gradient-2: linear-gradient(135deg, #457b9d, #e63946);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(230,57,70,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

/* Light Mode */
[data-theme="light"] {
    --primary: #d62839;
    --primary-dark: #b01525;
    --primary-light: #e63946;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #e76f51;
    --accent-dark: #d4533b;
    --bg-dark: #f5f7fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f2f5;
    --bg-section: #f5f7fa;
    --bg-section-alt: #edf0f4;
    --text: #374151;
    --text-muted: #6b7280;
    --text-heading: #111827;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 30px rgba(230,57,70,0.1);
}

[data-theme="light"] .navbar {
    background: rgba(255,255,255,0.85);
    border-bottom-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255,255,255,0.95);
}

[data-theme="light"] .nav-menu {
    background: rgba(255,255,255,0.98);
}

[data-theme="light"] .hero-bg {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230,57,70,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(69,123,157,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(244,162,97,0.05) 0%, transparent 50%),
        var(--bg-dark);
}

[data-theme="light"] .hero-overlay {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

[data-theme="light"] .nav-toggle span {
    background: var(--text-heading);
}

[data-theme="light"] .hero-badge {
    background: rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.2);
}

[data-theme="light"] .trust-item {
    color: rgba(0,0,0,0.35);
}

[data-theme="light"] .trust-item:hover {
    color: rgba(0,0,0,0.6);
}

[data-theme="light"] .lang-toggle {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .lang-dropdown {
    background: #fff;
    border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .lang-dropdown button:hover {
    background: rgba(0,0,0,0.04);
}

[data-theme="light"] .select-content {
    background: rgba(0,0,0,0.02);
}

[data-theme="light"] .select-content:hover {
    background: rgba(0,0,0,0.04);
}

[data-theme="light"] .product-select-card input:checked + .select-content {
    background: rgba(230,57,70,0.06);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(0,0,0,0.02);
    color: var(--text-heading);
}

[data-theme="light"] .form-group select option {
    background: #fff;
    color: var(--text-heading);
}

[data-theme="light"] .cookie-banner {
    background: rgba(255,255,255,0.95);
}

[data-theme="light"] .gradient-text {
    -webkit-text-fill-color: transparent;
}

/* Theme Toggle */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition);
    font-family: var(--font-body);
    padding: 0;
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(230,57,70,0.1);
}

.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: inline-block; }

[data-theme="light"] .theme-toggle .fa-sun { display: inline-block; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(20px);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cookie-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text);
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230,57,70,0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
    color: var(--text-heading);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    background: var(--gradient-1);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.btn-product {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn-product:hover {
    background: var(--primary);
    color: #fff;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-heading);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.logo-accent {
    color: var(--primary);
}

.logo-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 2px 8px;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-menu a {
    padding: 8px 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--text-heading);
    background: rgba(255,255,255,0.05);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===================================
   Language Switcher
   =================================== */
.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.lang-toggle:hover {
    border-color: var(--primary);
    color: var(--text);
}

.lang-current {
    font-weight: 600;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 160px;
    display: none;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
}

.lang-dropdown.open {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-family: var(--font-body);
    text-align: left;
}

.lang-dropdown button:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-heading);
}

.lang-flag {
    font-size: 1.1rem;
}

/* RTL Support */
[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-header {
    direction: rtl;
}

[dir="rtl"] .advantage-card,
[dir="rtl"] .product-card,
[dir="rtl"] .contact-card {
    text-align: right;
}

[dir="rtl"] .product-specs li,
[dir="rtl"] .model-features li {
    flex-direction: row-reverse;
}

[dir="rtl"] .calendar-card {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

/* ===================================
   Hero
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230,57,70,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(69,123,157,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(244,162,97,0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-koelsch {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.7;
    max-width: 600px;
    margin: -16px auto 24px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-koelsch span {
    display: block;
    font-size: 0.8rem;
    margin-top: 2px;
    opacity: 0.8;
}

/* Kölsch Quote */
.koelsch-quote {
    text-align: center;
    margin-top: 48px;
    padding: 24px;
    border-top: 1px solid var(--border);
}

.koelsch-quote p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.koelsch-quote span {
    display: block;
    font-size: 0.85rem;
    margin-top: 4px;
    opacity: 0.7;
    font-style: normal;
}

/* Footer Kölsch */
.footer-koelsch {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

/* ===================================
   Trust Bar
   =================================== */
.trust-bar {
    padding: 24px 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    transition: color var(--transition);
    white-space: nowrap;
}

.trust-item:hover {
    color: rgba(255,255,255,0.5);
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Product Filter
   =================================== */
.product-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ===================================
   Product Grid
   =================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.product-card.hidden {
    display: none;
}

.product-icon {
    width: 48px;
    height: 48px;
    background: rgba(230,57,70,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-specs {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 20px;
    text-align: center;
}

/* ===================================
   Advantages
   =================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.advantage-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   Service Models
   =================================== */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.model-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
}

.model-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.model-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.model-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.model-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.model-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.model-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.model-features li:last-child {
    border-bottom: none;
}

.model-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ===================================
   Calendar Section
   =================================== */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.calendar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    display: flex;
    gap: 20px;
}

.calendar-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.calendar-date {
    min-width: 60px;
    text-align: center;
    padding: 12px 8px;
    background: rgba(230,57,70,0.1);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calendar-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    font-weight: 600;
}

.calendar-date .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1;
}

.calendar-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.calendar-info .calendar-dates {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.calendar-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.calendar-card .calendar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
}

.calendar-card .calendar-cta-btn:hover {
    color: var(--accent);
}

.calendar-cta {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.calendar-cta p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
}

/* ===================================
   Events Section
   =================================== */
.events-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    min-height: 200px;
}

.events-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.events-loading i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.event-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.event-card .event-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.event-card .event-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.event-card .event-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.event-tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.event-tag.messe { background: rgba(230,57,70,0.15); color: var(--primary-light); }
.event-tag.festival { background: rgba(244,162,97,0.15); color: var(--accent); }
.event-tag.kultur { background: rgba(69,123,157,0.15); color: var(--secondary-light); }

.events-source {
    text-align: center;
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.events-source i {
    color: var(--primary);
}

/* ===================================
   Inquiry Wizard
   =================================== */
.inquiry-wizard {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-light);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    max-width: 120px;
    margin-bottom: 24px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wizard-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 24px;
    text-align: center;
}

/* Product Selection Grid */
.product-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.product-select-card {
    cursor: pointer;
}

.product-select-card input {
    display: none;
}

.select-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-align: center;
}

.select-content i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.select-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.product-select-card input:checked + .select-content {
    border-color: var(--primary);
    background: rgba(230,57,70,0.1);
}

.product-select-card input:checked + .select-content i {
    color: var(--primary);
}

.select-content:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.05);
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 24px;
}

.checkbox-label input {
    accent-color: var(--primary);
    margin-top: 3px;
}

/* Wizard Nav */
.wizard-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-message i {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 8px;
}

.success-contact a {
    color: var(--primary-light);
    font-weight: 600;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--border-hover);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(230,57,70,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-card a {
    color: var(--text);
}

.contact-card a:hover {
    color: var(--primary-light);
}

.contact-note {
    font-style: italic;
    font-size: 0.8rem !important;
    color: var(--text-muted);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 16px 0;
    line-height: 1.6;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-quick a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-contact-quick a:hover {
    color: var(--text);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    padding-bottom: 80px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-credit a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===================================
   WhatsApp Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-label {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
    pointer-events: none;
    white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: #fff;
}

/* ===================================
   Back to Top
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 36px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .advantages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,14,26,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number, .stat-plus {
        font-size: 2rem;
    }

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

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

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

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

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

    .inquiry-wizard {
        padding: 32px 20px;
    }

    .product-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-logos {
        gap: 16px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .section {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 28px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .product-select-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wizard-progress {
        gap: 0;
    }

    .progress-line {
        max-width: 40px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .navbar, .cookie-banner, .whatsapp-float, .back-to-top, .scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .section {
        padding: 20px 0;
    }
}

/* ===================================
   PARTY MODE - Kölle Alaaf!
   =================================== */

/* Party Toggle Button */
.party-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
    padding: 0;
    position: relative;
}

.party-toggle:hover {
    border-color: #ff00ff;
    background: rgba(255,0,255,0.15);
    transform: scale(1.15) rotate(15deg);
}

.party-toggle-icon {
    transition: transform 0.3s ease;
}

.party-toggle:hover .party-toggle-icon {
    transform: scale(1.3);
}

/* Party Mode Active State on button */
.party-active .party-toggle {
    animation: partyButtonPulse 0.5s ease infinite alternate;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255,0,255,0.5);
}

@keyframes partyButtonPulse {
    from { transform: scale(1) rotate(0deg); box-shadow: 0 0 10px #ff00ff; }
    to { transform: scale(1.2) rotate(10deg); box-shadow: 0 0 25px #ffff00; }
}

/* Disco Background Overlay */
.party-active::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,0,128,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,0,0.05) 0%, transparent 50%);
    animation: partyBgShift 3s ease-in-out infinite;
}

@keyframes partyBgShift {
    0%, 100% { opacity: 1; filter: hue-rotate(0deg); }
    50% { opacity: 0.7; filter: hue-rotate(180deg); }
}

/* Rainbow border on all cards */
.party-active .product-card,
.party-active .vorteil-card,
.party-active .contact-card,
.party-active .messe-item,
.party-active .event-item {
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: partyCardRainbow 2s linear infinite;
}

@keyframes partyCardRainbow {
    0% { border-color: #ff0000; box-shadow: 0 0 15px rgba(255,0,0,0.3); }
    16% { border-color: #ff8800; box-shadow: 0 0 15px rgba(255,136,0,0.3); }
    33% { border-color: #ffff00; box-shadow: 0 0 15px rgba(255,255,0,0.3); }
    50% { border-color: #00ff00; box-shadow: 0 0 15px rgba(0,255,0,0.3); }
    66% { border-color: #0088ff; box-shadow: 0 0 15px rgba(0,136,255,0.3); }
    83% { border-color: #ff00ff; box-shadow: 0 0 15px rgba(255,0,255,0.3); }
    100% { border-color: #ff0000; box-shadow: 0 0 15px rgba(255,0,0,0.3); }
}

/* Headings go rainbow */
.party-active h1,
.party-active h2,
.party-active h3 {
    background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #0088ff, #ff00ff, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: partyTextRainbow 2s linear infinite;
}

@keyframes partyTextRainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Navbar disco glow */
.party-active .navbar {
    box-shadow: 0 2px 30px rgba(255,0,255,0.3), 0 2px 30px rgba(0,255,255,0.3);
    animation: partyNavGlow 1.5s ease-in-out infinite alternate;
}

@keyframes partyNavGlow {
    0% { box-shadow: 0 2px 30px rgba(255,0,255,0.4), 0 2px 30px rgba(0,255,255,0.2); }
    100% { box-shadow: 0 2px 30px rgba(0,255,255,0.4), 0 2px 30px rgba(255,255,0,0.3); }
}

/* Buttons go wild */
.party-active .btn-primary,
.party-active .btn-nav {
    animation: partyBtnDisco 1s ease infinite;
    background: linear-gradient(45deg, #ff0055, #ff8800, #ffff00, #00ff88, #0088ff, #ff00ff) !important;
    background-size: 400% 400% !important;
    border: none !important;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@keyframes partyBtnDisco {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Disco ball cursor */
.party-active,
.party-active * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='20' font-size='20'%3E🪩%3C/text%3E%3C/svg%3E") 12 12, auto !important;
}

.party-active a,
.party-active button {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='20' font-size='20'%3E🎉%3C/text%3E%3C/svg%3E") 12 12, pointer !important;
}

/* Confetti / Kamelle piece */
.kamelle {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    font-size: 1.5rem;
    animation: kamelleFall linear forwards;
    top: -40px;
}

@keyframes kamelleFall {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg) scale(0.5); opacity: 0; }
}

/* Disco spotlight overlay */
.disco-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.disco-spotlight .spot {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: spotMove 4s ease-in-out infinite;
}

.disco-spotlight .spot:nth-child(1) {
    background: #ff0055;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.disco-spotlight .spot:nth-child(2) {
    background: #00ff88;
    top: 60%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.disco-spotlight .spot:nth-child(3) {
    background: #ffff00;
    bottom: 10%;
    left: 40%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.disco-spotlight .spot:nth-child(4) {
    background: #0088ff;
    top: 30%;
    right: 30%;
    animation-delay: 0.5s;
    animation-duration: 4.5s;
}

@keyframes spotMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 50px) scale(1.3); }
    50% { transform: translate(-50px, 100px) scale(0.8); }
    75% { transform: translate(80px, -60px) scale(1.1); }
}

/* Party banner */
.party-banner {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(90deg, #ff0055, #ff8800, #ffff00, #00ff88, #0088ff, #ff00ff);
    background-size: 300% 100%;
    animation: partyBannerScroll 2s linear infinite;
    padding: 8px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

@keyframes partyBannerScroll {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Footer goes crazy */
.party-active .footer {
    background: linear-gradient(135deg, #1a0033, #001a33, #003300) !important;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #ff0055, #ffff00, #00ff88, #0088ff, #ff00ff) 1;
}

/* Logo goes neon */
.party-active .logo-accent {
    color: #ff00ff !important;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff;
    animation: neonFlicker 1.5s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff; }
    50% { text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff, 0 0 30px #00ffff; }
}

/* Shake effect on hero stats */
.party-active .hero-stats .stat-item {
    animation: partyBounce 0.6s ease infinite alternate;
}

.party-active .hero-stats .stat-item:nth-child(2) { animation-delay: 0.15s; }
.party-active .hero-stats .stat-item:nth-child(3) { animation-delay: 0.3s; }
.party-active .hero-stats .stat-item:nth-child(4) { animation-delay: 0.45s; }

@keyframes partyBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

/* Kölsch ticker goes wild */
.party-active .messe-ticker {
    animation-duration: 8s !important;
}

/* WhatsApp button pulses rainbow */
.party-active .whatsapp-btn {
    animation: partyWhatsapp 1s ease infinite;
    box-shadow: 0 0 20px rgba(255,0,255,0.5);
}

@keyframes partyWhatsapp {
    0%, 100% { box-shadow: 0 0 20px rgba(255,0,255,0.5); }
    50% { box-shadow: 0 0 30px rgba(0,255,255,0.6); }
}

/* Game Toggle Button */
.game-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
    padding: 0;
    position: relative;
}

.game-toggle:hover {
    border-color: var(--primary);
    background: rgba(230,57,70,0.15);
    transform: scale(1.15);
}

.game-toggle-icon {
    transition: transform 0.3s ease;
}

.game-toggle:hover .game-toggle-icon {
    transform: scale(1.3) rotate(-10deg);
}

/* Game Modal Overlay */
.game-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: gameModalFadeIn 0.3s ease;
}

@keyframes gameModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.game-modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    animation: gameModalSlideIn 0.3s ease;
}

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

.game-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all var(--transition);
    z-index: 10;
}

.game-modal-close:hover {
    background: rgba(230,57,70,0.2);
    color: var(--primary);
    border-color: var(--primary);
}

.game-modal h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.game-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.game-menu-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
}

.game-menu-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.game-menu-card .game-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.game-menu-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    font-size: 1.1rem;
}

.game-menu-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.game-menu-card .game-highscore {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.game-menu-card .btn-game {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.game-menu-card .btn-game:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

/* Game Canvas Container */
.game-canvas-container {
    position: fixed;
    inset: 0;
    z-index: 100001;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-canvas-container canvas {
    max-width: 100%;
    max-height: 100%;
}

.game-canvas-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100002;
    background: rgba(0,0,0,0.7);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.game-canvas-close:hover {
    background: rgba(230,57,70,0.8);
    border-color: #e63946;
}

@media (max-width: 768px) {
    .game-menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .game-modal {
        padding: 1.5rem;
        max-height: 95vh;
    }

    .game-canvas-container {
        touch-action: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    .game-canvas-container canvas {
        width: 100vw !important;
        height: 100vh !important;
        object-fit: contain;
    }

    .game-canvas-close {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
        top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .game-menu-grid {
        grid-template-columns: 1fr;
    }

    .game-modal {
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .game-modal h2 {
        font-size: 1.3rem;
    }

    .game-menu-card {
        padding: 1rem;
    }

    .game-menu-card .game-emoji {
        font-size: 2.2rem;
    }

    .game-canvas-close {
        width: 48px;
        height: 48px;
    }
}

/* Fullscreen game on mobile - prevent scroll/bounce */
.game-canvas-container {
    overscroll-behavior: none;
    overflow: hidden;
}

#game-canvas {
    display: block;
    touch-action: none;
}
