/* --- ABOUT SECTION --- */
#about {
    padding: 100px 50px;
    background: linear-gradient(to bottom, #0d0d10, #050507);
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center; /* */
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-grid {
    display: flex;
    gap: 20px;
}

.team-member {
    text-align: center;
    flex: 1;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: #1a1a1f;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 2px solid var(--primary);
}

/* Mobile Adjustments */
@media (max-width: 800px) {
    /* Switch the About container from 2 columns to 1 */
    .about-container { 
        grid-template-columns: 1fr; /* This forces a vertical stack */
        gap: 40px;
        padding: 0 20px;
    }

    /* Ensure News grid (and others) also stack vertically */
    .game-grid, .team-grid { 
        grid-template-columns: 1fr !important; 
        flex-direction: column; /* For any flexbox backups */
        align-items: center;
    }

    /* Reset the News items for better readability on mobile */
    .news-item {
        width: 100%;
        max-width: 400px; /* Prevents text from stretching too wide */
        margin-bottom: 20px;
    }
}