/* ==========================================================
   Hero Slider
========================================================== */

.dtv-front-hero-slider {
    position: relative;
    margin: 0 0 64px;
}

.dtv-front-slider-track {
    position: relative;
    isolation: isolate;
    height: 620px;
    border-radius: var(--dtv-radius-2xl, 28px);
    overflow: hidden;
    background: var(--dtv-color-surface-dark, #0F172A);
}

.dtv-front-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dtv-motion-slow, .45s ease);
}

.dtv-front-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.dtv-front-hero-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--dtv-color-text-inverse, #fff);
    text-decoration: none;
    overflow: hidden;
}

.dtv-front-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.dtv-front-slide.is-active .dtv-front-hero-card img {
    transform: scale(1.08);
}

.dtv-front-hero-card::after { display: none; }

.dtv-front-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,rgba(8,12,22,.35) 0%,rgba(8,12,22,.12) 24%,rgba(8,12,22,0) 48%,rgba(8,12,22,0) 56%,rgba(8,12,22,.14) 78%,rgba(8,12,22,.36) 100%),
        linear-gradient(to top,rgba(8,12,22,.82) 0%,rgba(8,12,22,.52) 34%,rgba(8,12,22,.14) 62%,rgba(8,12,22,0) 100%);
}

.dtv-front-hero-content {
    position: absolute;
    left: 96px;
    right: 88px;
    bottom: 118px;
    z-index: 2;
    max-width: 760px;
}

.dtv-front-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--dtv-color-secondary, #0066CC);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: var(--dtv-radius-pill, 999px);
    text-transform: uppercase;
    box-shadow: var(--dtv-shadow-control, 0 12px 30px rgba(0,0,0,.24));
}

.dtv-front-badge-live,
.dtv-front-badge-breaking,
.dtv-front-badge-νεο {
    background: var(--dtv-color-primary, #CC0000);
}

.dtv-front-badge-exclusive { background: #5B3FD6; }

.dtv-front-hero-content h1 {
    margin: 18px 0 0;
    font-family: var(--dtv-font-heading, Oswald, sans-serif);
    font-size: clamp(58px, 5vw, 84px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -2px;
    color: #fff !important;
    text-shadow: 0 6px 28px rgba(0,0,0,.30);
}

.dtv-front-hero-content p {
    margin: 22px 0 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,.92);
}

.dtv-front-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.dtv-front-hero-cta::after {
    content: '';
    width: 78px;
    height: 2px;
    background: var(--dtv-color-primary, #CC0000);
}

.dtv-front-hero-slider .dtv-front-slider-track > button.dtv-home-hero__side-arrow {
    position: absolute !important;
    top: 50%;
    z-index: 20;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 1px solid var(--dtv-color-primary, #CC0000);
    background: var(--dtv-color-primary, #CC0000);
    background-image: none;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 12px 28px rgba(204,0,0,.35);
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dtv-front-hero-slider button.dtv-home-hero__side-arrow--prev { left: 28px; }
.dtv-front-hero-slider button.dtv-home-hero__side-arrow--next { right: 28px; }

.dtv-front-slider-controls {
    position: absolute;
    left: 96px;
    right: 96px;
    bottom: 62px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dtv-front-slider-dots {
    display: flex;
    gap: 14px;
    flex: 1;
    max-width: 410px;
}

.dtv-front-hero-slider button.dtv-front-slider-dot {
    position: relative;
    flex: 1;
    min-width: 170px;
    height: 5px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.34) !important;
    background-image: none !important;
    box-shadow: none;
    cursor: pointer;
}

.dtv-front-slider-dot::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: var(--dtv-color-primary, #CC0000);
}

.dtv-front-slider-dot.is-active::after { animation: dtvHeroProgress 6s linear forwards; }
.dtv-front-hero-slider.is-paused .dtv-front-slider-dot.is-active::after,
.dtv-front-hero-slider.is-hover-paused .dtv-front-slider-dot.is-active::after { animation-play-state: paused; }

@keyframes dtvHeroProgress { from { width: 0; } to { width: 100%; } }

.dtv-front-slider-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: -10px;
}

.dtv-front-hero-slider button.dtv-front-slider-pause,
.dtv-front-hero-slider button.dtv-front-slider-play {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 1px solid var(--dtv-color-primary, #CC0000);
    background: var(--dtv-color-primary, #CC0000);
    background-image: none;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(204,0,0,.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: scale(1.06);
}
