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

/* =========================
   COLORS
========================= */
:root {
    --blue: #0A1F44;
    --gold: #D4AF37;
    --light: #f5f7fa;
    --text: #222;
}

/* =========================
   BODY
========================= */
body {
    font-family: Arial, sans-serif;
    background: #0A1F44; /* dein blau */
    color: var(--text);
    padding-top: 100px;


}


/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   HEADER – PREMIUM CLEAN
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 100000;

    background: linear-gradient(
        to bottom,
        rgba(10,31,68,0.95),
        rgba(10,31,68,0.6),
        transparent
    );

    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* NAV CONTAINER */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
}




/* LOGO */

.header .container {
    max-width: none;
    width: 100%;
    padding-left: 40px;   /* 👈 Abstand links */
    padding-right: 400px;
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;

    letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);

    transition: 0.3s;
}

.nav-links a:hover {
    color: #FFD700;

    text-shadow:
        0 0 8px gold,
        0 0 20px rgba(255,215,0,0.5);
}


/* HOVER */
.nav-links a:hover {
    color: var(--gold);
}

/* GOLD UNDERLINE */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, gold, white, gold);
    transition: 0.3s;
}

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

/* SEARCH */
.header-search {
    margin-left: 150px;
}

#searchInput {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212,175,55,0.3);

    color: white;
}


#searchInput:focus {
    width: 220px;
    background: rgba(0,0,0,0.8);
}


/* ANIMATION */
@keyframes goldFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}


.logo a {
    font-size: 22px;
    font-weight: 900;
    color: #FFD700;

    letter-spacing: 2px;

    text-shadow:
        0 0 10px rgba(255,215,0,0.6),
        0 0 20px rgba(255,215,0,0.4);
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}



.sub-menu {
    position: relative;


    margin-top: clamp(80px, 15vh, 180px);


    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 50px); /* 🔥 dynamischer Abstand */

    z-index: 4;
}

/* LINKS */
.sub-menu a {
    font-size: 30px;
    text-decoration: none;
    color: var(--gold);

    position: relative;

    text-shadow:
        0 4px 12px rgba(0,0,0,0.95),   /* 🔥 tiefer schwarzer Schatten */
        0 0 10px rgba(0,0,0,0.9),      /* 🔥 zusätzlicher dunkler Glow */
        0 0 12px rgba(212,175,55,0.6); /* 🔥 goldener Glow */

    transition: 0.3s;
}

/* HOVER */
.sub-menu a:hover {
    color: #fff;

    text-shadow:
        0 0 15px gold,
        0 0 30px gold,
        0 0 60px rgba(255,215,0,0.8);
}

/* UNTERSTRICH */
.sub-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;

    background: linear-gradient(90deg, gold, white, gold);
    transition: 0.3s;
}

.sub-menu a:hover::after {
    width: 100%;
}




.sub-menu::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;

    background: linear-gradient(90deg, transparent, gold, transparent);

    opacity: 0.6;
}




/* =========================
   VIDEO GRID
========================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}



.video-card:hover {
    transform: scale(1.03);
    z-index: 2;
}

/* THUMB */
.video-thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #222, #444);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.play {
    font-size: 30px;
    background: rgba(0,0,0,0.6);
    padding: 10px 14px;
    border-radius: 50%;
}



/* Thumbnail */
.video-thumb img {
    width: 100%;
    border-radius: 10px;



}

/* Preview Video (versteckt) */
.preview-video video {
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity;
}

.video-card:hover .preview-video video {
    opacity: 1;
}

.video-thumb {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.preview-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 120%;
    height: 120%;

    transform: translate(-50%, -50%);
    border: none;
}



.video-card:hover {
    z-index: 9999;

    border: 1px solid rgba(255,215,0,1);

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.9),
        0 0 30px rgba(255,215,0,0.8),
        0 0 80px rgba(255,215,0,0.5);
}



/* Video liegt HINTER dem Thumbnail */
.preview-video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Thumbnail liegt DRÜBER */
.video-thumb {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}



/* TEXT */
.video-info {
    position: relative;
    z-index: 10;   /* 👈 über allem */
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.video-info small {
    opacity: 0.7;
    font-size: 12px;
}

.video-info h3 {
    font-size: 16px;
    margin-top: 5px;
}



.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;

    z-index: 10;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.4),
        transparent
    );
}
.video-info h3 {
    font-size: 18px;
    color: white;
    font-weight: bold;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.9);
}
.video-card:hover .video-info {
    transform: translateY(-10px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumb {
    opacity: 0;  
}

.video-card:hover {
    transform: scale(1.15) translateY(-10px);  /* 🔥 weniger aggressiv */
}

/* =========================
   HERO (NEU KOMPLETT)
========================= */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    transform: translate(-50%, -50%);

    object-fit: cover;      /* 🔥 Kino Crop */
    object-position: center center;

    filter: brightness(0.85);
}



.hero {
    position: relative;
    width: 100%;
    height: 75vh;          /* 🔥 voller Screen */
    min-height: 600px;      /* fallback */
    overflow: hidden;
}

/* VIDEO */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100%;

    transform: translate(-50%, -50%) scale(1.05);

    animation: cinemaZoom 18s ease-in-out infinite alternate;
    filter: brightness(0.9) contrast(1.1);
    border: none;
}

/* CINEMA ZOOM */
@keyframes cinemaZoom {
    0% {
        transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 20%,
        rgba(0,0,0,0.4) 55%,
        rgba(0,0,0,0.1) 100%
    );

    z-index: 2;

    pointer-events: none; /* 🔥 verhindert blockieren */
}

/* CONTENT */
.hero-content {
    position: absolute;
    left: 60px;
    bottom: clamp(60px, 10vh, 120px);

    z-index: 3;
    max-width: 500px;

    color: white;
}


.hero-overlay {
    pointer-events: none;
}

.video-consent {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.hero-media iframe {
    pointer-events: auto;
}
/* TITEL */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;

    color: #FFD700;

    line-height: 1.1;
    letter-spacing: 1px;

    text-shadow:
        0 3px 15px rgba(0,0,0,0.9),
        0 0 25px rgba(255,215,0,0.6),
        0 0 50px rgba(255,215,0,0.4);
}

/* TEXT */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 15px 0 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 10px;
}

.play-btn {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.info-btn {
    background: rgba(109,109,110,0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* =========================
   HERO → GRID GOLD KANTE (FULL WIDTH + STRONG GLOW)
========================= */

.hero::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 5;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,215,0,0.8) 20%,
        white 50%,
        rgba(255,215,0,0.8) 80%,
        transparent 100%
    );

    background-size: 200% 100%;

    /* 🔥 MASSIVER GLOW */
    box-shadow:
        0 0 15px gold,
        0 0 30px rgba(255,215,0,0.9),
        0 0 60px rgba(255,215,0,0.7),
        0 0 100px rgba(255,215,0,0.5);

    animation: goldFlowStrong 3s linear infinite;

    z-index: 5;
    pointer-events: none;
}


/* 🌫️ GLOW FLÄCHE DARUNTER */
.hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 140px;

    pointer-events: none;
    z-index: 4;

    background: linear-gradient(
        to bottom,
        rgba(255,215,0,0.0) 0%,
        rgba(255,215,0,0.2) 30%,
        rgba(255,215,0,0.5) 50%,
        rgba(255,215,0,0.2) 70%,
        rgba(0,0,0,0) 100%
    );

    filter: blur(20px);

    animation: goldPulseStrong 4s ease-in-out infinite;
}


/* 🔥 ANIMATIONEN */
@keyframes goldFlowStrong {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes goldPulseStrong {
    0% {
        opacity: 0.6;
        transform: scaleY(0.9);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
    100% {
        opacity: 0.6;
        transform: scaleY(0.9);
    }
}


.video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    z-index: 2;
}

.hover-video {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.video-card:hover .hover-video {
    opacity: 1;
}


.header-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#searchInput {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 180px;
  transition: 0.3s;
}

/* Hover Effekt */
#searchInput:focus {
  width: 260px;
  background: rgba(0,0,0,0.9);
}

/* =========================
   VIDEOS SECTION (INDEX bleibt gleich!)
========================= */
.videos {
    position: relative;

    padding: 0; /* 🔥 wichtig */
    margin-top: -180px;

    background: url('/assets/images/bg-dogs.jpg') center top no-repeat;
    background-size: contain;

    background-color: #0A1F44;
}

/* OVERLAY */
.videos::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.08); /* 🔥 milchiger Schleier */

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    pointer-events: none;
    z-index: 1;
}


.videos::after {
    display: none;
}

/* CONTENT */
.videos .container {
    position: relative;
    z-index: 2;

    padding-top: 320px; /* 🔥 statt margin-top */
    padding-bottom: 100px;
}
/* =========================
   LOGO
========================= */
.bg-logo {
    position: absolute;
    top: 60vh;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.bg-logo img {
    width: 800px;
    max-width: 80vw;

    opacity: 1;                /* 🔥 voll sichtbar */
    mix-blend-mode: normal;   /* 🔥 wichtig */

    filter:
        brightness(1.15)
        contrast(1.2)
        drop-shadow(0 0 20px rgba(212,175,55,0.9))
        drop-shadow(0 0 50px rgba(212,175,55,0.7));
}

@keyframes glow {
    0% {
        filter: brightness(1.05) drop-shadow(0 0 15px gold);
    }
    50% {
        filter: brightness(1.15) drop-shadow(0 0 60px gold);
    }
    100% {
        filter: brightness(1.05) drop-shadow(0 0 15px gold);
    }
}

.bg-logo img {
    mix-blend-mode: screen;
}

/* =========================
   IMPRESSUM (FIX!)
========================= */
.impressum {

    position: relative;
    background: linear-gradient(
        145deg,
        rgba(0,0,0,0.85),
        rgba(10,31,68,0.7)
    );

    border-radius: 18px;
    padding: 35px;

    border: 1px solid rgba(212,175,55,0.5);

    box-shadow:
        0 0 20px rgba(212,175,55,0.25),
        0 0 60px rgba(212,175,55,0.15);

    backdrop-filter: blur(8px);
}

.impressum::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;

    background: linear-gradient(90deg, gold, white, gold);
    background-size: 200% 100%;

    animation: goldFlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* Überschrift */
.impressum h1 {
    margin-bottom: 25px;
    font-size: 30px;
}

/* Unterüberschriften */
.impressum h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 18px;
}

/* Text */
.impressum p {
    line-height: 1.7;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

/* =========================
   IMPRESSUM PAGE FIX
========================= */

/* Hintergrund sauber an Bildschirm */
.impressum-page {
    padding: 120px 0 80px;
    padding-top: 200px; /* 👈 runterziehen */
    min-height: 100vh; /* füllt Bildschirm */
    display: flex;
    align-items: flex-start;
}

/* Logo AUSBLENDEN nur hier */
.impressum-page .bg-logo {
    display: none;
}

/* Textbereich */
.impressum {
    backdrop-filter: blur(4px);
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
    color: white;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--blue);
    color: white;
    padding: 40px 0;
}

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

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 20px;
    text-align: center;
    opacity: 0.6;
}



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

/* GOLD LINE */
.header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(90deg, transparent, gold, white, gold, transparent);
    background-size: 200% 100%;
    animation: goldFlow 4s linear infinite;
    pointer-events: none;
}

/* GLOW */
.header::after {
    content: "";
    position: absolute;
    top: -100px;
    left: -50%;
    width: 200%;
    height: 300px;
    pointer-events: none;

    background: radial-gradient(
        ellipse at center,
        rgba(212,175,55,0.8),
        rgba(212,175,55,0.4) 40%,
        transparent 70%
    );

    filter: blur(60px);
    animation: goldGlowMove 6s ease-in-out infinite;
}






@keyframes goldLineMove {
    0% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
}

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

.video-card {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;

    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.5);

    transition: all 0.3s ease;
}


@keyframes goldPulse {
    0% {
        box-shadow: 
            0 0 10px rgba(212,175,55,0.3),
            0 0 25px rgba(212,175,55,0.2);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(212,175,55,0.5),
            0 0 40px rgba(212,175,55,0.3);
    }
    100% {
        box-shadow: 
            0 0 10px rgba(212,175,55,0.3),
            0 0 25px rgba(212,175,55,0.2);
    }
}



.comments h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}
.related h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}

/* =========================
   FOOTER GLOW
========================= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 120%,
        rgba(212,175,55,0.4),
        transparent 60%
    );

    pointer-events: none;
}


/* =========================
   GLOW ANIMATION
========================= */
@keyframes goldGlowMove {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(10px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
}

.video-consent {
    position: relative;
    z-index: 5; /* höher als overlay */
}

.hero-overlay {
    z-index: 2;
}

.hero-content {
    z-index: 6;
}


/* =========================
   FOOTER GLOW
========================= */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at 50% 120%,
        rgba(212,175,55,0.5),
        transparent 60%
    );

    filter: blur(40px);
    animation: goldGlowMove 6s ease-in-out infinite reverse;
    pointer-events: none;
}



/* =========================
   💬 KOMMENTARE – PREMIUM STYLE
========================= */

.comments {
    margin-top: 50px;
}

/* Titel */
.comments h2 {
    color: var(--gold);

    text-shadow:
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
}

/* Formular */
.comment-form input,
.comment-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;

    border-radius: 8px;
    border: none;

    background: rgba(255,255,255,0.1);
    color: white;
}

.comment-form textarea {
    min-height: 100px;
}

.comment-form button {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;

    color: #000;
    font-weight: bold;

    transition: 0.3s;
}

.comment-form button:hover {
    box-shadow:
        0 0 10px rgba(255,215,0,0.6),
        0 0 20px rgba(255,215,0,0.4);
}

/* Einzelner Kommentar */
.comment {
    background: rgba(0,0,0,0.75);
    padding: 15px;
    margin-top: 15px;

    border-radius: 12px;

    border: 1px solid rgba(212,175,55,0.2);

    box-shadow:
        0 0 10px rgba(212,175,55,0.15);

    transition: 0.3s;
}

/* Hover Effekt */
.comment:hover {
    box-shadow:
        0 0 15px rgba(212,175,55,0.4),
        0 0 30px rgba(212,175,55,0.2);
}

/* Name */
.comment strong {
    display: block;
    font-size: 16px;

    color: var(--gold);
}

/* Datum */
.comment small {
    display: block;
    margin-bottom: 8px;

    color: #bbb;
    font-size: 12px;
}

/* Text */
.comment p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
}


#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(10,31,68,0.95);
    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(212,175,55,0.3);

    text-align: center;
    padding: 15px;
    z-index: 9999;
}

#cookie-bar p {
    margin: 0;
    color: #f5f5dc;
}

#cookie-bar button {
    margin-left: 15px;
    padding: 8px 15px;

    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;
}

.video-placeholder {
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;

    padding: 40px;
    text-align: center;

    color: #f5f5dc;
}

.video-placeholder button {
    margin-top: 15px;
    padding: 10px 20px;

    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-weight: bold;

    pointer-events: auto; /* 🔥 wichtig */
}


.video-consent {
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.video-placeholder {
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    color: #f5f5dc;
}

.video-placeholder p {
    font-size: 20px;
}

.card {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.back {
    display: inline-block;
    margin-bottom: 20px;

    color: var(--gold);
    text-decoration: none;
    font-weight: bold;

    text-shadow:
        0 0 6px rgba(212,175,55,0.5);

    transition: 0.3s;
}

.back:hover {
    color: #fff;

    text-shadow:
        0 0 10px gold,
        0 0 20px gold;
}


/* =========================
   LEGAL PAGES (Impressum + Datenschutz)
========================= */

.legal-page .videos .container {
    padding-top: 120px; /* 🔥 weniger Abstand */
}

.legal-page .impressum {
    position: relative;

    background: linear-gradient(
        145deg,
        rgba(0,0,0,0.85),
        rgba(10,31,68,0.7)
    );

    border-radius: 18px;
    padding: 35px;

    border: 1px solid rgba(212,175,55,0.5);

    box-shadow:
        0 0 20px rgba(212,175,55,0.25),
        0 0 60px rgba(212,175,55,0.15);

    backdrop-filter: blur(8px);
}

/* ✨ Goldkante Animation */
.legal-page .impressum::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;

    background: linear-gradient(90deg, gold, white, gold);
    background-size: 200% 100%;
    animation: goldFlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}
.legal-page h2 {
    margin-top: 25px;
    color: gold;
}

.legal-page p {
    line-height: 1.6;
    color: #ddd;
}

.legal-page h3 {
    margin-top: 20px;
    color: #f5d76e;
}

#visitor-counter {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.counter-box {
    background: rgba(0,0,0,0.6);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: 0.3s;
}

.counter-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px gold;
}

.counter-box span {
    font-size: 28px;
    font-weight: bold;
    color: gold;
}

.counter-box.online span {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}
#visitor-counter-mini {
    position: absolute;
    right: 250px;   /* 🔥 ganz rechts */
    top: 50%;
    transform: translateY(-50%);

    font-size: 12px;
    color: rgba(255,255,255,0.7);

    display: flex;
    align-items: center;
    gap: 6px;

    white-space: nowrap;
}

#visitor-counter-mini span {
    color: rgba(255,255,255,0.9);
}

#visitor-counter-mini .label {
    opacity: 0.5;
    font-size: 11px;
}

#visitor-counter-mini .dot {
    opacity: 0.3;
}

#top-counter-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    color: rgba(255,255,255,0.7);

    background: rgba(10,31,68,0.95);
    backdrop-filter: blur(8px);

    border-bottom: 1px solid rgba(212,175,55,0.2);

    z-index: 100001;
}

#top-counter-bar .dot {
    opacity: 0.4;
}

#top-counter-bar .label {
    font-size: 10px;
    opacity: 0.5;
}


/* 🔥 APP BANNER FULL WIDTH */
.app-ad {
    grid-column: 1 / -1; /* 🔥 über ALLE Spalten */
    display: block;
}

/* gleiche Höhe wie Videos */
.app-ad-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    max-height: 320px; /* optional Deckel */

    border-radius: 15px;
    overflow: hidden;

    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.5);

    transition: all 0.3s ease;
}

.app-ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover wie deine Cards */
.app-ad-box:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 9999;

    border: 1px solid rgba(255,215,0,1);

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.9),
        0 0 30px rgba(255,215,0,0.8),
        0 0 80px rgba(255,215,0,0.5);
}

