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

:root {
    /* Neon-Farben aus dem Logo */
    --neon-pink: #ff00ff;
    --neon-magenta: #ff00cc;
    --neon-yellow: #ffff00;
    --bright-yellow: #ffdd00;
    --cyan: #00e5ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
}

/* Cookie-Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 0, 40, 0.98) 0%, rgba(10, 10, 30, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 -5px 30px rgba(255, 0, 255, 0.4);
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--cyan) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.6);
}

.cookie-reject {
    background: rgba(100, 100, 100, 0.3);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(150, 150, 150, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 0, 255, 0.2);
}

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

.header-logo-left,
.header-logo-right {
    width: 150px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.5));
    transition: all 0.3s ease;
}

.header-logo-left:hover,
.header-logo-right:hover {
    filter: drop-shadow(0 0 25px rgba(255, 255, 0, 0.7));
    transform: scale(1.05);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex: 0 0 auto;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.6));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 0, 0.5));
    }
}

.brand-name {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
    text-align: center;
}

.neon-text {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 30px rgba(255, 0, 255, 0.4);
    letter-spacing: 0.1em;
    line-height: 1;
}

.lounge-text {
    font-family: 'Monoton', cursive;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--neon-yellow), var(--bright-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6);
    letter-spacing: 0.1em;
    line-height: 1;
}

.location {
    font-size: 1.3rem;
    color: var(--cyan);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 400;
    text-shadow: 
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.6),
        0 0 30px rgba(0, 229, 255, 0.4);
}

/* Main Content */
.main-content {
    padding-top: 140px;
    padding-left: 260px;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 140px;
    left: 0;
    width: 240px;
    height: calc(100vh - 140px);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-right: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 4px 0 30px rgba(255, 0, 255, 0.2);
    overflow-y: auto;
    z-index: 900;
}

.sidebar-nav {
    padding: 2rem 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 0, 255, 0.1);
    border-left: 3px solid var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.6),
        0 0 20px rgba(255, 0, 255, 0.4);
    padding-left: 2rem;
}

.nav-link.active {
    background: rgba(255, 0, 255, 0.15);
    border-left: 3px solid var(--neon-yellow);
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6),
        0 0 20px rgba(255, 255, 0, 0.4);
}

.sidebar-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-yellow), transparent);
    margin: 2rem 1rem;
    opacity: 0.5;
}

.google-reviews {
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.reviews-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.news-section {
    padding: 0 1.5rem;
    margin: 1.5rem 0;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.news-content {
    background: rgba(255, 0, 255, 0.05);
    border-left: 3px solid var(--neon-yellow);
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.news-content p {
    margin: 0;
}

.news-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.2);
}

.news-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.news-headline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    text-align: center;
}

.news-date {
    font-size: 0.85rem;
    color: var(--cyan);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.news-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-block;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.news-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.4);
}

.news-link span {
    margin-right: 0.3rem;
}


/* Scrollbar Styling for Sidebar */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--neon-pink);
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.welcome-text {
    font-family: 'Monoton', cursive;
    font-size: 4rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-magenta) 30%, var(--bright-yellow) 70%, var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.4),
        0 0 60px rgba(255, 255, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--cyan);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.intro-text {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    text-align: center;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

/* Content Pages */
.content-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Monoton', cursive;
    font-size: 4rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-magenta) 30%, var(--bright-yellow) 70%, var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.4),
        0 0 60px rgba(255, 255, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Opening Hours Styles */
.opening-hours-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.day-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.day-card.open::before {
    opacity: 1;
}

.day-card.highlight::before {
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-yellow), transparent);
}

.day-card.closed {
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.05);
}

.day-card.closed::before {
    display: none;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.3);
}

.day-card.closed:hover {
    transform: none;
    box-shadow: none;
}

.day-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.day-card.closed .day-name {
    color: rgba(255, 255, 255, 0.4);
}

.hours {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.day-card.closed .hours {
    color: rgba(255, 255, 255, 0.3);
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.restaurant {
    background: rgba(0, 229, 255, 0.2);
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.status-badge.mixed {
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

.status-badge.party {
    background: linear-gradient(90deg, rgba(255, 0, 255, 0.2), rgba(255, 255, 0, 0.2));
    color: var(--neon-yellow);
    border: 1px solid var(--neon-yellow);
}

.info-box {
    background: rgba(255, 0, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--neon-yellow);
}

/* Menu/Speisekarte Styles */
.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 15px 40px rgba(255, 0, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.2);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.category-icon img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.category-card:hover .category-icon img {
    filter: grayscale(0);
    border-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    display: inline-block;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

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

.category-link:hover {
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6);
}

.category-link:hover::after {
    width: 100%;
    background: var(--neon-yellow);
}

.menu-note {
    background: rgba(255, 255, 0, 0.05);
    border-left: 4px solid var(--neon-yellow);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.menu-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.menu-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-note li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.menu-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-weight: bold;
}

.menu-note strong {
    color: var(--neon-yellow);
}

/* Events Page Styles */
.events-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.events-intro p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.events-note {
    color: var(--cyan);
    font-weight: 500;
    background: rgba(0, 229, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--cyan);
}

/* Events Monats-Sektionen */
.events-month-section {
    margin-bottom: 5rem;
}

.events-month-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 255, 0.3);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.month-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.6));
}

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

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    border-color: var(--neon-yellow);
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(255, 255, 0, 0.3),
        0 0 30px rgba(255, 0, 255, 0.2);
}

.event-date {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    padding: 1.5rem;
    text-align: center;
    color: var(--dark-bg);
}

.event-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.event-month {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.event-year {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

.event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-time {
    color: var(--cyan);
    font-size: 1rem;
    font-weight: 600;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.event-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-tag {
    background: rgba(255, 0, 255, 0.2);
    color: var(--neon-yellow);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.event-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.event-link:hover {
    color: var(--neon-yellow);
    transform: translateX(5px);
}

.events-cta {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 255, 0, 0.1));
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.events-cta-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.events-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.events-contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.events-contact-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(255, 255, 0, 0.6),
        0 10px 30px rgba(255, 0, 255, 0.4);
}

/* Coming Soon / In Bearbeitung (legacy) */
.coming-soon-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.coming-soon-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-family: 'Monoton', cursive;
    font-size: 4rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-magenta) 30%, var(--bright-yellow) 70%, var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.4),
        0 0 60px rgba(255, 255, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.coming-soon-highlight {
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

.coming-soon-highlight p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1rem 0;
    line-height: 1.6;
}

.coming-soon-highlight p:first-child {
    font-weight: 600;
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6);
}

.coming-soon-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 8px;
}

.coming-soon-cta p {
    font-size: 1.1rem;
    color: var(--cyan);
    line-height: 1.6;
    margin: 0;
}

/* Legal/Impressum Styles */
.legal-page {
    max-width: 900px;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(255, 0, 255, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--neon-pink);
}

.legal-section.highlight-section {
    background: rgba(255, 0, 255, 0.08);
    border-left: 3px solid var(--neon-yellow);
}

.legal-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.4);
}

.legal-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cyan);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    color: var(--neon-yellow);
    font-weight: 600;
}

.contact-link {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--neon-yellow);
    border-bottom-color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.legal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: bold;
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 15px 40px rgba(255, 0, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.2);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-card-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-card-content p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
}

.contact-card-content strong {
    color: var(--neon-yellow);
    font-size: 1.15rem;
}

.contact-action-link {
    display: inline-block;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

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

.contact-action-link:hover {
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6),
        0 0 20px rgba(255, 255, 0, 0.4);
}

.contact-action-link:hover::after {
    width: 100%;
    background: var(--neon-yellow);
}

.contact-hint {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 1rem;
}

.contact-hours-note {
    background: rgba(255, 0, 255, 0.08);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.contact-note-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.contact-hours-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.contact-hours-note strong {
    color: var(--neon-yellow);
}

.inline-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--neon-yellow);
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.6);
    transform: translateX(5px);
}

/* Gallery Styles */
.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item-tall {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

.gallery-item-portrait {
    aspect-ratio: 9 / 16;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.gallery-video {
    position: relative;
}

.gallery-video .gallery-overlay {
    pointer-events: none;
}

.gallery-item:first-child img {
    object-fit: contain;
    background: #000;
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 
        0 10px 30px rgba(255, 0, 255, 0.4),
        0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-5px);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.gallery-info {
    background: rgba(0, 229, 255, 0.08);
    border: 2px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.gallery-info p {
    color: var(--cyan);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }
    
    .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-caption {
        transform: translateY(0);
    }
}

/* Team Page Styles */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category-title {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 
        0 15px 40px rgba(255, 0, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.2);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover .team-photo {
    border-color: var(--neon-yellow);
    box-shadow: 
        0 0 20px rgba(255, 255, 0, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 255, 0, 0.1));
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.4);
}

.team-role {
    font-size: 1.1rem;
    color: var(--cyan);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Team Grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-photo-placeholder {
        font-size: 3rem;
    }
}

/* Dart Page Styles */
.dart-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/dart-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.dart-icon-large {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.dart-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.8;
}

.dart-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.dart-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dart-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.dart-info-card:hover::before {
    transform: scaleX(1);
}

.dart-info-card.highlight {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 255, 0.05);
}

.dart-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-yellow);
    box-shadow: 
        0 20px 50px rgba(255, 255, 0, 0.2),
        0 0 30px rgba(255, 0, 255, 0.2);
}

.dart-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.dart-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.dart-card-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.dart-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    color: var(--dark-bg);
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.dart-features {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(0, 229, 255, 0.2);
}

.dart-features-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(90deg, var(--cyan), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dart-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.dart-feature {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dart-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--cyan);
    transform: scale(1.05);
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.dart-feature p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.dart-cta {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(255, 255, 0, 0.1));
    border-radius: 25px;
    padding: 4rem 3rem;
    border: 3px solid var(--neon-pink);
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.dart-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.dart-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.dart-cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.dart-contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.dart-contact-label {
    font-size: 1rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.dart-contact-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

.dart-contact-role {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.dart-contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.dart-contact-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 50px rgba(255, 255, 0, 0.7),
        0 10px 30px rgba(255, 0, 255, 0.4);
}

/* Responsive Dart */
@media (max-width: 768px) {
    .dart-icon-large {
        font-size: 4rem;
    }
    
    .dart-tagline {
        font-size: 1.2rem;
    }
    
    .dart-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dart-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .dart-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .dart-contact-name {
        font-size: 2rem;
    }
}

/* Mobile Menu Grid */
.mobile-menu-grid {
    display: none;
}

/* Mobile Hero Section */
.mobile-hero-section {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}

.mobile-welcome-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    letter-spacing: 0.05em;
}

.mobile-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-intro-text {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(0, 212, 255, 0.08));
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-intro-paragraph {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    text-align: justify;
    font-weight: 400;
}

.mobile-intro-paragraph:last-child {
    margin-bottom: 0;
}

/* Mobile News Section */
.mobile-news-section {
    padding: 0 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.mobile-news-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 0, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

.mobile-news-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-news-item {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.25) 0%, rgba(0, 212, 255, 0.25) 100%);
    border: 3px solid #ff0080;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6), 0 0 50px rgba(255, 0, 255, 0.4);
    animation: glow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mobile-news-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 0, 128, 0.6), 0 0 50px rgba(255, 0, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 128, 0.8), 0 0 60px rgba(255, 0, 255, 0.6), 0 0 80px rgba(0, 212, 255, 0.4);
    }
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.mobile-news-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.mobile-news-headline {
    color: #ff0080;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.8);
}

.mobile-news-date {
    color: #00d4ff;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.mobile-news-text {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #fff;
}

.mobile-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff0080, #ff4da6);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.5);
}

.mobile-news-link:hover,
.mobile-news-link:active {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.7);
    background: linear-gradient(135deg, #ff4da6, #ff0080);
}

.mobile-welcome {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    border: none;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.5);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.6);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--dark-bg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Dropdown Menu */
.mobile-dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.4s ease;
    overflow-y: auto;
    border-right: 2px solid var(--neon-pink);
    box-shadow: 5px 0 30px rgba(255, 0, 255, 0.5);
}

.mobile-dropdown-menu.active {
    left: 0;
}

.mobile-dropdown-nav {
    padding: 80px 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:active {
    background: rgba(255, 0, 255, 0.1);
    border-left-color: var(--neon-yellow);
    color: var(--neon-yellow);
    transform: translateX(10px);
}

.mobile-dropdown-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    margin: 1rem 0;
}

.mobile-google-link {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2)) !important;
    border-left-color: #4285F4 !important;
    font-weight: 700;
    text-align: center;
}

.mobile-google-link:hover,
.mobile-google-link:active {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.3), rgba(52, 168, 83, 0.3)) !important;
    border-left-color: #34A853 !important;
    color: #fff !important;
}

.mobile-welcome {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.highlight-pink {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
}

.mobile-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 1rem;
}

.mobile-nav-card {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(0, 212, 255, 0.08));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 2.5rem 1.2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow), var(--cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav-card:hover::before,
.mobile-nav-card:active::before {
    opacity: 1;
}

.mobile-nav-card:hover,
.mobile-nav-card:active {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(0, 212, 255, 0.15));
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.3);
}

.mobile-nav-icon {
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 50%;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
}

.mobile-nav-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow), var(--cyan), var(--neon-pink));
    background-size: 300% 300%;
    z-index: -1;
    animation: gradientRotate 4s ease infinite;
}

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

.mobile-nav-card:hover .mobile-nav-icon,
.mobile-nav-card:active .mobile-nav-icon {
    transform: scale(1.25) rotate(360deg);
    filter: drop-shadow(0 0 25px rgba(255, 0, 255, 1)) drop-shadow(0 0 35px rgba(0, 212, 255, 0.8));
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.4), rgba(0, 212, 255, 0.4));
}

.mobile-nav-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mobile-nav-card:hover h3,
.mobile-nav-card:active h3 {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

/* Mobile Google Reviews Section */
.mobile-google-reviews {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.mobile-google-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15), rgba(52, 168, 83, 0.15));
    border: 3px solid #4285F4;
    border-radius: 20px;
    padding: 1.8rem 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.4);
    position: relative;
    overflow: hidden;
}

.mobile-google-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-google-button:hover::before,
.mobile-google-button:active::before {
    opacity: 1;
}

.mobile-google-button:hover,
.mobile-google-button:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.6), 0 0 30px rgba(52, 168, 83, 0.4);
    border-color: #34A853;
}

.mobile-google-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.mobile-google-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-google-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.mobile-google-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.mobile-back-button {
    display: none;
}

.desktop-content {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Show mobile dropdown menu */
    .mobile-dropdown-menu {
        display: block;
    }
    
    /* Hide desktop elements on mobile */
    .desktop-content {
        display: none !important;
    }
    
    .sidebar {
        display: none !important;
    }
    
    /* Center mobile nav grid */
    .mobile-nav-grid {
        padding: 0 1rem 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mobile-welcome {
        margin-top: 1rem;
    }
    
    .hamburger-line {
        display: block;
    }
    
    .header {
        padding: 1rem 0.5rem;
        position: relative;
        z-index: 100;
    }
    
    /* Show mobile menu grid only on index page */
    body.mobile-home .mobile-menu-grid {
        display: block;
        padding: 2rem 1rem;
    }
    
    /* Mobile back button for sub-pages */
    .mobile-back-button {
        display: block;
        background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
        color: var(--dark-bg);
        text-decoration: none;
        padding: 1rem;
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 12px;
        margin: 1rem;
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
        transition: all 0.3s ease;
    }
    
    .mobile-back-button:hover,
    .mobile-back-button:active {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 255, 0, 0.6);
    }
    
    /* Mobile layout adjustments */
    body {
        padding-top: 0;
    }
    
    .header-content {
        gap: 0.5rem;
        padding: 0 0.5rem;
        flex-wrap: nowrap;
    }
    
    .header-logo-left,
    .header-logo-right {
        width: 60px;
    }
    
    .neon-text {
        font-size: 1.5rem;
    }
    
    .lounge-text {
        font-size: 1.1rem;
    }
    
    .location {
        font-size: 0.65rem;
    }
    
    .main-content {
        padding: 0;
        margin-left: 0;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-text {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Opening Hours Mobile */
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .day-card {
        padding: 1.5rem;
    }
    
    /* Menu Mobile */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    /* Events Mobile */
    .coming-soon-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        margin: 0 0.5rem;
    }
    
    .event-date {
        padding: 1rem;
    }
    
    .event-day {
        font-size: 2.5rem;
    }
    
    .event-month {
        font-size: 1rem;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.4rem;
    }
    
    .events-cta {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .events-cta-title {
        font-size: 1.5rem;
    }
    
    .events-cta-text {
        font-size: 1rem;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item-wide,
    .gallery-item-tall,
    .gallery-item-portrait {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .gallery-caption {
        transform: translateY(0);
        font-size: 0.9rem;
    }
    
    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-photo-placeholder {
        font-size: 3rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    /* Dart Mobile */
    .dart-icon-large {
        font-size: 4rem;
    }
    
    .dart-tagline {
        font-size: 1.1rem;
    }
    
    .dart-intro {
        padding: 2rem 1rem;
    }
    
    .dart-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dart-info-card {
        padding: 1.5rem;
    }
    
    .dart-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .dart-feature {
        padding: 1rem;
    }
    
    .feature-emoji {
        font-size: 2rem;
    }
    
    .dart-cta {
        padding: 2rem 1.5rem;
    }
    
    .dart-cta-title {
        font-size: 1.8rem;
    }
    
    .dart-cta-text {
        font-size: 1rem;
    }
    
    .dart-contact-name {
        font-size: 1.8rem;
    }
    
    .dart-contact-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* Legal Mobile */
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices (phones < 480px) */
@media (max-width: 480px) {
    .header-logo-left,
    .header-logo-right {
        width: 50px;
    }
    
    .neon-text {
        font-size: 1.2rem;
    }
    
    .lounge-text {
        font-size: 0.9rem;
    }
    
    .location {
        font-size: 0.55rem;
    }
    
    .nav-list {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dart-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar {
        width: 220px;
    }
    
    .main-content {
        margin-left: 220px;
        padding: 3rem;
    }
    
    .hours-grid,
    .category-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--neon-pink);
    padding: 2rem;
    text-align: center;
    margin-top: auto;
    box-shadow: 0 -4px 30px rgba(255, 0, 255, 0.3);
}

.copyright {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-moonlight {
    color: var(--neon-pink);
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 30px rgba(255, 0, 255, 0.4);
}

.footer-lounge {
    color: var(--neon-yellow);
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6),
        0 0 30px rgba(255, 255, 0, 0.4);
}

.footer-location {
    color: var(--cyan);
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.6),
        0 0 30px rgba(0, 229, 255, 0.4);
}
/* ================================
   RESERVATION FORM STYLES
   ================================ */

/* Reservation Intro */
.reservation-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), rgba(0, 229, 255, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.intro-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.intro-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Reservation Form */
.reservation-form {
    max-width: 900px;
    margin: 0 auto;
}

/* Form Sections */
.form-section {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.15);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
}

.section-icon {
    font-size: 1.8rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Date und Time Picker Styling */
.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    filter: invert(1);
}

/* Input mit Icon auf der linken Seite */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    font-size: 1.3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    pointer-events: none;
    z-index: 1;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    }
    50% {
        text-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    }
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 3rem !important;
}

/* Click Hint Styling */
.click-hint {
    font-size: 0.75rem;
    color: var(--neon-cyan);
    font-weight: 300;
    margin-left: 8px;
    text-shadow: 0 0 8px var(--neon-cyan);
    animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
    0%, 100% {
        opacity: 0.7;
        text-shadow: 0 0 8px var(--neon-cyan);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 15px var(--neon-cyan), 0 0 25px var(--neon-cyan);
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
    background: rgba(10, 10, 30, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff00ff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select option {
    background: #0a0a1e;
    color: #fff;
}

/* Form Footer */
.form-footer {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-checkbox-wrapper {
    margin-bottom: 1.5rem;
}

.form-checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--neon-pink);
}

.form-checkbox-wrapper label {
    display: inline;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.form-checkbox-wrapper label a {
    color: var(--neon-pink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.form-checkbox-wrapper label a:hover {
    border-bottom-color: var(--neon-pink);
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--cyan));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 0, 255, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

.button-icon {
    font-size: 1.5rem;
}

.form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    text-align: center;
}

.form-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid var(--cyan);
    border-radius: 5px;
}

/* Alternative Contact Section */
.reservation-alternative {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(255, 255, 0, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 15px;
}

.alternative-header {
    text-align: center;
    margin-bottom: 2rem;
}

.alternative-header h3 {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.alternative-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.contact-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cyan);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reservation-intro {
        padding: 1.5rem;
    }
    
    .intro-main {
        font-size: 1.2rem;
    }
    
    .intro-sub {
        font-size: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .alternative-header h3 {
        font-size: 1.5rem;
    }
}

/* Wöchentliches Bingo Event Section */
.weekly-event-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0;
}

.weekly-event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.weekly-event-title {
    font-size: 2rem;
    color: var(--neon-pink);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
    margin: 0;
}

.weekly-badge {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--cyan) 100%);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.bingo-event-card {
    background: linear-gradient(135deg, rgba(30, 0, 60, 0.8) 0%, rgba(10, 10, 30, 0.8) 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.bingo-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 255, 0.5);
    border-color: var(--cyan);
}

.bingo-left {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bingo-icon {
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.8));
    animation: float 3s ease-in-out infinite;
}

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

.bingo-content {
    flex: 1;
}

.bingo-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.bingo-subtitle {
    color: var(--cyan);
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.bingo-schedule {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.bingo-day, .bingo-time {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-label, .time-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-value, .time-value {
    font-size: 1.3rem;
    color: var(--neon-yellow);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

.bingo-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bingo-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.bingo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-text {
    color: #ffffff;
    font-size: 1.1rem;
}

.bingo-reservation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reservation-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 100, 0, 0.2) 100%);
    border: 2px solid #ff0000;
    border-radius: 10px;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    }
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.bingo-reserve-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--cyan) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
    transition: all 0.3s ease;
}

.bingo-reserve-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
}

/* Mobile Responsive für Bingo Event */
@media (max-width: 968px) {
    .bingo-event-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .weekly-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .bingo-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bingo-icon {
        font-size: 4rem;
    }
    
    .bingo-title {
        font-size: 2rem;
    }
    
    .bingo-schedule {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .bingo-features {
        margin-bottom: 1.5rem;
    }
}