.body {
    background-color: black;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Bauer Bodoni Italic';
    src: url('../fonts/BauerBodoniOldstyleFigures RomanItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

.LosTrios_Logo {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; /* Zentriert vertikal - Logo auf gleicher HÃ¶he wie Blitze */
    position: relative;
    margin-bottom: 0;
    z-index: 2; /* Logo Ã¼ber den Blitzen */
}

.LosTrios_Logo::after {
    content: '';
    position: absolute;
    bottom: -10vh;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to bottom, transparent 0%, black 100%);
    pointer-events: none;
    z-index: 15;
}

.plektrum-wrapper {
    position: relative;
    width: clamp(300px, 50vw, 1200px);
    height: clamp(300px, 50vw, 1200px);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.plektrum-text {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 81%;
    text-align: center;
    z-index: 10;
    animation: pleckDownText 1.2s cubic-bezier(.55,0,.1,1) 2s forwards;
    opacity: 0;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

@keyframes shine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0 0;
    }
}


.plektrum-link {
    text-decoration: none; 
    color: #ffffff;
}

.plektrum-img {
    animation: pleckDown 1.2s cubic-bezier(.55,0,.1,1) forwards;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    opacity: 0;
}

.guitar-anim {
    position: absolute;
    width: clamp(75px, 15.5vw, 400px);
    height: auto;
    top: 15%;
    z-index: 5;
    pointer-events: none;
    user-select: none;
    transform-origin: bottom center;
    opacity: 0;
}

.guitar-left {
    left: 26%;
    animation:
        fallDownLeft 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallLeft 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
}

.guitar-right {
    right: 26%;
    animation:
        fallDownRight 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallRight 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
}

.no-intro .plektrum-img {
    animation: none;
    transform: translateY(0);
    opacity: 1;
}

.no-intro .plektrum-text {
    animation: none;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.no-intro .guitar-left {
    animation: none;
    top: 17%;
    opacity: 1;
    transform: translateX(30%) translateY(40%) rotate(-45deg);
}

.no-intro .guitar-right {
    animation: none;
    top: 17%;
    opacity: 1;
    transform: translateX(-30%) translateY(40%) rotate(45deg);
}

@keyframes pleckDown {
    0% {
        transform: translateY(-100vh);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pleckDownText {
    0% {
        transform: translate(-50%, -500%);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes fallDownLeft {
    0% {
        top: -50%;
        opacity: 0;
        transform: rotate(-90deg);
    }
    60%, 100% {
        top: 17%;
        opacity: 1;
        transform: rotate(-90deg);
    }
}

@keyframes fallDownRight {
    0% {
        top: -50%;
        opacity: 0;
        transform: rotate(90deg);
    }
    60%, 100% {
        top: 17%;
        opacity: 1;
        transform: rotate(90deg);
    }
}

@keyframes fallLeft {
    from {
        transform: rotate(-90deg);
    }
    to {
        transform: translateX(30%) translateY(40%) rotate(-45deg);
    }
}

@keyframes fallRight {
    from {
        transform: rotate(90deg);
    }
    to {
        transform: translateX(-30%) translateY(40%) rotate(45deg);
    }
}

@media (max-width: 768px) {
    .plektrum-wrapper {
        width: clamp(280px, 70vw, 500px);
        height: clamp(280px, 70vw, 500px);
    }
    
    .plektrum-text {
        left: 50%;
        top: 58.2%;
    }
    
    .guitar-anim {
        width: clamp(90px, 21vw, 235px);
    }

    .guitar-left {
    left: 27%;
    animation:
        fallDownLeft 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallLeft 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
    }

.guitar-right {
    right:27%;
    animation:
        fallDownRight 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallRight 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
}
}

@media (max-width: 480px) {
    .plektrum-wrapper {
        width: clamp(250px, 85vw, 400px);
        height: clamp(250px, 85vw, 400px);
    }
    
    .plektrum-text {
        left: 50%;
        top: 58.2%;
    }
    
    .guitar-anim {
        width: clamp(60px, 21.25vw, 100px);
    }
.guitar-left {
    left: 30%;
    animation:
        fallDownLeft 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallLeft 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
    }

.guitar-right {
    right:30%;
    animation:
        fallDownRight 1.2s cubic-bezier(.55,0,.1,1) 1s forwards,
        fallRight 0.7s cubic-bezier(.12,.95,.38,1.00) 3.6s forwards;
}
}

#lightningCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

@keyframes powerShake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    3% { transform: translate(-6px, -4px) rotate(-1.5deg); }
    6% { transform: translate(8px, -6px) rotate(2deg); }
    9% { transform: translate(-4px, 5px) rotate(-1.2deg); }
    12% { transform: translate(6px, -3px) rotate(1.8deg); }
    15% { transform: translate(-3px, 6px) rotate(-0.8deg); }
    18% { transform: translate(-7px, 3px) rotate(1.4deg); }
    21% { transform: translate(4px, 4px) rotate(-0.6deg); }
    24% { transform: translate(4px, -4px) rotate(1deg); }
    27% { transform: translate(-4px, 4px) rotate(-0.4deg); }
    30% { transform: translate(3px, 5px) rotate(0.6deg); }
    40% { transform: translate(-2px, -2px) rotate(-0.2deg); }
    50% { transform: translate(2px, 2px) rotate(0.4deg); }
    60% { transform: translate(-1px, 1px) rotate(-0.1deg); }
    70% { transform: translate(1px, -1px) rotate(0.2deg); }
    80% { transform: translate(-1px, 0px) rotate(0deg); }
    90% { transform: translate(0px, 1px) rotate(0deg); }
}

.power-shake {
    animation: powerShake 1s ease-out;
}


/* Monster im Hintergrund */
.monster-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2; /* Über dem Canvas, aber unter dem Logo */
    pointer-events: none;
    opacity: 1; /* Standardmäßig unsichtbar */
    transition: opacity 0.1s ease-out;
}

.monster-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den ganzen Bildschirm */
    object-position: center;
    filter: brightness(0.3) contrast(10.5); /* Dunkler und kontrastreicher */
}

/* Monster wird bei Flash sichtbar */
.monster-visible {
    opacity: 1;
}


/* Elektrisierender Effekt um die Gitarren */
.guitar-electric {
    position: relative;
}

.guitar-electric::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #00FFFF;
    border-radius: 50%;
    opacity: 0;
    animation: electricPulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px #00FFFF,
        0 0 40px #00FFFF,
        0 0 60px #00FFFF,
        inset 0 0 20px #00FFFF;
}

.guitar-electric::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    opacity: 0;
    animation: electricPulse 2s ease-in-out infinite 0.5s;
    box-shadow: 
        0 0 15px #FFFFFF,
        0 0 30px #FFFFFF;
}

@keyframes electricPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Sparks Effekt */
.guitar-sparks::before {
    animation: electricSparks 1.5s ease-out infinite;
}

@keyframes electricSparks {
    0% {
        opacity: 0;
        box-shadow: 
            0 0 5px #00FFFF,
            10px 10px 3px #FFFF00,
            -10px -10px 3px #FF00FF,
            15px -15px 3px #00FFFF,
            -15px 15px 3px #FFFFFF;
    }
    25% {
        opacity: 1;
        box-shadow: 
            0 0 15px #00FFFF,
            -15px 10px 5px #FFFF00,
            10px -10px 5px #FF00FF,
            -10px -15px 5px #00FFFF,
            20px 15px 5px #FFFFFF;
    }
    50% {
        opacity: 0.8;
        box-shadow: 
            0 0 25px #00FFFF,
            20px -10px 7px #FFFF00,
            -20px -5px 7px #FF00FF,
            5px -20px 7px #00FFFF,
            -5px 20px 7px #FFFFFF;
    }
    100% {
        opacity: 0;
        box-shadow: 
            0 0 10px #00FFFF,
            0 0 0px #FFFF00,
            0 0 0px #FF00FF,
            0 0 0px #00FFFF,
            0 0 0px #FFFFFF;
    }
}

        @import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Creepster&display=swap');
        .banner {
            position: relative;
            width: 95%;
            max-width: 1400px;
            background: linear-gradient(135deg, #4a0000 0%, #8b0000 50%, #5a0000 100%);
            border: 3px solid #2a0000;
            border-radius: 8px;
            padding: 25px 60px;
            box-shadow: 
                0 0 30px rgba(139, 0, 0, 0.6),
                inset 0 0 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            animation: light-flicker 7s infinite;
        }

        @keyframes light-flicker {
            0% { filter: brightness(1); }
            1.2% { filter: brightness(0.88); }
            2.5% { filter: brightness(1); }
            3.1% { filter: brightness(0.92); }
            4% { filter: brightness(1); }
            5.8% { filter: brightness(0.7); }
            6.2% { filter: brightness(0.85); }
            7% { filter: brightness(1); }
            12.3% { filter: brightness(0.93); }
            13% { filter: brightness(1); }
            18.7% { filter: brightness(1); }
            19.1% { filter: brightness(0.65); }
            19.4% { filter: brightness(0.8); }
            19.9% { filter: brightness(0.95); }
            20.5% { filter: brightness(1); }
            28.4% { filter: brightness(1); }
            29% { filter: brightness(0.75); }
            29.8% { filter: brightness(1); }
            35.2% { filter: brightness(0.9); }
            36% { filter: brightness(1); }
            42.1% { filter: brightness(1); }
            42.5% { filter: brightness(0.6); }
            42.7% { filter: brightness(0.72); }
            43.2% { filter: brightness(0.88); }
            44% { filter: brightness(1); }
            51.3% { filter: brightness(0.94); }
            52% { filter: brightness(1); }
            58.8% { filter: brightness(1); }
            59.2% { filter: brightness(0.78); }
            60% { filter: brightness(1); }
            67.5% { filter: brightness(1); }
            68.1% { filter: brightness(0.55); }
            68.3% { filter: brightness(0.68); }
            68.7% { filter: brightness(0.82); }
            69.5% { filter: brightness(1); }
            76.2% { filter: brightness(0.91); }
            77% { filter: brightness(1); }
            84.6% { filter: brightness(1); }
            85% { filter: brightness(0.73); }
            85.8% { filter: brightness(1); }
            92.3% { filter: brightness(0.87); }
            93% { filter: brightness(1); }
            100% { filter: brightness(1); }
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, 0.1) 2px,
                    rgba(0, 0, 0, 0.1) 4px
                );
            pointer-events: none;
            animation: flicker-light 0.15s infinite;
        }

        @keyframes flicker-light {
            0% { opacity: 1; }
            2% { opacity: 0.8; }
            4% { opacity: 1; }
            8% { opacity: 0.9; }
            10% { opacity: 1; }
            12% { opacity: 0.7; }
            14% { opacity: 1; }
            20% { opacity: 0.85; }
            22% { opacity: 1; }
            40% { opacity: 1; }
            42% { opacity: 0.6; }
            43% { opacity: 0.9; }
            45% { opacity: 1; }
            50% { opacity: 0.75; }
            52% { opacity: 1; }
            70% { opacity: 1; }
            72% { opacity: 0.8; }
            74% { opacity: 1; }
            80% { opacity: 0.9; }
            82% { opacity: 1; }
            90% { opacity: 0.7; }
            92% { opacity: 1; }
            100% { opacity: 1; }
        }

        .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 2.5s infinite;
            clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
            transform: translate(-2px, -2px);
            opacity: 0.8;
        }

        .glitch::after {
            animation: glitch-2 3s infinite;
            clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
            transform: translate(2px, 2px);
            opacity: 0.8;
        }

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

        @keyframes glitch-2 {
            0%, 100% {
                transform: translate(0);
                opacity: 0;
            }
            25% {
                transform: translate(2px, -2px);
                opacity: 0.7;
            }
            50% {
                transform: translate(-2px, 2px);
                opacity: 0;
            }
            75% {
                transform: translate(2px, 2px);
                opacity: 0.7;
            }
        }

        .banner::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
            pointer-events: none;
        }

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

        .content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .label {
            font-family: 'Metal Mania', cursive;
            font-size: 1.4rem;
            color: #ff6b6b;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 8px;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.8),
                0 0 10px rgba(255, 0, 0, 0.5);
            animation: flicker 3s infinite alternate;
        }

        @keyframes flicker {
            0%, 100% {
                opacity: 1;
                text-shadow: 
                    2px 2px 4px rgba(0, 0, 0, 0.8),
                    0 0 10px rgba(255, 0, 0, 0.5);
            }
            50% {
                opacity: 0.8;
                text-shadow: 
                    2px 2px 4px rgba(61, 3, 3, 0.8),
                    0 0 20px rgba(255, 0, 0, 0.8);
            }
        }

        .title {
            font-family: 'Creepster', cursive;
            font-size: 3rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 6px;
            margin-bottom: 8px;
            text-shadow: 
                3px 3px 6px rgba(0, 0, 0, 0.9),
                0 0 20px rgba(200, 0, 0, 0.7),
                0 0 40px rgba(139, 0, 0, 0.5);
            line-height: 1.1;
        }

        .date {
            font-family: 'Metal Mania', cursive;
            font-size: 1.6rem;
            color: #ffcccc;
            text-transform: uppercase;
            letter-spacing: 8px;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.8),
                0 0 15px rgba(139, 0, 0, 0.6);
            padding-top: 8px;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            margin-top: 8px;
            display: inline-block;
        }

        .skulls {
            position: absolute;
            font-size: 3rem;
            opacity: 0.15;
            color: #2a0000;
        }

        .skull-left {
            top: 20px;
            left: 30px;
            transform: rotate(-15deg);
        }

        .skull-right {
            bottom: 20px;
            right: 30px;
            transform: rotate(15deg);
        }

        @media (max-width: 768px) {
            .banner {
                padding: 20px 30px;
                width: 92%;
            }
            
            .label {
                font-size: 1rem;
                letter-spacing: 2px;
                margin-bottom: 6px;
            }
            
            .title {
                font-size: 1.8rem;
                letter-spacing: 3px;
                margin-bottom: 6px;
            }
            
            .date {
                font-size: 1rem;
                letter-spacing: 4px;
                padding-top: 6px;
                margin-top: 6px;
            }

            .skulls {
                font-size: 2rem;
            }

            .skull-left {
                top: 10px;
                left: 15px;
            }

            .skull-right {
                bottom: 10px;
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .banner {
                padding: 15px 20px;
                width: 90%;
            }
            
            .label {
                font-size: 0.85rem;
                letter-spacing: 1px;
            }
            
            .title {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
            
            .date {
                font-size: 0.85rem;
                letter-spacing: 3px;
            }

            .skulls {
                font-size: 1.5rem;
            }

            .skull-left {
                top: 8px;
                left: 10px;
            }

            .skull-right {
                bottom: 8px;
                right: 10px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .banner {
                padding: 22px 50px;
            }
            
            .label {
                font-size: 1.2rem;
                letter-spacing: 3px;
            }
            
            .title {
                font-size: 2.4rem;
                letter-spacing: 5px;
            }
            
            .date {
                font-size: 1.3rem;
                letter-spacing: 6px;
            }
        }
.banner-container {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    top: 68vh;
    left: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    pointer-events: none;
}

.banner-container.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


        @import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Creepster&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

/* ============================================
   NEWS SECTION - IMPROVED RESPONSIVE
   ============================================ */

.news-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    transform: scale(0.85);
    transform-origin: top center;
    position: relative;
}

.news-card {
    position: relative;
    width: 100%;
    max-width: 1400px;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 50%, #1a0000 100%);
    border: 3px solid #4a0000;
    border-radius: 15px;
    padding: 50px;
    margin-top: 50px;
    box-shadow: 
        0 10px 40px rgba(139, 0, 0, 0.5),
        inset 0 0 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.news-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    animation: cardPulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes cardPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 3px solid rgba(139, 0, 0, 0.5);
}

.header-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 20px auto 0;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.card-title {
    font-family: 'Creepster', cursive;
    font-size: 3.5rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.8),
        0 0 40px rgba(139, 0, 0, 0.6);
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #4a0000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-10px);
    box-shadow: 
        0 15px 40px rgba(255, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 0, 0, 0.1);
}

.news-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.news-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(139, 0, 0, 0.1) 20px,
            rgba(139, 0, 0, 0.1) 40px
        );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 2;
}

/* Album Cover ist quadratisch — Mitte passt gut */
.news-image--album {
    object-position: center center;
}

/* Studio/Event-Bilder: oben anfangen */
.news-image--studio {
    object-position: center top;
}

.news-category {
    position: relative;
    z-index: 3;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-family: 'Metal Mania', cursive;
    font-size: 0.95rem;
    color: #ff9999;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.news-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.news-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.news-link:hover {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Screens */
@media (min-width: 1400px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Tablets & Medium Screens */
@media (max-width: 1200px) {
    .news-card {
        padding: 40px;
    }

    .card-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 15px;
    }

    .news-card {
        padding: 30px;
    }

    .card-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .card-header {
        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image-container {
        height: 240px;
    }

    .news-category {
        font-size: 1rem;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 1.3rem;
    }

    .news-description {
        font-size: 1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .news-section {
        padding: 50px 10px;
    }

    .news-card {
        padding: 20px;
    }

    .card-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .card-header {
        margin-bottom: 30px;
    }

    .header-line {
        width: 100px;
    }

    .news-image-container {
        height: 220px;
    }

    .news-category {
        font-size: 0.9rem;
        padding: 6px 15px;
    }

    .news-content {
        padding: 18px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .news-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .news-link {
        font-size: 1rem;
    }
}
/* =============================================
   NEWS IMAGE LIGHTBOX
   ============================================= */

/* Hover-Hinweis auf News-Bildern */
.news-image-container {
    cursor: pointer;
}

.news-image-container::after {
    content: '🔍';
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 1.3rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.8));
}

.news-image-container:hover::after {
    opacity: 1;
}

.news-image-container:hover .news-image {
    transform: scale(1.04);
    transition: transform 0.35s ease;
}

.news-image {
    transition: transform 0.35s ease;
}

/* Lightbox Overlay */
.news-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    animation: lbFadeIn 0.25s ease;
}

.news-lightbox-overlay.active {
    display: flex;
}

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

.news-lightbox-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: lbScaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lbScaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.news-lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid rgba(139, 0, 0, 0.7);
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.4), 0 0 80px rgba(0,0,0,0.8);
    border-radius: 4px;
    display: block;
}

.news-lightbox-caption {
    font-family: 'Metal Mania', cursive;
    font-size: 0.95rem;
    color: #cc3333;
    text-align: center;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.news-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    background: #8b0000;
    border: 2px solid #cc0000;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.news-lightbox-close:hover {
    background: #cc0000;
    transform: scale(1.15) rotate(90deg);
}

/* =============================================
   GALLERY SECTION - LOS TRIOS STYLE
   ============================================= */
.gallery-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 20px 30px;
    position: relative;
}

.gallery-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
}

/* ============================================
   HEADER
   ============================================ */

.gallery-header {
    text-align: center;
    margin-bottom: 35px;
}

.gallery-title {
    font-family: 'Creepster', cursive;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 12px;
    text-shadow:
        3px 3px 6px rgba(0,0,0,0.9),
        0 0 25px rgba(255,0,0,0.7);
}

.gallery-subtitle {
    font-family: 'Metal Mania', cursive;
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    color: #ff6b6b;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.header-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    margin: 0 auto;
    margin-bottom: -20px;
}

/* ============================================
   FILTER BUTTONS
   ============================================ */

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.filter-btn {
    font-family: 'Metal Mania', cursive;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
    border: 2px solid #4a0000;
    color: #ff6b6b;
    padding: 9px 20px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: #ff0000;
    color: #ff0000;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4a0000 0%, #8b0000 100%);
    border-color: #ff0000;
    color: #ffffff;
}

/* ============================================
   GRID
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 25px;
}

/* Item Base */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #2a0000;
    background: #000;
    transition: all 0.35s ease;
}

/* Slightly reduce large variants */

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-wide {
    grid-column: span 3;
}

.gallery-item-tall {
    grid-row: span 2;
}

/* Images */

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0,0,0,0.75) 70%,
        rgba(139,0,0,0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255,0,0,0.4);
}

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

.gallery-item-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
    font-weight: bold;
}

.gallery-item-desc {
    font-size: 0.9rem;
    color: #ffcccc;
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 768px) {

    .gallery-section {
        padding: 50px 15px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}
/* ============================================
   FILTER BUTTONS


/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid #2a0000;
    transition: all 0.4s ease;
    background: #000000;
}

/* Different Grid Sizes */
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item-tall {
    grid-row: span 2;
}

/* ============================================
   PLACEHOLDERS
   ============================================ */

/* Real Gallery Images */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(139, 0, 0, 0.05) 20px,
            rgba(139, 0, 0, 0.05) 40px
        );
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: grayscale(1) brightness(0.3);
    z-index: 1;
}

.placeholder-text {
    font-family: 'Metal Mania', cursive;
    color: #4a0000;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}

/* Video Placeholder Styling */
.gallery-video {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0000 100%);
}

.gallery-video .placeholder-icon {
    font-size: 5rem;
    color: #ff0000;
    filter: none;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #ff0000;
    z-index: 2;
}

/* ============================================
   OVERLAY EFFECTS
   ============================================ */

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(139, 0, 0, 0.95) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 
        0 15px 40px rgba(255, 0, 0, 0.5),
        inset 0 0 30px rgba(255, 0, 0, 0.2);
}

.gallery-info {
    width: 100%;
}

.gallery-item-title {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.gallery-item-desc {
    color: #ffcccc;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */

.gallery-load-more {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.load-more-btn {
    font-family: 'Metal Mania', cursive;
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 100%);
    border: 3px solid #8b0000;
    color: #ff0000;
    padding: 14px 30px;
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.load-more-btn:hover::before {
    width: 400px;
    height: 400px;
}

.load-more-btn:hover {
    border-color: #ff0000;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(255, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 0, 0, 0.3);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.5rem;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   SEE ALL GALLERY LINK
   ============================================ */

.gallery-see-all {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.gallery-see-all-link {
    font-family: 'Metal Mania', cursive;
    background: transparent;
    border: 2px solid #8b0000;
    color: #ff6b6b;
    padding: 12px 30px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.gallery-see-all-link:hover {
    border-color: #ff0000;
    color: #ff0000;
    background: rgba(139,0,0,0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.2);
}



/* Large Tablets */
@media (max-width: 1024px) {
    .gallery-title {
        font-size: 3.5rem;
        letter-spacing: 8px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 18px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-title {
        font-size: 2.8rem;
        letter-spacing: 5px;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item-title {
        font-size: 1.2rem;
    }

    .gallery-item-desc {
        font-size: 0.95rem;
    }

    .load-more-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 10px;
    }

    .gallery-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .gallery-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .gallery-header {
        margin-bottom: 35px;
    }

    .gallery-filter {
        gap: 8px;
        margin-bottom: 35px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .placeholder-text {
        font-size: 0.95rem;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-item-title {
        font-size: 1.1rem;
    }

    .gallery-item-desc {
        font-size: 0.9rem;
    }

    .load-more-btn {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .btn-icon {
        font-size: 1.2rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .gallery-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .gallery-subtitle {
        font-size: 0.9rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* ============================================
   FILTER ANIMATION (for JavaScript)
   ============================================ */

.gallery-item.hidden {
    display: none;
}

.gallery-item.fade-in {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ========== NAVIGATION BAR — Index scroll-reveal override ========== */
/* navbar.css handles the base design; here we hide it until the user scrolls */
.navbar {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    pointer-events: none;
}

.navbar.navbar-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ========== END NAVIGATION BAR ========== */


/* ============================================
   FOOTER SECTION - LOS TRIOS STYLE
   Add this CSS to style.css
   ============================================ */

.site-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 50%, #0a0000 100%);
    border-top: 3px solid #4a0000;
/* Zeile 2027 - weniger Padding oben/unten */
padding: 45px 20px 20px;

/* Zeile 2028 - weniger Abstand nach oben */
    overflow: hidden;
    box-shadow: 
        0 -10px 40px rgba(139, 0, 0, 0.5),
        inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.03) 0%, transparent 70%);
    animation: footerPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes footerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   FOOTER TOP SECTION
   ============================================ */

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Creepster', cursive;
    font-size: 1.3rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 0, 0, 0.6);
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-logo-small {
    width: 55px;
    height: 55px;
    opacity: 0.3;
    filter: grayscale(1) brightness(0.5);
    transition: all 0.3s ease;
}

.footer-logo-small:hover {
    opacity: 0.6;
    filter: grayscale(0) brightness(1);
}

.footer-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   FOOTER LINKS
   ============================================ */

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

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #ff9999;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8b0000;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

/* ============================================
   SOCIAL MEDIA LINKS
   ============================================ */

/* ============================================
   FOOTER SOCIAL MEDIA ICONS
   ============================================ */

.social-link a {
    text-decoration: none;
    color: inherit;
}

.social-link a:hover {
    text-decoration: none;
    color: #ff6b6b;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    text-decoration: none;
}

.social-link > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #4a0000;
    background: rgba(0, 0, 0, 0.4);
    color: #cccccc;
    font-family: 'Metal Mania', cursive;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.social-link > div img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover > div {
    border-color: #ff0000;
    background: rgba(139, 0, 0, 0.2);
    color: #ff6b6b;
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.social-link:hover > div img {
    filter: brightness(1.2);
}
/* ============================================
   NEWSLETTER FORM
   ============================================ */

.footer-newsletter-text {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.newsletter-input {
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #4a0000;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.newsletter-button {
    padding: 10px 25px;
    background: linear-gradient(135deg, #4a0000 0%, #8b0000 100%);
    border: 2px solid #8b0000;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Metal Mania', cursive;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/*
.newsletter-button:hover {
    background: linear-gradient(135deg, #8b0000 0%, #ff0000 100%);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 
        0 6px 20px rgba(255, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 0, 0, 0.3);
}
*/

/* ============================================
   FOOTER DIVIDER
   ============================================ */

.footer-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    margin: 40px 0;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* ============================================
   FOOTER BOTTOM SECTION
   ============================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 25px;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    color: #999999;
    font-size: 0.85rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-family: 'Metal Mania', cursive;
    color: #8b0000;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal a {
    color: #999999;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.footer-legal a:hover {
    color: #ff6b6b;
}

.footer-separator {
    color: #4a0000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-title {
        font-size: 1.6rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 25px;
        margin-top: 80px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .footer-description,
    .footer-newsletter-text {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-skull {
        font-size: 3rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .site-footer {
        padding: 50px 15px 20px;
        margin-top: 60px;
    }

    .footer-top {
        gap: 30px;
    }

    .footer-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .footer-description,
    .footer-newsletter-text,
    .footer-links a {
        font-size: 0.9rem;
    }

    .social-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .social-icon {
        font-size: 1.3rem;
    }

    .newsletter-input,
    .newsletter-button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .footer-copyright p,
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .footer-subtitle {
        font-size: 0.75rem;
    }

    .footer-skull {
        font-size: 2rem;
        opacity: 0.05;
    }

    .footer-skull-left {
        bottom: 10px;
        left: 15px;
    }

    .footer-skull-right {
        top: 30px;
        right: 15px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .footer-title {
        font-size: 1.2rem;
    }

    .footer-legal {
        font-size: 0.8rem;
        gap: 10px;
    }
}

/* ============================================
   BOTTOM COPYRIGHT BAR - ULTRA THIN
   ============================================ */

.bottom-copyright {
    position: relative;
    width: 100%;
    background: #000000;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.bottom-copyright-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #4a0000 10%, 
        #8b0000 30%, 
        #ff0000 50%, 
        #8b0000 70%, 
        #4a0000 90%, 
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px lab(53.23% 80.11 67.22 / 0.6);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
    }
}

.bottom-copyright-content {
    padding: 12px 20px;
    text-align: center;
    background: linear-gradient(135deg,53.23% 80.11 67.22 / 0.6, #efe6e6 50%, #c29393 100%);
}

.bottom-copyright-content p {
    margin: 0;
    color: white;
    font-size: 0.35rem;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.bottom-copyright-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.bottom-copyright-content a:hover {
    color: #5904c1;
    text-shadow: 0 0 8px rgba(51, 11, 111, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .bottom-copyright-content {
        padding: 10px 15px;
    }
    
    .bottom-copyright-content p {
        font-size: 0.4rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .bottom-copyright-content {
        padding: 8px 10px;
    }
    
    .bottom-copyright-content p {
        font-size: 0.1rem;
    }
}


.bottom-copyright-content p {
    font-size: 1.1rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.5px;
    font-family: Arial, sans-serif;
}

.bottom-copyright-content a {
    color: rgba(251, 70, 70, 0.768);
    font-weight: normal;
    text-decoration: none;
}

.bottom-copyright-content a:hover {
    color: #ff6b6b;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

/* Nebel-Übergang: unten wird das Monster ins Schwarz gefaded */
.monster-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.85) 95%,
        #000000 100%
    );
    pointer-events: none;
    z-index: 3;
}