/* Split Screen Banner Styles */
.hero-banner {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.banner-slider {
    height: 100%;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-split-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.banner-left {
    padding: 40px 0;
    animation: slideInLeft 0.8s ease-out;
}

.banner-left h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-left p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 550px;
}

.banner-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 168, 0, 0.1);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 168, 0, 0.2);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.feature-item span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.banner-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

.game-showcase {
    position: relative;
    width: 450px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 168, 0, 0.3);
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.game-showcase:hover {
    transform: scale(1.05) rotate(2deg);
}

.game-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Button Styles */
.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 168, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 168, 0, 0.6);
    background: #ffb700;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 168, 0, 0.4);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Responsive Banner */
@media (max-width: 968px) {
    .hero-banner {
        height: auto;
        min-height: 600px;
    }

    .banner-split-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 80px;
    }

    .banner-left {
        text-align: center;
        padding: 20px 0;
    }

    .banner-left h2 {
        font-size: 32px;
    }

    .banner-left p {
        font-size: 16px;
        margin: 0 auto 25px;
    }

    .banner-features {
        justify-content: center;
    }

    .game-showcase {
        width: 100%;
        max-width: 350px;
        height: 467px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .banner-left h2 {
        font-size: 28px;
    }

    .banner-left p {
        font-size: 14px;
    }

    .feature-item {
        padding: 8px 14px;
        font-size: 12px;
    }

    .game-showcase {
        max-width: 280px;
        height: 373px;
    }
}