/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff1e79;
    --accent-color: #00ffff;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --card-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --neon-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    --cyan-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    --magenta-glow: 0 0 20px rgba(255, 30, 121, 0.5);
    --white-glow: 0 0 20px rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Arimo', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(150px 150px at 20% 20%, rgba(0, 255, 255, 0.15), transparent 50%),
        radial-gradient(200px 200px at 80% 30%, rgba(255, 30, 121, 0.12), transparent 50%),
        radial-gradient(180px 180px at 40% 70%, rgba(255, 255, 255, 0.08), transparent 50%),
        radial-gradient(120px 120px at 70% 80%, rgba(0, 255, 255, 0.1), transparent 50%),
        radial-gradient(160px 160px at 10% 50%, rgba(255, 30, 121, 0.1), transparent 50%),
        radial-gradient(140px 140px at 90% 60%, rgba(255, 255, 255, 0.06), transparent 50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    animation: float 30s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.nav-logo .logo-text {
    font-family: 'Arimo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-glow);
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: var(--cyan-glow);
}

.nav-link.signup-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    color: var(--dark-bg);
    box-shadow: var(--blue-glow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: 0.3s;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-bottom: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background/I_de_Bruech_Schwinger_cyan_small.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
    opacity: 0.3;
    animation: glitchBackground 8s infinite, colorShift 10s infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background/I_de_Bruech_Schwinger_white_small.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0;
    animation: strobeWhite 1.2s infinite, glitchWhite 6s infinite, randomGlitch 12s infinite;
    mix-blend-mode: screen;
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
        justify-content: flex-end;
        padding-bottom: 1rem;
    }
    
    .hero-content {
        margin-bottom: 1rem;
    }
    
    .hero-visual {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }
}



.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 2200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    max-width: 1400px;
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero-logo {
    margin-bottom: 1rem;
    text-align: left;
}

.hero-logo-img {
    width: 390px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-logo-img rect {
    fill: transparent !important;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    transform: scale(1.05);
}

.hero-title {
    font-family: 'Arimo', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-glow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: var(--neon-glow);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.6);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: var(--cyan-glow);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: block;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.line-break {
    display: block;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    position: relative;
    z-index: 3;
    min-width: fit-content;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-edelweiss {
    width: 40px;
    height: 40px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.3));
}

.btn:hover .btn-edelweiss {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.6));
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: var(--cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 30, 121, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: var(--cyan-glow);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.pulse-circle {
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite, pulseGlitch 7s infinite;
    opacity: 0.8;
}

.pulse-circle:nth-child(1) {
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-delay: 0.5s;
}

.pulse-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulseGlitch {
    0%, 100% {
        border-color: rgba(0, 255, 255, 0.6);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    25% {
        border-color: rgba(255, 30, 121, 0.8);
        box-shadow: 0 0 30px rgba(255, 30, 121, 0.5);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }
    75% {
        border-color: rgba(0, 255, 255, 0.7);
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow-link {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow-link:hover {
    transform: translateY(-5px);
    animation: none;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.scroll-arrow-link:hover .scroll-arrow {
    border-color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

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

@keyframes glitchBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        filter: hue-rotate(0deg) brightness(1);
    }
    10% {
        transform: translate(-1px, 0.5px) scale(1.01);
        filter: hue-rotate(3deg) brightness(1.05);
    }
    20% {
        transform: translate(1px, -0.5px) scale(0.99);
        filter: hue-rotate(-2deg) brightness(0.95);
    }
    30% {
        transform: translate(-0.5px, 1px) scale(1.02);
        filter: hue-rotate(5deg) brightness(1.1);
    }
    40% {
        transform: translate(0.5px, -1px) scale(0.98);
        filter: hue-rotate(-3deg) brightness(0.9);
    }
    50% {
        transform: translate(-1.5px, 0px) scale(1.03);
        filter: hue-rotate(8deg) brightness(1.15);
    }
    60% {
        transform: translate(1.5px, 0.5px) scale(0.97);
        filter: hue-rotate(-5deg) brightness(0.85);
    }
    70% {
        transform: translate(-0.5px, -0.5px) scale(1.01);
        filter: hue-rotate(10deg) brightness(1.05);
    }
    80% {
        transform: translate(1px, 1px) scale(0.99);
        filter: hue-rotate(-7deg) brightness(0.95);
    }
    90% {
        transform: translate(-1px, -1px) scale(1.02);
        filter: hue-rotate(12deg) brightness(1.1);
    }
}

@keyframes strobeWhite {
    0%, 20% {
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    4% {
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    8% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    12% {
        opacity: 0;
    }
    14% {
        opacity: 1;
    }
    16% {
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    25% {
        opacity: 0.4;
    }
    30% {
        opacity: 0;
    }
    35% {
        opacity: 0.3;
    }
    40% {
        opacity: 0;
    }
    45% {
        opacity: 0.2;
    }
    50% {
        opacity: 0;
    }
    55% {
        opacity: 0.3;
    }
    60% {
        opacity: 0;
    }
    65% {
        opacity: 0.2;
    }
    70% {
        opacity: 0;
    }
    75% {
        opacity: 0.3;
    }
    80% {
        opacity: 0;
    }
    85% {
        opacity: 0.2;
    }
    90% {
        opacity: 0;
    }
    95% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

@keyframes glitchWhite {
    0%, 100% {
        transform: translate(0, 0) skew(0deg);
        filter: contrast(1) brightness(1);
    }
    5% {
        transform: translate(-2px, 1px) skew(-1deg);
        filter: contrast(1.3) brightness(1.1);
    }
    10% {
        transform: translate(2px, -1px) skew(1deg);
        filter: contrast(0.9) brightness(0.9);
    }
    15% {
        transform: translate(-1.5px, 2px) skew(-0.5deg);
        filter: contrast(1.2) brightness(1.05);
    }
    20% {
        transform: translate(1.5px, -2px) skew(0.5deg);
        filter: contrast(0.95) brightness(0.95);
    }
    25% {
        transform: translate(-3px, 0.5px) skew(-1.5deg);
        filter: contrast(1.4) brightness(1.15);
    }
    30% {
        transform: translate(3px, -0.5px) skew(1.5deg);
        filter: contrast(0.85) brightness(0.85);
    }
    35% {
        transform: translate(-1px, 3px) skew(-0.75deg);
        filter: contrast(1.25) brightness(1.08);
    }
    40% {
        transform: translate(1px, -3px) skew(0.75deg);
        filter: contrast(0.9) brightness(0.92);
    }
    45% {
        transform: translate(-4px, 1.5px) skew(-1.25deg);
        filter: contrast(1.35) brightness(1.12);
    }
    50% {
        transform: translate(4px, -1.5px) skew(1.25deg);
        filter: contrast(0.8) brightness(0.88);
    }
    55% {
        transform: translate(-2px, 2.5px) skew(-0.5deg);
        filter: contrast(1.1) brightness(1.05);
    }
    60% {
        transform: translate(2px, -2.5px) skew(0.5deg);
        filter: contrast(0.95) brightness(0.95);
    }
    65% {
        transform: translate(-3px, 1px) skew(-1deg);
        filter: contrast(1.3) brightness(1.1);
    }
    70% {
        transform: translate(3px, -1px) skew(1deg);
        filter: contrast(0.9) brightness(0.9);
    }
    75% {
        transform: translate(-0.5px, 3.5px) skew(-0.25deg);
        filter: contrast(1.05) brightness(1.02);
    }
    80% {
        transform: translate(0.5px, -3.5px) skew(0.25deg);
        filter: contrast(0.97) brightness(0.98);
    }
    85% {
        transform: translate(-4.5px, 2px) skew(-1.5deg);
        filter: contrast(1.4) brightness(1.18);
    }
    90% {
        transform: translate(4.5px, -2px) skew(1.5deg);
        filter: contrast(0.75) brightness(0.82);
    }
    95% {
        transform: translate(-1.5px, 4px) skew(-0.5deg);
        filter: contrast(1.15) brightness(1.08);
    }
}

@keyframes colorShift {
    0%, 100% {
        filter: hue-rotate(0deg) saturate(1);
    }
    25% {
        filter: hue-rotate(15deg) saturate(1.2);
    }
    50% {
        filter: hue-rotate(-10deg) saturate(0.8);
    }
    75% {
        filter: hue-rotate(20deg) saturate(1.3);
    }
}

@keyframes randomGlitch {
    0%, 85%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    87% {
        transform: translate(-10px, 5px) scale(1.05);
        opacity: 0.9;
    }
    89% {
        transform: translate(8px, -3px) scale(0.95);
        opacity: 0.7;
    }
    91% {
        transform: translate(-5px, 8px) scale(1.1);
        opacity: 1;
    }
    93% {
        transform: translate(12px, -6px) scale(0.9);
        opacity: 0.8;
    }
    95% {
        transform: translate(-8px, 12px) scale(1.15);
        opacity: 0.9;
    }
    97% {
        transform: translate(15px, -8px) scale(0.85);
        opacity: 0.6;
    }
    99% {
        transform: translate(-12px, 15px) scale(1.2);
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Arimo', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--text-primary);
    text-shadow: none;
}

.section-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s;
    animation: glassBreak1 4s ease-in-out infinite;
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
    -webkit-transition-duration: 1.2s;
    transition-duration: 1.2s;
    animation: glassBreak2 4s ease-in-out infinite;
}

@keyframes glassBreak1 {
    0%, 100% {
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
        clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
        transform: translate(0, 0);
    }
    25% {
        -webkit-clip-path: polygon(5% 0%, 95% 0%, 90% 45%, 10% 55%);
        clip-path: polygon(5% 0%, 95% 0%, 90% 45%, 10% 55%);
        transform: translate(-2px, 1px);
    }
    50% {
        -webkit-clip-path: polygon(10% 0%, 90% 0%, 85% 50%, 15% 50%);
        clip-path: polygon(10% 0%, 90% 0%, 85% 50%, 15% 50%);
        transform: translate(2px, -1px);
    }
    75% {
        -webkit-clip-path: polygon(15% 0%, 85% 0%, 80% 55%, 20% 45%);
        clip-path: polygon(15% 0%, 85% 0%, 80% 55%, 20% 45%);
        transform: translate(-1px, 2px);
    }
}

@keyframes glassBreak2 {
    0%, 100% {
        -webkit-clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
        transform: translate(0, 0);
    }
    25% {
        -webkit-clip-path: polygon(10% 55%, 90% 45%, 95% 100%, 5% 100%);
        clip-path: polygon(10% 55%, 90% 45%, 95% 100%, 5% 100%);
        transform: translate(2px, -1px);
    }
    50% {
        -webkit-clip-path: polygon(15% 50%, 85% 50%, 90% 100%, 10% 100%);
        clip-path: polygon(15% 50%, 85% 50%, 90% 100%, 10% 100%);
        transform: translate(-2px, 1px);
    }
    75% {
        -webkit-clip-path: polygon(20% 45%, 80% 55%, 85% 100%, 15% 100%);
        clip-path: polygon(20% 45%, 80% 55%, 85% 100%, 15% 100%);
        transform: translate(1px, -2px);
    }
}

/* Location Section */
.location {
    background: transparent;
    padding-top: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--cyan-glow);
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--blue-glow);
    border: 2px solid rgba(0, 102, 255, 0.3);
    background: var(--darker-bg);
}

.map {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 255, 0.1));
    pointer-events: none;
    z-index: 1;
    border-radius: 0;
}

.map-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.info-card {
    background: rgba(26, 26, 26, 0.3);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 102, 255, 0.02) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 102, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.info-card:hover::after {
    opacity: 1;
    animation: glitch 0.3s ease-in-out;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--blue-glow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.info-card h3 p {
    color: var(--accent-color);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.more-soon {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.more-soon h3 {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: lowercase;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.more-soon:hover h3 {
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Partners Section */
.partners {
    background: transparent;
}

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

.partner-card {
    background: rgba(26, 26, 26, 0.3);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 102, 255, 0.02) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 102, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.partner-card:hover::after {
    opacity: 1;
    animation: glitch 0.3s ease-in-out;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--card-bg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.partner-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 0;
}

.ruoggis-logo {
    background: var(--card-bg) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ruoggis-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.3), rgba(0, 255, 255, 0.3));
    z-index: 1;
}

.ruoggis-letter {
    font-family: 'Arimo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--cyan-glow);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.partner-card:hover .ruoggis-logo {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
}

.partner-card:hover .ruoggis-letter {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--magenta-glow);
    transform: scale(1.1);
    animation: letterBounce 0.6s ease-in-out;
}

.rechtsmanufaktur-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.rechtsmanufaktur-letters {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--cyan-glow);
    transition: all 0.3s ease;
    transform: scale(1);
}

.partner-card:hover .rechtsmanufaktur-logo {
    transform: scale(1.1);
}

.partner-card:hover .rechtsmanufaktur-letters {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--magenta-glow);
    animation: letterBounce 0.6s ease-in-out;
}

@keyframes letterBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.partner-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
    word-wrap: normal;
    hyphens: none;
}

.partner-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

/* Sign Up Section */
.signup {
    background: transparent;
}

.signup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.signup-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: var(--cyan-glow);
}

.signup-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.signup-info p:last-of-type {
    margin-bottom: 2rem;
}

.ticket-info {
    margin-bottom: 2rem;
}

.ticket-type {
    background: rgba(26, 26, 26, 0.2);
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 1rem;
    border: none;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ticket-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 102, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.ticket-type h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ticket-type p {
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.ticket-type p:last-child {
    margin-bottom: 0;
}

/* VIP Ticket Styling */
.vip-ticket {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(0, 255, 255, 0.15));
    border: 2px solid rgba(255, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.vip-ticket:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.vip-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.vip-badge {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: vipPulse 2s infinite;
}

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

.vip-features {
    margin: 1.5rem 0;
}

.vip-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    transition: all 0.3s ease;
}

.vip-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.vip-feature i {
    color: #00ffff;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.vip-feature span {
    color: #fff;
    font-size: 0.95rem;
}

.vip-price {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.signup-form {
    background: rgba(26, 26, 26, 0.7);
    padding: 2rem;
    border-radius: 0;
    border: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(0, 102, 255, 0.02) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.01) 50%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.signup-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.signup-form:hover::after {
    opacity: 1;
    animation: glitch 0.3s ease-in-out;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Footer */
.footer {
    background: transparent;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: var(--cyan-glow);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--cyan-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.impressum-footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.impressum-footer-link:hover {
    color: var(--primary-color);
    text-shadow: var(--blue-glow);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(26, 26, 26, 0.9);
    margin: 5% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border: none;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 102, 255, 0.3);
    backdrop-filter: blur(15px);
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--accent-color);
    margin: 0;
}

.close {
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
    text-align: center;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: var(--cyan-glow);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000 !important;
        background-color: #000000 !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0.5rem;
        z-index: 9999;
        border: none;
        box-shadow: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .nav-menu.active {
        display: flex;
        background: #000000 !important;
        background-color: #000000 !important;
    }
    
    .nav-menu::before,
    .nav-menu::after {
        display: none !important;
    }
    
    .nav-menu .nav-link {
        margin: 0.1rem 0;
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        width: 90%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link.signup-btn {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: var(--dark-bg);
        box-shadow: var(--blue-glow);
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .nav-menu .nav-link.signup-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-logo-img {
        width: 280px;
        height: auto;
    }
    
    .hero::before {
        background-size: 200% auto;
    }
    
    .hero::after {
        background-size: 200% auto;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding-top: 0.25rem;
    }
    
    .nav-menu .nav-link {
        margin: 0.05rem 0;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .nav-menu .nav-link.signup-btn {
        padding: 0.6rem 1rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn-edelweiss {
        width: 30px;
        height: 30px;
    }
    
    .location-content,
    .signup-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .signup-info {
        order: 2;
    }
    
    .signup-form {
        order: 1;
        padding-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .partner-card h3 {
        font-size: 0.9rem;
    }
    
    .partner-card p {
        font-size: 0.8rem;
    }
    
    .rechtsmanufaktur-letters {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Fix for anchor links on mobile */
    html {
        scroll-padding-top: 140px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        width: 220px;
        height: auto;
    }
    
    .hero::before {
        background-size: 300% auto;
    }
    
    .hero::after {
        background-size: 300% auto;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-edelweiss {
        width: 25px;
        height: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
} 

/* Artists Section */
.artists {
    background: transparent;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 102, 255, 0.02) 2px, rgba(0, 102, 255, 0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 255, 0.01) 2px, rgba(0, 255, 255, 0.01) 4px);
    pointer-events: none;
    z-index: 1;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.artist-card {
    background: var(--card-bg);
    border-radius: 0;
    text-align: left;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.artist-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.artist-card:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 450px;
}

.artist-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 450px;
}

.artist-card:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 380px;
}

.artist-card:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 320px;
}

.artist-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 320px;
}

/* Specific image positioning for better display */
.artist-card:nth-child(2) .artist-image img {
    object-position: center center;
}

.artist-card:nth-child(4) .artist-image img {
    object-position: center 20%;
}



.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.artist-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.artist-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 102, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
}

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

.artist-card:hover::after {
    opacity: 1;
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
        opacity: 0.8;
    }
    40% {
        transform: translate(-2px, -2px);
        opacity: 0.9;
    }
    60% {
        transform: translate(2px, 2px);
        opacity: 0.8;
    }
    80% {
        transform: translate(2px, -2px);
        opacity: 0.9;
    }
    100% {
        transform: translate(0);
    }
}

.artist-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
}

.artist-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    z-index: 0;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%) contrast(1.2);
    transition: all 0.4s ease;
}

.artist-card:hover .artist-image img {
    filter: grayscale(0%) contrast(1.1) brightness(1.1);
    transform: scale(1.05);
}

.artist-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.artist-edelweiss {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.artist-card:hover .artist-edelweiss {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.artist-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.artist-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.artist-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.artist-time i {
    color: var(--accent-color);
}

.artist-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
}

.artist-genre {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
}

.artist-links {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.soundcloud-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.soundcloud-link:hover {
    background: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--cyan-glow);
}

.soundcloud-link i {
    font-size: 1.2rem;
}

.spotify-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.spotify-link:hover {
    background: #1DB954;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.5);
}

.spotify-link i {
    font-size: 1.2rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: #FF0000;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.youtube-link i {
    font-size: 1.2rem;
}

.no-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* Mobile responsive for artists */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .artist-card {
        min-height: 300px;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        padding: 0;
    }
    
    .artist-image {
        width: 100%;
        height: 100%;
        font-size: 2rem;
    }
    
    .artist-content {
        padding: 1.5rem;
    }
    
    .artist-card h3 {
        font-size: 1.5rem;
    }
} 

/* Impressum Styles */
.impressum-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.impressum-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.impressum-card {
    padding: 3rem;
}

.impressum-card h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: var(--blue-glow);
}

.impressum-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    text-shadow: var(--cyan-glow);
}

.impressum-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.impressum-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.impressum-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-shadow: var(--cyan-glow);
}

.impressum-back-link {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impressum-back-link:hover {
    color: var(--secondary-color) !important;
    text-shadow: var(--cyan-glow);
}

@media (max-width: 768px) {
    .impressum-section {
        padding: 2rem 0;
    }
    
    .impressum-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .impressum-card h2 {
        font-size: 1.5rem;
    }
    
    .impressum-card h3 {
        font-size: 1.1rem;
    }
    
    .impressum-card p {
        font-size: 1rem;
    }
} 

/* Audio Control Button */
.audio-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.audio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.audio-btn:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.8);
    color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
    transform: scale(1.1);
}

.audio-btn:active {
    transform: scale(0.95);
}

.audio-btn.unmuted {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.8);
    color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.audio-btn.unmuted:hover {
    background: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

/* Pulse animation for unmuted state */
.audio-btn.unmuted::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.4);
    animation: audioPulse 2s infinite;
}

@keyframes audioPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .audio-control {
        top: 15px;
        right: 80px; /* Position next to hamburger menu */
    }
    
    .audio-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* QR Code Section in Modal */
.qr-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
}

.qr-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.qr-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: fit-content;
    max-width: 100%;
}

#qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#qr-code-container img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.modal-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.qr-download-btn {
    background: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.qr-download-btn:hover {
    background: var(--magenta-glow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 30, 121, 0.4);
}

.qr-download-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .info-card h3 p {
        color: var(--accent-color);
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    .modal-content {
        margin: 2% auto;
        max-height: 96vh;
    }
    
    .modal-body {
        max-height: calc(96vh - 100px);
        padding: 1.5rem;
    }
    
    .qr-section { 
        margin-top: 1.5rem; 
        padding-top: 1.5rem; 
    }
    .qr-section h4 { font-size: 1.1rem; }
    .qr-section p { font-size: 0.85rem; }
    .qr-container { 
        padding: 0.8rem; 
        margin: 0.5rem 0;
    }
    #qr-code-container img { 
        width: 200px !important; 
        height: 200px !important; 
    }
    .qr-download-btn { 
        padding: 0.7rem 1.2rem; 
        font-size: 0.9rem; 
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .info-card h3 p {
        color: var(--accent-color);
        margin: 0;
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    .modal-content {
        margin: 1% auto;
        max-height: 98vh;
        width: 95%;
    }
    
    .modal-body {
        max-height: calc(98vh - 80px);
        padding: 1rem;
    }
    
    .qr-section { 
        margin-top: 1rem; 
        padding-top: 1rem; 
    }
    .qr-container { 
        padding: 0.6rem; 
        margin: 0.3rem 0;
    }
    #qr-code-container img { 
        width: 160px !important; 
        height: 160px !important; 
    }
    .qr-download-btn { 
        padding: 0.6rem 1rem; 
        font-size: 0.85rem; 
        margin-top: 0.8rem;
    }
}

/* Timetable Section */
.timetable {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.timetable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 30, 121, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timetable-container {
    position: relative;
    z-index: 2;
}

.timetable-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 30, 121, 0.1) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(255, 30, 121, 0.2) 100%);
}

.tab-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.tab-date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.timetable-content {
    position: relative;
}

.day-schedule {
    display: none;
    animation: fadeIn 0.5s ease;
}

.day-schedule.active {
    display: block;
}

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

.time-slot {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--magenta-glow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.time-slot:hover::before {
    transform: scaleX(1);
}

.time-slot:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.time-label {
    min-width: 120px;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 10px;
    margin-right: 1.5rem;
}

.artist-slot {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
}

.artist-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 30, 121, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-slot:hover::before {
    opacity: 1;
}

.artist-slot:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.artist-slot.lounge {
    border-left-color: var(--accent-color);
}

.artist-slot.lounge::before {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.artist-slot.open-deck {
    border-left-color: var(--magenta-glow);
}

.artist-slot.open-deck::before {
    background: linear-gradient(135deg, rgba(255, 30, 121, 0.1) 0%, rgba(255, 30, 121, 0.05) 100%);
}

.artist-slot.schwingen {
    border-left-color: var(--accent-color);
}

.artist-slot.schwingen::before {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.artist-slot.b2b {
    border-left-color: var(--magenta-glow);
    background: linear-gradient(135deg, rgba(255, 30, 121, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.artist-slot.b2b::before {
    background: linear-gradient(135deg, rgba(255, 30, 121, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 2;
}

.artist-type {
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timetable-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        flex: 1;
        min-width: 100px;
    }
    
    .tab-day {
        font-size: 1rem;
    }
    
    .tab-date {
        font-size: 0.8rem;
    }
    
    .time-slot {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .time-label {
        min-width: auto;
        margin-right: 0;
        text-align: center;
        font-size: 1rem;
    }
    
    .artist-slot {
        padding: 0.75rem 1rem;
    }
    
    .artist-name {
        font-size: 1.1rem;
    }
    
    .artist-type {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .timetable {
        padding: 2rem 0;
    }
    
    .timetable-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .time-slot {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }
    
    .time-label {
        font-size: 0.9rem;
        padding: 0.25rem;
    }
    
    .artist-slot {
        padding: 0.5rem 0.75rem;
    }
    
    .artist-name {
        font-size: 1rem;
    }
    
    .artist-type {
        font-size: 0.75rem;
    }
}