:root {
    --primary: #1a0a0f;
    --secondary: #d4af37;
    --accent: #ff6b6b;
    --dark: #0d0506;
    --light: #f5f1e8;
    --mid: #8b7355;
    --gradient: linear-gradient(135deg, #1a0a0f 0%, #3d1f28 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 5, 6, 0.98);
    border-top: 2px solid var(--secondary);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    color: var(--light);
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: rgba(13, 5, 6, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo-icon {
    font-size: 1.8rem;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

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

.nav-link:hover {
    color: var(--secondary);
}

.login-btn {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* User Profile - VERBESSERT mit einheitlichen Avatar-Größen */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.user-profile img,
.user-profile .initial {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.user-profile .initial {
    text-transform: uppercase;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    background: rgba(13, 5, 6, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 200px;
    display: none;
    z-index: 1001;
}

.user-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.user-dropdown a,
.user-dropdown button {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--light);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section - VERBESSERT mit Hintergrundanimation */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    overflow: hidden;
}

/* Animierter Hintergrund */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero-main {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    animation: fadeIn 1s ease-out 0.4s both;
}

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

.hero-description {
    font-size: 1.2rem;
    color: rgba(245, 241, 232, 0.8);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.cta-button {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out 0.8s both;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

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

.hero-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.decor-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.decor-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
    top: 20%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--light);
}

/* Filter Section */
.filter-section {
    background: rgba(13, 5, 6, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-tab.active {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

/* Filme Grid */
.filme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.film-card {
    background: rgba(26, 10, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.film-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.film-card:hover::before {
    opacity: 1;
}

.film-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.film-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.film-card:hover .film-cover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.film-info {
    padding: 1.5rem;
}

.film-woche {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.film-titel {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.film-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
}

.film-beschreibung {
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.film-preis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--primary);
    border: 2px solid var(--secondary);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    z-index: 10001;
    animation: slideUp 0.4s ease;
}

.modal-small {
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* Auth Forms */
.auth-container {
    padding: 1rem 0;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--light);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.auth-form h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: rgba(245, 241, 232, 0.6);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

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

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
}

.social-btn.google:hover {
    border-color: #4285F4;
}

.social-btn.github:hover {
    border-color: #333;
}

/* Sitzplan - NUR 8 Sitze */
.sitzplan-container {
    margin: 2rem 0;
}

.leinwand {
    background: linear-gradient(to bottom, var(--secondary), rgba(212, 175, 55, 0.3));
    height: 10px;
    margin-bottom: 3rem;
    position: relative;
}

.leinwand::after {
    content: 'LEINWAND';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--secondary);
}

.sitzplan-grid {
    display: grid;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.sitzplan-reihe {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.sitz {
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
}

.sitz:hover:not(.belegt) {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.sitz.belegt {
    background: var(--accent);
    border-color: var(--accent);
    cursor: not-allowed;
    opacity: 0.5;
}

.sitz.ausgewaehlt {
    background: var(--secondary);
    color: var(--dark);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.sitz-legende {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.legende-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legende-box {
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary);
}

.legende-box.belegt {
    background: var(--accent);
    border-color: var(--accent);
}

.legende-box.ausgewaehlt {
    background: var(--secondary);
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 10, 15, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(26, 10, 15, 0.8);
}

.submit-button {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Spenden Section */
.spenden-section {
    background: var(--gradient);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.spenden-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.spenden-description {
    font-size: 1.1rem;
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.paypal-donation-btn {
    background: #0070ba;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.paypal-donation-btn:hover {
    background: #005ea6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 112, 186, 0.3);
}

.paypal-donation-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-info {
    color: rgba(245, 241, 232, 0.6);
}

/* Success Message */
.success-message {
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid #4ade80;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.success-message h3 {
    color: #4ade80;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.buchungsnummer {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 1rem 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-main {
        font-size: 4rem;
    }
    
    .filme-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-main {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .filter-tabs {
        gap: 0.8rem;
    }
    
    .filter-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 5, 6, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        display: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .login-btn,
    .user-profile {
        order: -1;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-main {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .filme-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .film-cover {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sitz {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .film-cover {
        height: 250px;
    }
    
    .film-titel {
        font-size: 1.3rem;
    }
    
    .film-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sitz {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .sitzplan-reihe {
        gap: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .spenden-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-main {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .film-cover {
        height: 200px;
    }
    
    .film-info {
        padding: 1rem;
    }
    
    .film-titel {
        font-size: 1.2rem;
    }
    
    .film-preis {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sitz {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 98%;
    }
    
    .auth-tab {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .hero-main {
        font-size: 1.8rem;
    }
    
    .film-cover {
        height: 180px;
    }
    
    .sitz {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }
    
    .sitzplan-grid {
        max-width: 300px;
    }
    
    .modal-content {
        padding: 1rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: #bfa030;
}