:root {
    --primary-color: #e31e24;
    --primary-dark: #c00;
    --text-light: #ffffff;
    --bg-dark: #121212;
    --white: #fff;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slider-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
    pointer-events: none;
}
.hero-video-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
/* Bottom-right arrows */
.hero-arrows{
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 6; /* above overlay & text */
    display: flex;
    gap: 10px;
}
.hero-arrow{
    width: 55px; height: 55px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(18,21,27,.55);
    color: #fff;
    display: grid; place-items: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
    backdrop-filter: blur(8px);
}
.hero-arrow:hover{
    transform: translateY(-2px);
    background: rgba(227,30,36,.35);
    border-color: rgba(227,30,36,.6);
}
@media (max-width: 640px){
    .hero-arrows{ right: 12px; bottom: 12px; }
    .hero-arrow{ width: 40px; height: 40px; border-radius: 10px; }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease;
    background: #000;
}
.hero-video.show {
    opacity: 1;
}
.hero-slider-section {
    cursor: grab;
}

.hero-slider-section.dragging {
    cursor: grabbing;
}

.hero-slider-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slider-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slider-content-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-slider-content {
    position: relative;
    height: 400px;
    overflow: hidden;
    width: 75%;
}

.hero-slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.5s ease;
    transform: translateX(0);
}

.hero-slider-content-item.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0);
}

.hero-slider-content-item.fade-out-left {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-slider-content-item.fade-out-right {
    opacity: 0;
    transform: translateX(50px);
}

.hero-slider-badge {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(227, 30, 36, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-slider-title {
    font-size: 90px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -1px;
    color: var(--text-light);
}

.hero-slider-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    line-height: 1;
}

.hero-slider-btn-primary {
    background-color: var(--primary-color);
    font-family: 'Akzidenz-Grotesk Pro Cnd', Arial, sans-serif;
    color: var(--white);
    font-size: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.hero-slider-btn-primary:hover {
    background: var(--primary-dark);
}

.hero-slider-btn-ghost {
    background: transparent;
    color: var(--text-light);
    font-size: 20px;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-btn-ghost:hover {
    border-color: var(--text-light);
}

.drag-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    transition: opacity .3s;
}

.drag-indicator.hidden {
    opacity: 0;
}

.drag-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero-slider-content {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .hero-slider-content {
        width: 100%;
        height: 300px;
        text-align: center;
    }

    .hero-slider-title {
        font-size: 50px;
    }

    .hero-slider-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider-title {
        font-size: 38px;
    }

    .hero-slider-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-slider-content {
        height: 250px;
    }
}
