/* ============================
   PAGE-SPECIFIC STYLES
============================ */

/* --------------------------------
   CONTACT PAGE
-------------------------------- */
.page-contact h2 {
    margin-top: 20px;
}

/* --------------------------------
   LEADERBOARD PAGE
-------------------------------- */
.page-leaderboard table {
    width: 100%;
}

/* --------------------------------
   PICKS FORM
-------------------------------- */
.page-picks .game-row {
    margin-bottom: 10px;
}

/* =================================
   HOME PAGE — MOBILE STACK FIX
   (THIS WAS MISSING)
================================= */

@media (max-width: 768px) {

    /* Force all sections to stack */
    .home section {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* HERO */
    .home .hero,
    .home .hero-inner,
    .home .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home .hero-left,
    .home .hero-right {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
    }

    /* WHY / HOW / FEATURE GRIDS */
    .home .why-pro-picks,
    .home .how-it-works,
    .home .feature-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Remove side-by-side cards */
    .home .why-pro-picks > *,
    .home .how-it-works > *,
    .home .feature-grid > * {
        width: 100%;
    }

    /* General spacing */
    .home section {
        padding-left: 16px;
        padding-right: 16px;
    }
}

