.firstframe {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Mindesthöhe, passt sich Inhalt an */
    overflow: visible;
    margin-bottom: 40px;
}

.firstframe .video-container {
    position: relative; /* Nimmt natürlichen Platz im Flow ein */
    width: 80%; /* Zentriert via margin */
    height: 70vh;
    margin: 0 auto; /* Horizontale Zentrierung */
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border-radius: 8px;
    overflow: hidden;
}

.firstframe .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* Overlay-Text perfekt zentriert auf Video */
.firstframe .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    width: 100%;
}

.firstframe .overlay-text h1 {
    font-family: "Jersey 10", sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive */
    font-weight: bold;
    margin: 0 0 0.2rem 0;      /* 🔽 Abstand reduziert */
    text-shadow: 0 5px 15px rgba(0,0,0,0.7);
    line-height: 1;           /* 🔽 engerer Zeilenabstand */
}

.firstframe .overlay-text h2 {
    font-family: "Jersey 10", sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 400;
    margin: 0;                /* kein Extra-Abstand */
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    line-height: 1.1;
}

.since-counter {
    margin-top: 25px;
    text-align: center;
    font-family: "Jersey 10", sans-serif;
    color: #fff;
    opacity: 0.9;
}

.since-label {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.8;
}

#since-timer {
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 700;
    text-shadow: 0 4px 14px rgba(0,0,0,0.65);
}

.counter-arrow {
    margin-top: 15px;       /* Abstand zum Counter */
    text-align: center;      /* zentriert unter dem Timer */
}

.counter-arrow img {
    width: 40px;             /* anpassen je nach Wunsch */
    height: auto;
    animation: bounce 2s infinite; /* optional: leicht animiert */
}

/* kleine Bounce-Animation für Aufmerksamkeit */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* Mobile-Optimierungen */
@media (max-width: 768px) {
    .firstframe .video-container {
        width: 100%;
        height: 80vh; /* Etwas kleiner auf Mobile */
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .firstframe-columns {
        width: 95%;
        gap: 15px;
    }
    
    .firstframe-columns .column {
        flex: 1 1 48%;
        padding: 15px 10px;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .firstframe .video-container {
        height: 50vh;
    }
    
    .firstframe-columns {
        flex-direction: column;
    }
    
    .firstframe-columns .column {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .firstframe .video-container {
        width: 100%;
        height: 60vh;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .since-counter {
        width: 95%;
        padding: 30px 15px;
        display: flex;            /* Flex aktivieren */
        flex-direction: column;   /* Timer + Pfeil untereinander */
        align-items: center;      /* alles zentriert */
        gap: 8px;
    }
    
    .counter-arrow {
        width: 28px !important;
        height: 28px !important;
        display: block;           /* sicherstellen, dass es sichtbar ist */
        margin: 0 auto;           /* mittig ausrichten */
        text-align: center;       /* Backup, falls img inline ist */
    }
    
    .counter-arrow img {
        width: 100% !important;
        height: auto !important;
        display: block;           /* Block, damit margin auto greift */
    }
}

@media (max-width: 480px) {
    .firstframe .video-container {
        height: 50vh;
    }
    
    .since-counter {
        padding: 20px 10px;
    }
}


