/* ============================================
   GAMES SECTION & BENTO GRID
   ============================================ */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-md);
    scroll-margin-top: 100px;
    /* Account for fixed header on internal anchor links */
}

.gradient-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: var(--text-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

/* Large Bento Cards Span */
.bento-large {
    grid-column: span 2;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }
}