:root {
            --neon-pink: #cb45a6;
            --neon-blue: #00d4ff;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --text-light: #ffffff;
            --text-muted: #a0a0b0;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            background: rgba(10, 10, 15, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(203, 69, 166, 0.3);
        }

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

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: var(--neon-pink);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--neon-pink);
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: url('martini.jpg') center center / cover no-repeat;
            padding: 2rem;
            width: 100vw;
            max-width: 100vw;
            margin-left: 0;
            margin-right: 0;
            left: 0;
            right: 0;
            box-sizing: border-box;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 10, 15, 0.85) 0%,
                rgba(203, 69, 166, 0.3) 50%,
                rgba(0, 212, 255, 0.2) 100%
            );
            z-index: 1;
        }

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

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border: 1px solid var(--neon-pink);
            border-radius: 50px;
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 10px rgba(203, 69, 166, 0.5); }
            50% { box-shadow: 0 0 30px rgba(203, 69, 166, 0.8); }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--neon-pink) 50%, var(--neon-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 60px rgba(203, 69, 166, 0.5);
            line-height: 1.1;
        }

        .hero-subtitle {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--neon-blue);
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .hero-motto {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-style: italic;
            color: var(--neon-blue);
            margin-bottom: 2rem;
        }

        .hero-date {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 3rem;
            color: var(--text-light);
        }

        .hero-date span {
            color: var(--neon-pink);
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--neon-pink), #9933cc);
            border: none;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .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-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(203, 69, 166, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--neon-pink);
            color: var(--neon-pink);
        }

        .cta-button.secondary:hover {
            background: var(--neon-pink);
            color: var(--dark-bg);
            box-shadow: 0 10px 30px rgba(203, 69, 166, 0.3);
        }

        /* Sections General */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 4rem;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .about-card {
            background: rgba(203, 69, 166, 0.05);
            border: 1px solid rgba(203, 69, 166, 0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-pink);
            box-shadow: 0 20px 40px rgba(203, 69, 166, 0.2);
        }

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

        .about-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neon-blue);
        }

        .about-card p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* Location Section */
        .location-section {
            background: linear-gradient(135deg, rgba(203, 69, 166, 0.1), rgba(0, 212, 255, 0.05));
            border-radius: 30px;
            padding: 4rem;
            max-width: 1400px;
            margin: 2rem auto;
        }

        .location-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }

        .location-info p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .location-address {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            border-left: 3px solid var(--neon-blue);
        }

        .location-address-icon {
            font-size: 2rem;
        }

        .location-map {
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(203, 69, 166, 0.3);
        }

        .location-map iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Schedule Section */
        .schedule-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .schedule-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--neon-pink), var(--neon-blue));
        }

        .schedule-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 3rem;
        }

        .schedule-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .schedule-content {
            background: rgba(203, 69, 166, 0.1);
            border: 1px solid rgba(203, 69, 166, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            max-width: 350px;
            position: relative;
            margin-right: 30px;
        }

        .schedule-item:nth-child(even) .schedule-content {
            margin-right: 0;
            margin-left: 30px;
        }

        .schedule-time {
            font-family: 'Orbitron', sans-serif;
            color: var(--neon-blue);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .schedule-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .schedule-desc {
            color: var(--text-muted);
        }

        .schedule-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--neon-pink);
            border-radius: 50%;
            border: 3px solid var(--dark-bg);
            box-shadow: 0 0 20px var(--neon-pink);
        }

        /* Speakers Section */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .speaker-card {
            text-align: center;
            padding: 2rem;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .speaker-card:hover {
            transform: scale(1.05);
            border-color: var(--neon-blue);
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
        }

        .speaker-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }

        .speaker-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .speaker-card p {
            color: var(--neon-pink);
            font-size: 1rem;
        }

/* Team Section */
#team {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.team-tier h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-pink);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-card {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(203, 69, 166, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--neon-pink);
    position: relative;
    background: rgba(203, 69, 166, 0.1);
}

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

.team-avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, rgba(203, 69, 166, 0.3), rgba(0, 212, 255, 0.2));
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(203, 69, 166, 0.2);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.team-social a[title="OSINTgeek"] {
    background: #ffbf00;
}

.team-social a[title="Plosint"] {
    background: #027863;
}

/* Zwei Karten zentriert */
.team-grid-two {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.team-grid-two .team-card {
    flex: 0 1 300px;
}

/* Einzelne Karte zentriert */
.team-grid-single {
    display: flex;
    justify-content: center;
}

/* CTA-Karte mit gestricheltem Rand */
.team-card-cta {
    border-style: dashed;
    opacity: 0.8;
}

.team-card-cta:hover {
    opacity: 1;
    border-color: var(--neon-blue);
}


/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .team-card {
        max-width: 100%;
    }
}


        /* Ticket Section */
        .ticket-section {
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            border-radius: 30px;
            margin: 2rem;
            padding: 4rem;
            text-align: center;
        }

        .ticket-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .ticket-section p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .ticket-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--neon-pink);
            background: var(--text-light);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .ticket-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(203, 69, 166, 0.2);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section h4 {
            font-family: 'Orbitron', sans-serif;
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-blue);
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--neon-pink);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--neon-pink);
            color: var(--text-light);
        }

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

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

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Glitch Effect */
        .glitch {
            position: relative;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 2s infinite linear alternate-reverse;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            background-clip: text;
        }

        .glitch::after {
            animation: glitch-2 2s infinite linear alternate-reverse;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
            background-clip: text;
        }

        @keyframes glitch-1 {
            0% { transform: translateX(0); }
            20% { transform: translateX(-3px); }
            40% { transform: translateX(3px); }
            60% { transform: translateX(-3px); }
            80% { transform: translateX(3px); }
            100% { transform: translateX(0); }
        }

        @keyframes glitch-2 {
            0% { transform: translateX(0); }
            20% { transform: translateX(3px); }
            40% { transform: translateX(-3px); }
            60% { transform: translateX(3px); }
            80% { transform: translateX(-3px); }
            100% { transform: translateX(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 15, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .schedule-timeline::before {
                left: 0;
            }

            .schedule-item,
            .schedule-item:nth-child(even) {
                padding-left: 30px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .schedule-content,
            .schedule-item:nth-child(even) .schedule-content {
                margin-left: 20px;
                margin-right: 0;
            }

            .schedule-dot {
                left: 0;
                transform: translateX(-50%);
            }

            .location-content {
                grid-template-columns: 1fr;
            }

            .location-section,
            .ticket-section {
                margin: 1rem;
                padding: 2rem;
            }
        }

        /* Particle Background Effect */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--neon-pink);
            border-radius: 50%;
            opacity: 0.5;
            animation: rise 10s infinite;
        }

        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) scale(1);
                opacity: 0;
            }
        }
/* Ticket Cards Section */
.tickets-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.ticket-card {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(203, 69, 166, 0.3);
}

.ticket-card.featured {
    border-color: var(--neon-blue);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(203, 69, 166, 0.1));
}

.ticket-card.featured:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ticket-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.ticket-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.ticket-price {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ticket-price .amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-pink);
    display: block;
}

.ticket-price .amount.free {
    color: var(--neon-blue);
}

.ticket-price .period {
    color: var(--text-muted);
    font-size: 1rem;
    display: block;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.ticket-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

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

.ticket-features li::before {
    content: "✓";
    color: var(--neon-blue);
    font-weight: bold;
    flex-shrink: 0;
}

.ticket-features li.highlight {
    color: var(--neon-pink);
    font-weight: 600;
}

.ticket-features li.highlight::before {
    content: "★";
    color: var(--neon-pink);
}


.ticket-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.ticket-card .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
}

.ticket-card .cta-button.secondary:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
}

/* Newsletter & Archive Section */
.newsletter-section {
    padding: 6rem 2rem;
    /* background: linear-gradient(135deg, rgba(203, 69, 166, 0.1), rgba(0, 212, 255, 0.05)); */
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: stretch; /* ← Geändert von 'start' zu 'stretch' */
}

.newsletter-box {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.newsletter-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-box h3 span {
    font-size: 2rem;
}

.newsletter-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(203, 69, 166, 0.3);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border: none;
    border-radius: 50px;
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(203, 69, 166, 0.4);
}
/* Newsletter Consent Checkbox */
.newsletter-consent {
    margin-top: 1rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.consent-checkbox .checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.consent-checkbox:hover .checkmark {
    border-color: var(--neon-pink);
}

.consent-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border-color: transparent;
}

.consent-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

.consent-checkbox .consent-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.consent-checkbox .consent-text a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.consent-checkbox .consent-text a:hover {
    color: var(--neon-blue);
    text-decoration: underline;
}

/* Validierung - rote Border wenn nicht akzeptiert */
.consent-checkbox input[type="checkbox"]:invalid:not(:placeholder-shown) ~ .checkmark,
.consent-checkbox input[type="checkbox"]:required:not(:checked):focus ~ .checkmark {
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .consent-checkbox .consent-text {
        font-size: 0.8rem;
    }
}


.archive-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.archive-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.archive-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.archive-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(203, 69, 166, 0.2);
    border-radius: 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.archive-link:hover {
    border-color: var(--neon-pink);
    background: rgba(203, 69, 166, 0.1);
    transform: translateX(10px);
}

.archive-link-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.archive-link-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--neon-pink);
}

.archive-link-motto {
    color: var(--text-muted);
    font-size: 1rem;
}

.archive-link-arrow {
    font-size: 1.5rem;
    color: var(--neon-blue);
    transition: transform 0.3s ease;
}

.archive-link:hover .archive-link-arrow {
    transform: translateX(5px);
}

.newsletter-box p,
.archive-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid #00d4ff;
    color: #00d4ff;
}

.newsletter-message.error {
    display: block;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.archive-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-box,
.archive-box {
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(203, 69, 166, 0.3);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
}
