.hero-premium-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    background-color: #000;
}

.hero-premium-container.is-fullscreen {
    height: 100vh;
}

.hero-premium-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Video Background */
.hero-premium-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-premium-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.hero-premium-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    display: none;
}

/* Slideshow Slider */
.hero-premium-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
}

.slideshow-slide.active {
    opacity: 1;
    z-index: 2;
}

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slideshow-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.slideshow-arrow.prev-slide {
    left: 20px;
}

.slideshow-arrow.next-slide {
    right: 20px;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slide-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Overlay Layer */
.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Content Layout */
.hero-premium-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex: 1;
    box-sizing: border-box;
}

.hero-premium-content {
    width: 100%;
    box-sizing: border-box;
}

.hero-premium-surtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-premium-title {
    margin: 0;
    font-weight: 800;
    line-height: 1.1;
}

.hero-premium-subtitle {
    font-weight: 600;
}

.hero-premium-desc {
    line-height: 1.6;
}

.hero-premium-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Animations */
.hero-premium-content.has-anim {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-premium-content.anim-fade.anim-play {
    opacity: 1;
}

.hero-premium-content.anim-fade-up {
    transform: translateY(40px);
}

.hero-premium-content.anim-fade-up.anim-play {
    opacity: 1;
    transform: translateY(0);
}

.hero-premium-content.anim-fade-left {
    transform: translateX(-40px);
}

.hero-premium-content.anim-fade-left.anim-play {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Adaptation */
@media (max-width: 768px) {
    .hero-premium-video-wrapper.mobile-fallback-active .hero-premium-video {
        display: none;
    }
    .hero-premium-video-wrapper.mobile-fallback-active .hero-premium-video-fallback {
        display: block;
    }
    .hero-premium-buttons {
        width: 100%;
        justify-content: center;
    }
    .hero-btn {
        width: 100%;
    }
}
