/* Body scrollen uitzetten */
body.kk-actief {
    overflow: hidden !important;
}

/* Kabelkrant wrapper — fixed over alles heen, dekt header/footer af */
.kk-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000000 !important;
    z-index: 2147483647 !important;
    overflow: hidden !important;
}

.kk-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    width: 1700px;
    height: 900px;
    overflow: hidden;
}

@media screen and (max-width: 1700px) {
    .kk-container {
        transform: translate(-50%, -50%) scale(calc(100vw / 1700));
    }
}

@media screen and (max-height: 900px) {
    .kk-container {
        transform: translate(-50%, -50%) scale(calc(100vh / 900));
    }
}

@media screen and (max-width: 1700px) and (max-height: 900px) {
    .kk-container {
        transform: translate(-50%, -50%) scale(min(calc(100vw / 1700), calc(100vh / 900)));
    }
}

.kk-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
}

.kk-slide.actief {
    opacity: 1;
    pointer-events: auto;
}

.kk-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.kk-clock {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 24px;
    font-weight: bold;
    color: #f57c00;
    font-family: Arial, sans-serif;
    z-index: 10;
    background: rgba(0,0,0,0.25);
    padding: 6px 14px;
}

.kk-content {
    position: absolute;
    top: 220px;
    left: 280px;
    right: 60px;
    bottom: 120px;
    z-index: 10;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.kk-content h1 {
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 36px 0;
    color: #f57c00;
    font-weight: bold;
    text-transform: uppercase;
}

.kk-text {
    font-size: 31px;
    line-height: 1.75;
    color: #111111;
}

.kk-text p {
    margin: 0 0 8px 0;
}

.kk-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #1a237e;
    z-index: 999;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.kk-ticker-track {
    position: absolute;
    white-space: nowrap;
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    font-family: Arial, sans-serif;
}
