#banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

#banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    /* Slight darken for text readability */
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-color);
    margin-top: -100px;
    /* Move 100px higher */
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
}

.btn:hover {
    transform: scale(1.05);
}

/* Specific Button Styles as requested */
.btn-games {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    /* Added border for visibility on black bg if any */
}

.btn-assets {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .banner-title {
        font-size: 3rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}