/* Banner Section */
.banner {
    position: relative;
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    padding: 150px 0 40px 0;
}

.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    z-index: 2;
}

.banner .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 20px;
}

/* Banner Overlay Container */
.banner-overlay {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    min-height: 500px;
}

/* Left Content */
.banner__content {
    flex: 1;
    max-width: 55%;
    flex-direction: column;
    justify-content: flex-start;
    padding: 45px;
    background: rgba(8, 14, 55, .6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner__content h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

.banner__content p {
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 1.1rem;
    padding-right: 0;
}

/* Right Grid */
.banner__right {
    flex: 1;
    max-width: 45%;
    padding: 45px;
    background: rgba(8, 14, 55, .6);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner__right .game-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.banner__right .game-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.banner__right .game-card img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .banner-overlay {
        flex-direction: column;
        gap: 30px;
    }

    .banner__content, 
    .banner__right {
        max-width: 100%;
        width: 100%;
    }

    .banner__right {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner {
        padding: 120px 0 80px 0;
    }
    
    .banner-overlay {
        gap: 20px;
    }
    
    .banner__content {
        padding: 30px 25px;
    }
    
    .banner__right {
        padding: 20px;
        gap: 15px;
    }
    
    .banner__right .game-card img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 600px) {
    .banner__content h1 {
        font-size: 2rem;
    }

    .banner__content p {
        font-size: 1rem;
    }

    .banner__right {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
    
    .banner__right .game-card img {
        width: 50px;
        height: 50px;
    }
}
  @media (max-width: 991px) {
    .banner {
        padding: 200px 0 100px 0;
    }
  }