/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #121212;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
    filter: grayscale(30%) blur(3px);
}

.hero-slide.active .slide-bg {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 50%, rgba(18, 18, 18, 0.7) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    transition-delay: 0.3s;
    line-height: 1.2;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: 1.25rem;
    color: #B3B3B3;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.7s;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.slide-button {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.9s;
}

.hero-slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(18, 18, 18, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-arrow:hover {
    background-color: rgba(40, 40, 40, 0.9);
    color: #FFFFFF;
    border-color: rgba(0, 255, 0, 0.3);
    transform: scale(1.05);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Game-specific background positions */
.hero-slide:nth-child(1) .slide-bg {
    background-position: center 20%;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(2) .slide-bg {
    background-position: center 30%;
    background-size: contain;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(3) .slide-bg,
.hero-slide:nth-child(4) .slide-bg,
.hero-slide:nth-child(5) .slide-bg {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slide-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2.25rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 