/* Grundlegendes Styling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    font-family: 'Arial', sans-serif;
}

/* Hintergrundbild mit Parallax-Effekt */
body {
    background: none;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    transition: background-position 0.2s ease;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Taschenlampen-Effekt mit sanftem Start */
.container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0) 150px, rgba(0, 0, 0, 0.3) 400px);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    animation: fadeInDarkness 3s ease-in forwards;
}

/* Bilder */
.container img {
    height: auto;
    width: auto;
    max-width: 80vw;
    filter: brightness(40%) contrast(120%);
    animation: fadeFlare 2s infinite alternate ease-in-out;
}

/* Fade-in und Fade-out Effekt für das Hauptlogo */
.container .large {
    max-height: 65vh;
    width: auto;
    filter: drop-shadow(0px 6px 15px rgba(0, 0, 0, 0.9));
    animation: fadeInOut 3s infinite alternate ease-in-out;
}

/* Spezifische Anpassungen für sib-font.png */
.container .sib-font {
    height: auto;
    width: auto;
    max-width: 60vw;
    max-height: 10vh;
    animation: fadeFlare 2s infinite alternate ease-in-out, glitch1 2.7s infinite ease-in-out;
}

/* Spezifische Anpassungen für anthro.png */
.container .anthro {
    height: auto;
    width: auto;
    max-width: 60vw;
    max-height: 10vh;
    margin-bottom: 50px;
    animation: fadeFlare 2s infinite alternate ease-in-out, glitch2 3.3s infinite ease-in-out;
}

/* Navigation - Ersetze den kompletten .nav Bereich in style.css */
.nav {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}

.nav a {
    color: #ff0000;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.7);
}

.nav a:hover {
    color: #ff3333;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.9);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

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

/* Burger Menu Styles */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 200;
    flex-direction: column;
    width: 30px;
    height: 21px;
    justify-content: space-between;
    align-items: center;
}

.burger-line {
    width: 30px;
    height: 3px;
    background-color: #ff0000;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    border-radius: 2px;
    display: block;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .burger-menu {
        top: 20px;
        right: 15px;
        width: 32px;
        height: 23px;
    }
    
    .burger-line {
        width: 32px;
    }
}

/* Mobile Navigation Overlay */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
   color: #ff0000;
   text-decoration: none;
   font-size: 2rem;
   text-transform: uppercase;
   letter-spacing: 3px;
   text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
   transition: all 0.3s ease;
   padding: 10px;
   border: 2px solid transparent;
   border-radius: 5px;
}

.nav-mobile a:hover {
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 0, 0, 1);
    border-color: rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.1);
}

/* Close Button in der mobilen Navigation verstecken */
.nav-close {
    display: none;
}

@media (max-width: 768px) {
    /* Desktop Navigation verstecken */
    .nav {
        display: none !important;
    }
    
    /* Mobile Navigation zeigen */
    .burger-menu {
        display: flex;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    /* Bestehende mobile Styles beibehalten */
    .grid-items {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .band-content {
        flex-direction: column;
        padding: 20px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    
    .band-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .sold-out-stamp {
        font-size: 20px;
        padding: 8px 15px;
    }
    
    .video-feature {
        max-width: 95%;
        margin: 15px auto;
    }
    
    .album-container {
        flex-direction: column;
    }
    
    .album-cover, .album-info {
        max-width: 100%;
    }
    
    .album-info {
        padding: 20px;
    }
    
    .album-title {
        font-size: 1.5rem;
    }
    
    .album-release {
        font-size: 1rem;
    }
    
    .album-presale-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    .cookie-banner-content {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .cookie-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-mobile a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .burger-menu {
        top: 20px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .nav-mobile a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .burger-menu {
        top: 20px;
        right: 15px;
    }
}

/* Section Styling - gemeinsam für Tour, Merch, Band */
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    animation: glitch1 3s infinite ease-in-out;
}

/* Grid Layout für Karten */
.grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    padding: 0 20px;
}

/* Card Styling - gemeinsames Format für Tour und Merch */
.card {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.7);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,0,0,0), rgba(255,0,0,1), rgba(255,0,0,0));
    animation: glowLine 3s infinite ease-in-out;
}

.card-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ff0000;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.card-detail {
    font-size: 1rem;
    font-style: italic;
    color: #cccccc;
}

.card-image {
    width: 100%;
    height: 180px;
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.7) contrast(1.1);
}

.card:hover .card-image img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.2);
}

/* Neue Styling für Veranstaltungslinks */
.event-link {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 15px;
    align-self: center;
    width: 80%;
}

.event-link:hover {
    background: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Sold Out Stempel */
.sold-out-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 28px;
    font-weight: 900;
    padding: 10px 20px;
    border: 3px solid white;
    border-radius: 10px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    animation: pulseSoldOut 2s infinite alternate;
}

/* Kaufen-Button für Merch */
.card-button {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid #ff0000;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 15px;
    align-self: center;
    width: 80%;
}

.card-button:hover {
    background: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Band Section Styles */
.band-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: calc(100% - 40px);
    margin: 0 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 30px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.band-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,0,0,0), rgba(255,0,0,1), rgba(255,0,0,0));
    animation: glowLine 3s infinite ease-in-out;
}

.band-image {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.band-image img {
    width: 100%;
    height: auto;
    filter: brightness(0.7) contrast(1.2);
    transition: filter 0.3s ease;
}

.band-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.band-description {
    line-height: 1.6;
    color: #cccccc;
    text-align: justify;
}

.band-members {
    margin-top: 20px;
}

.band-member {
    margin-bottom: 10px;
}

.member-name {
    color: #ff0000;
    font-weight: 600;
}

.member-instrument {
    color: #999999;
    font-style: italic;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: 30px 0;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.15);
}

.social-icons img {
    width: 40px;
    height: 40px;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    width: 100%;
}

/* Video Styling */
.video-feature {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    position: relative;
    z-index: 2;
}

.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    animation: fadeFlare 3s infinite alternate ease-in-out, glitch1 8s infinite ease-in-out;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,0,0,0), rgba(255,0,0,1), rgba(255,0,0,0));
    animation: glowLine 3s infinite ease-in-out;
    z-index: 1;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.3);
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
    filter: contrast(110%) brightness(90%);
}

/* Video Placeholder */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.3);
    text-align: center;
}

.placeholder-content h3 {
    color: #ff0000;
    margin-bottom: 15px;
}

.placeholder-content p {
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 300px;
}

/* Album Section Styling */
.album-feature {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    position: relative;
    z-index: 2;
}

.album-container {
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    animation: fadeFlare 3s infinite alternate ease-in-out, glitch1 8s infinite ease-in-out;
}

.album-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,0,0,0), rgba(255,0,0,1), rgba(255,0,0,0));
    animation: glowLine 3s infinite ease-in-out;
    z-index: 1;
}

.album-cover {
    flex: 1;
    position: relative;
    max-width: 50%;
}

/* Wichtig: Entfernt den Standard-Filter für das Album-Cover */
.album-cover img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
    filter: none !important;
    max-width: 100%;
    max-height: 100%;
}

.album-container:hover .album-cover img {
    transform: scale(1.05);
}

.album-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.album-badge {
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 3px;
    animation: pulseBadge 2s infinite alternate;
}

.album-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff0000;
    text-transform: uppercase;
    animation: glitch1 3s infinite ease-in-out;
}

.album-release {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.album-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #ffffff;
}

.album-presale-button {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255, 0, 0, 0.3);
    border: 2px solid #ff0000;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    align-self: flex-start;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.album-presale-button:hover {
    background: rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

/* Cookie Consent Modal (zentriert) */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner-content {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #ff0000;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.cookie-text {
    margin-bottom: 25px;
    text-align: left;
}

.cookie-text h3 {
    color: #ff0000;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    text-align: center;
}

.cookie-text p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #cccccc;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border: 2px solid #ff0000;
    background: rgba(255, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn:hover {
    background: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.cookie-btn.primary {
    background: rgba(255, 0, 0, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cookie-btn.primary:hover {
    background: rgba(255, 0, 0, 0.8);
}

.cookie-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #999;
    font-size: 0.85rem;
    padding: 8px 20px;
    font-weight: 400;
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Cookie Settings Styles */
.cookie-category {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.cookie-category h4 {
    color: #ff0000;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #cccccc;
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
    border: 2px solid #666;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff0000;
    border-color: #ff0000;
}

input:focus + .slider {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

input:disabled + .slider {
    background-color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.slider:after {
    content: 'AUS';
    color: white;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 70%;
    font-size: 10px;
    font-family: Verdana, sans-serif;
}

input:checked + .slider:after {
    content: 'EIN';
    left: 30%;
}

input:disabled + .slider:after {
    content: 'AKTIV';
    left: 50%;
}

.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.3);
    border: 1px solid #ff0000;
    color: white;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: none;
}

.cookie-settings-btn:hover {
    background: rgba(255, 0, 0, 0.5);
}

.cookie-settings-btn.show {
    display: block;
}

/* Animationen */
@keyframes fadeFlare {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}

@keyframes fadeInOut {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes glitch1 {
    0%, 85% { opacity: 1; transform: translate(0, 0); }
    86%, 88% { opacity: 0.9; transform: translate(1px, -1px); }
    89%, 92% { opacity: 1; transform: translate(-1px, 1px); }
    93%, 95% { opacity: 0.9; transform: translate(2px, 0); }
    96%, 100% { opacity: 1; transform: translate(-2px, -2px); }
}

@keyframes glitch2 {
    0%, 80% { opacity: 1; transform: translate(0, 0); }
    81%, 83% { opacity: 0.9; transform: translate(-1px, 2px); }
    84%, 87% { opacity: 1; transform: translate(1px, -2px); }
    88%, 90% { opacity: 0.9; transform: translate(-2px, 1px); }
    91%, 100% { opacity: 1; transform: translate(2px, -1px); }
}

@keyframes fadeInDarkness {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes glowLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulseSoldOut {
    0% { opacity: 0.7; transform: translate(-50%, -50%) rotate(-25deg) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) rotate(-25deg) scale(1.05); }
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .grid-items {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .nav {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 30px;
        padding: 20px 0;
        background-color: rgba(0, 0, 0, 0.3);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
    }
    
    .nav a {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .band-content {
        flex-direction: column;
        padding: 20px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    
    .band-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .sold-out-stamp {
        font-size: 20px;
        padding: 8px 15px;
    }
    
    .video-feature {
        max-width: 95%;
        margin: 15px auto;
    }
    
    .album-container {
        flex-direction: column;
    }
    
    .album-cover, .album-info {
        max-width: 100%;
    }
    
    .album-info {
        padding: 20px;
    }
    
    .album-title {
        font-size: 1.5rem;
    }
    
    .album-release {
        font-size: 1rem;
    }
    
    .album-presale-button {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
    }
    
    .cookie-banner-content {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .cookie-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}