/* Minimalist Section Titles */
.section-title-tag {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: #808080;
    margin-bottom: 1.5rem !important;
    margin-top: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 0;
}

/* Removed decorative bar */
/* .section-title-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #9B2C88, #C2185B);
    border-radius: 2px;
} */

/* Reduce margin between sections */
.mt-5 {
    margin-top: 2rem !important;
}

/* Focus on content - padding-top handled in index.html for desktop/mobile */
.latest-games.section-padding {
    padding-bottom: 40px !important;
}

/* Smaller container padding on mobile */
@media (max-width: 768px) {
    .section-title-tag {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 1px;
    }

    .latest-games.section-padding {
        padding-bottom: 30px !important;
    }
}