        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            background: #000;
            color: #fff;
            font-family: Inter, sans-serif;
            overflow-x: hidden;
        }

        button,
        a {
            touch-action: manipulation;
        }

        button {
            font: inherit;
        }

        .page {
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden;
            background: #020814;
            padding-bottom: env(safe-area-inset-bottom);
        }

        .navbar-wrap {
            width: 100%;
            background: #000;
            position: relative;
            z-index: 20;
        }

        .container {
            width: min(1180px, calc(100% - 80px));
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        header {
            min-height: 112px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #000;
            gap: 20px;
            padding-top: env(safe-area-inset-top);
        }

        .logo img {
            width: 220px;
            display: block;
        }

        nav {
            display: flex;
            gap: 26px;
            align-items: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .04em;
        }

        .nav-actions {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .btn {
            min-height: 56px;
            padding: 0 30px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,.45);
            background: transparent;
            color: #fff;
            font-family: Oswald, sans-serif;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary {
            border: none;
            background: linear-gradient(180deg, #168cff, #006ee8);
            box-shadow: 0 0 24px rgba(0,115,255,.25);
        }

        .mobile-toggle {
            display: none;
        }

        .mobile-menu-btn {
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,.35);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            position: relative;
        }

        .mobile-menu-btn span::before,
        .mobile-menu-btn span::after {
            content: "";
            position: absolute;
            left: 0;
            width: 22px;
            height: 2px;
            background: #fff;
        }

        .mobile-menu-btn span::before {
            top: -7px;
        }

        .mobile-menu-btn span::after {
            top: 7px;
        }

        .mobile-menu {
            display: none;
            padding: 0 0 22px;
        }

        .mobile-menu a {
            display: block;
            padding: 16px 0;
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            border-bottom: 1px solid rgba(255,255,255,.12);
        }

        .mobile-menu .nav-actions {
            margin-top: 18px;
            flex-direction: column;
            align-items: stretch;
        }

        .mobile-menu .btn {
            width: 100%;
        }

        .hero-wrap {
            position: relative;
            width: 100%;
            background:
                linear-gradient(
                    90deg,
                    rgba(0,0,0,.96) 0%,
                    rgba(0,0,0,.84) 24%,
                    rgba(0,0,0,.38) 52%,
                    rgba(0,0,0,.10) 100%
                ),
                url("../background.png");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-wrap::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(0,0,0,.15) 0%,
                    rgba(0,0,0,.05) 55%,
                    rgba(2,8,20,.98) 100%
                );
            pointer-events: none;
            z-index: 1;
        }

        .hero {
            position: relative;
            min-height: 720px;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 650px;
            padding-bottom: 120px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            min-height: 44px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(0, 102, 220, .18);
            color: #2d95ff;
            font-family: Oswald, sans-serif;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: .02em;
            margin-bottom: 25px;
        }

        .hero h1 {
            font-family: Oswald, sans-serif;
            font-size: 82px;
            line-height: .95;
            font-weight: 700;
            letter-spacing: .01em;
            text-transform: uppercase;
            text-shadow: 0 4px 18px rgba(0,0,0,.65);
        }

        .hero h1 span {
            color: #0078ff;
        }

        .hero p {
            margin-top: 28px;
            color: rgba(255,255,255,.88);
            font-size: 23px;
            line-height: 1.45;
            max-width: 640px;
            font-weight: 500;
        }

        .hero-buttons {
            margin-top: 42px;
            display: flex;
            gap: 22px;
        }

        .hero-buttons .btn {
            min-height: 68px;
            padding: 0 34px;
            font-size: 18px;
        }

        .trust-row {
            margin-top: 26px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .trust-badge {
            border: 1px solid rgba(255,255,255,.20);
            background: rgba(9,22,38,.80);
            border-radius: 999px;
            padding: 10px 14px;
            color: rgba(255,255,255,.86);
            font-size: 14px;
            font-weight: 800;
        }

        .sports-card,
        .why-card,
        .stats-card,
        .cta-card,
        .refund-card {
            position: relative;
            z-index: 3;
            border: 1px solid rgba(255,255,255,.20);
            background: linear-gradient(180deg, rgba(9,22,38,.88), rgba(4,13,25,.88));
            border-radius: 14px;
            box-shadow: inset 0 0 50px rgba(0,120,255,.04);
        }

        .sports-card {
            margin-top: -70px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            min-height: 318px;
            overflow: hidden;
        }

        .sport {
            text-align: center;
            padding: 34px 24px 30px;
            position: relative;
        }

        .sport:not(:last-child)::after,
        .why-item:not(:last-child)::after,
        .stat:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 26px;
            bottom: 26px;
            width: 1px;
            background: rgba(255,255,255,.18);
        }

        .sport img {
            height: 75px;
            object-fit: contain;
            margin-bottom: 22px;
        }

        .sport h3 {
            font-family: Oswald, sans-serif;
            font-size: 27px;
            letter-spacing: .03em;
            margin-bottom: 12px;
        }

        .sport p {
            color: rgba(255,255,255,.82);
            font-size: 16px;
            line-height: 1.45;
            max-width: 230px;
            margin: 0 auto;
        }

        .credit {
            margin-top: 24px;
            color: #168cff;
            font-family: Oswald, sans-serif;
            font-size: 31px;
            font-weight: 700;
            letter-spacing: .03em;
        }

        .credit span {
            display: block;
            margin-top: 5px;
            color: rgba(255,255,255,.72);
            font-family: Inter, sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0;
        }

        .blue { color: #168cff; }
        .gold { color: #ffbf3d; }
        .green { color: #54d64a; }

        .section-title {
            text-align: center;
            font-family: Oswald, sans-serif;
            font-size: 39px;
            line-height: 1;
            letter-spacing: .05em;
            margin: 32px 0 8px;
            text-transform: uppercase;
        }

        .section-subtitle {
            max-width: 780px;
            margin: 0 auto 20px;
            text-align: center;
            color: rgba(255,255,255,.78);
            font-size: 17px;
            line-height: 1.55;
        }

        .why-card {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            min-height: 250px;
            overflow: hidden;
        }

        .why-item {
            position: relative;
            text-align: center;
            padding: 26px 30px;
        }

        .why-item img {
            height: 67px;
            object-fit: contain;
            margin-bottom: 18px;
        }

        .why-item h3 {
            font-family: Oswald, sans-serif;
            font-size: 21px;
            letter-spacing: .03em;
            margin-bottom: 8px;
        }

        .why-item p {
            color: rgba(255,255,255,.82);
            font-size: 16px;
            line-height: 1.45;
        }

        .refund-card {
            margin-top: 24px;
            padding: 31px 46px;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            align-items: center;
            gap: 24px;
        }

        .refund-card h2 {
            font-family: Oswald, sans-serif;
            font-size: 34px;
            letter-spacing: .03em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .refund-card p {
            font-size: 17px;
            color: rgba(255,255,255,.84);
            line-height: 1.55;
        }

        .refund-points {
            display: grid;
            gap: 12px;
        }

        .refund-point {
            border: 1px solid rgba(255,255,255,.16);
            background: rgba(0,120,255,.10);
            border-radius: 10px;
            padding: 14px 16px;
            font-weight: 800;
            color: rgba(255,255,255,.92);
        }

        .stats-card {
            margin-top: 24px;
            padding: 18px 0 22px;
        }

        .stats-title {
            text-align: center;
            font-family: Oswald, sans-serif;
            color: #168cff;
            font-size: 18px;
            letter-spacing: .13em;
            margin-bottom: 12px;
            text-transform: uppercase;
            padding: 0 16px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .stat {
            position: relative;
            text-align: center;
            padding: 14px 16px;
            min-width: 0;
        }

        .stat strong {
            display: block;
            color: #5794ff;
            font-size: clamp(23px, 2vw, 34px);
            line-height: 1.12;
            font-weight: 800;
            margin-bottom: 8px;
            overflow-wrap: anywhere;
            word-break: normal;
        }

        .stat span {
            display: block;
            color: rgba(255,255,255,.74);
            font-size: 15px;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .cta-card {
            margin: 24px 0 44px;
            padding: 31px 46px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .cta-card h2 {
            font-size: 30px;
            margin-bottom: 8px;
        }

        .cta-card p {
            font-size: 17px;
            color: rgba(255,255,255,.84);
        }

        .cta-card .btn {
            width: 270px;
            min-height: 66px;
            font-size: 20px;
        }

        @media (max-width: 1180px) {
            .container {
                width: min(1180px, calc(100% - 48px));
            }

            nav {
                gap: 18px;
            }

            nav a {
                font-size: 14px;
            }

            .nav-actions .btn {
                padding: 0 22px;
            }

            .sports-card {
                grid-template-columns: 1fr;
            }

            .sport:not(:last-child)::after {
                display: none;
            }

            .sport:not(:last-child) {
                border-bottom: 1px solid rgba(255,255,255,.14);
            }
        }

        @media (max-width: 900px) {
            .container {
                width: min(100% - 32px, 1180px);
            }

            header {
                min-height: 86px;
            }

            .logo img {
                width: 170px;
            }

            header nav,
            header .nav-actions {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-toggle:checked ~ .mobile-menu {
                display: block;
            }

            .hero-wrap {
                background-position: center right;
            }

            .hero-wrap::after {
                background:
                    linear-gradient(
                        180deg,
                        rgba(0,0,0,.30) 0%,
                        rgba(0,0,0,.40) 50%,
                        rgba(2,8,20,.98) 100%
                    );
            }

            .hero {
                min-height: 640px;
                align-items: flex-end;
                padding: 90px 0 90px;
            }

            .hero-content {
                max-width: 100%;
                padding-bottom: 0;
            }

            .pill {
                font-size: 14px;
                line-height: 1.3;
                border-radius: 14px;
            }

            .hero h1 {
                font-size: 56px;
            }

            .hero p {
                font-size: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 14px;
            }

            .hero-buttons .btn {
                width: 100%;
                min-height: 62px;
            }

            .sports-card {
                margin-top: -34px;
                grid-template-columns: 1fr;
            }

            .sport {
                padding: 30px 22px;
                border-bottom: 1px solid rgba(255,255,255,.14);
            }

            .sport:last-child {
                border-bottom: none;
            }

            .sport::after,
            .why-item::after,
            .stat::after {
                display: none;
            }

            .why-card,
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .why-item,
            .stat {
                border-bottom: 1px solid rgba(255,255,255,.14);
            }

            .why-item:last-child,
            .stat:last-child {
                border-bottom: none;
            }

            .refund-card {
                grid-template-columns: 1fr;
                padding: 28px 24px;
            }

            .cta-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 24px;
            }

            .cta-card .btn {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .container {
                width: min(100% - 24px, 1180px);
            }

            .logo img {
                width: 150px;
            }

            .hero {
                min-height: 610px;
                padding: 74px 0 78px;
            }

            .hero h1 {
                font-size: 44px;
                line-height: 1;
            }

            .hero p {
                font-size: 17px;
                line-height: 1.55;
            }

            .pill {
                font-size: 13px;
                padding: 9px 13px;
            }

            .section-title {
                font-size: 31px;
                margin-top: 28px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .sport img {
                height: 64px;
            }

            .sport h3 {
                font-size: 25px;
            }

            .sport p {
                font-size: 15px;
            }

            .stats-title {
                font-size: 15px;
                line-height: 1.45;
            }

            .refund-card h2,
            .cta-card h2 {
                font-size: 26px;
            }

            .refund-card p,
            .cta-card p {
                font-size: 16px;
            }
        }

        .mlb-page-hero {
    padding: 42px 0 26px;
    background:
        radial-gradient(circle at top right, rgba(232, 178, 74, 0.18), transparent 34%),
        linear-gradient(180deg, #020814 0%, #030b18 100%);
}

.mlb-hero-content {
    max-width: 720px;
}

.mlb-hero-content h1 {
    margin-top: 18px;
    font-family: Oswald, sans-serif;
    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.95;
    letter-spacing: -1px;
}

.mlb-hero-content p {
    margin-top: 18px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
}

.mlb-picks-section {
    padding: 28px 0 70px;
}

.mlb-picks-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mlb-pick-card {
    min-height: 390px;
    padding: 20px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.card-top span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e8b24a;
}

.card-top strong {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    white-space: nowrap;
}

.mlb-pick-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin: 6px 0 18px;
}

.mlb-pick-card h2 {
    font-family: Oswald, sans-serif;
    font-size: 27px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mlb-pick-card p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.mlb-pick-card .btn {
    width: 100%;
    margin-top: auto;
}

.mlb-pick-card.elite {
    border-color: rgba(232, 178, 74, 0.45);
}

.mlb-pick-card.elite-runs {
    border-color: rgba(232, 178, 74, 0.45);
}

.mlb-pick-card.strong {
    border-color: rgba(72, 145, 255, 0.35);
}

.mlb-pick-card.runs {
    border-color: rgba(255, 255, 255, 0.18);
}

.mlb-pick-card.strong-runs {
    border-color: rgba(72, 145, 255, 0.35);
}

.mlb-pick-card.free {
    border-color: rgba(61, 220, 132, 0.35);
}

@media (max-width: 980px) {
    .mlb-picks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mlb-page-hero {
        padding: 32px 0 18px;
    }

    .mlb-picks-section {
        padding: 20px 0 52px;
    }

    .mlb-picks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mlb-pick-card {
        min-height: auto;
        border-radius: 22px;
        padding: 18px;
    }

    .mlb-pick-card img {
        height: 96px;
    }

    .mlb-pick-card h2 {
        font-size: 25px;
    }
}

.mlb-picks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.mlb-pick-card {
    width: 100%;
    min-height: auto;
    padding: 20px;
}

.pick-table-wrap {
    width: 100%;
    margin-top: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    position: relative;
    min-height: 230px;
}

.pick-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.pick-table th,
.pick-table td {
    width: 16.66%;
    padding: 14px 10px;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: anywhere;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pick-table th {
    color: #e8b24a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.06);
}

.pick-table td {
    color: rgba(255,255,255,0.78);
}

.highlight-col {
    color: #ffbf3d !important;
}

.winner-cell {
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
}

.probability-cell {
    color: #54d64a;
    font-weight: 900;
    font-size: 18px;
}

.probability-cell::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin: 4px auto 0;
    background: #54d64a;
    border-radius: 999px;
}

.pick-table tbody tr:last-child td {
    border-bottom: none;
}

.mini-unlock-btn {
    border: 0;
    border-radius: 999px;
    padding: 7px 9px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    color: #06101f;
    background: #e8b24a;
}

.mlb-pick-card h2 {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .mlb-pick-card {
        padding: 14px;
        border-radius: 20px;
    }

    .pick-table th,
    .pick-table td {
        padding: 12px 5px;
        font-size: 12px;
        line-height: 1.3;
    }

    .pick-table th {
        font-size: 11px;
        letter-spacing: 0.02em;
    }

    .mini-unlock-btn {
        padding: 7px 8px;
        font-size: 10px;
    }

    .winner-cell {
        font-size: 14px;
    }

    .probability-cell {
        font-size: 16px;
    }
}

.todays-picks-banner {
    padding: 0 0 22px;
}

.todays-picks-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 24px;
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(232,178,74,.18),
            rgba(232,178,74,.05)
        );

    border: 1px solid rgba(232,178,74,.25);
}

.todays-picks-label {
    display: inline-block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;

    color: #e8b24a;
}

.todays-picks-card h2 {
    margin-bottom: 8px;

    font-family: Oswald, sans-serif;
    font-size: 36px;
    line-height: 1;
}

.todays-picks-card p {
    max-width: 700px;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
}

.todays-picks-date {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #e8b24a;
    color: #06101f;

    font-size: 22px;
    font-weight: 900;
    text-align: center;
}

@media (max-width: 640px) {

    .todays-picks-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .todays-picks-card h2 {
        font-size: 28px;
    }

    .todays-picks-date {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }
}

.picks-tabs-section {
    padding: 0 0 18px;
}

.picks-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.picks-tab {
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: rgba(255,255,255,0.72);
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.picks-tab.active {
    background: linear-gradient(180deg, #168cff, #006ee8);
    color: #fff;
    box-shadow: 0 0 22px rgba(0,115,255,.25);
}

.free-pick-table th,
.free-pick-table td {
    width: 20%;
}

.parlay-note {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 193, 7, 0.28);
    border-radius: 14px;
    background: rgba(255, 193, 7, 0.08);
    color: #f8f4df;
    font-size: 0.95rem;
    line-height: 1.5;
}

.parlay-note strong {
    color: #ffd66b;
}

.elite-feature-section {
    padding-top: 36px;
}

.elite-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.04));
}

.elite-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #ffd66b;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.elite-feature-header h2 {
    margin: 0 0 8px;
    color: #fff;
}

.elite-feature-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.elite-credit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #ffd66b;
    color: #111;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(255, 214, 107, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elite-credit-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 214, 107, 0.34);
}

.elite-feature-card {
    border: 1px solid rgba(255, 215, 0, 0.28);
    box-shadow: 0 18px 50px rgba(255, 215, 0, 0.08);
}

.section-mini-header {
    margin: 40px 0 22px;
    text-align: center;
}

.section-mini-header h2 {
    margin: 0 0 8px;
    color: #fff;
}

.section-mini-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 768px) {
    .elite-feature-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .elite-credit-link {
        width: 100%;
    }
}

/* ==========================
   HOW IT WORKS PAGE
========================== */

.how-section {
    padding: 70px 0;
}

.how-credit-banner {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 26px 24px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(255, 214, 107, 0.18),
        rgba(255, 214, 107, 0.06)
    );
    border: 1px solid rgba(255, 214, 107, 0.32);
    box-shadow: 0 18px 50px rgba(255, 214, 107, 0.08);
}

.how-credit-banner strong {
    display: block;
    color: #ffd66b;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.how-credit-banner span {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.how-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: 0.25s ease;
}

.how-card:hover {
    transform: translateY(-3px);
}

.how-card.featured {
    border: 1px solid rgba(255, 214, 107, 0.35);
    background: linear-gradient(
        135deg,
        rgba(255, 214, 107, 0.12),
        rgba(255, 255, 255, 0.03)
    );
}

.how-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 214, 107, 0.15);
    color: #ffd66b;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.how-card h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.4rem;
}

.how-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.how-tip-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255, 214, 107, 0.08);
    border: 1px solid rgba(255, 214, 107, 0.25);
}

.how-tip-card span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffd66b;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.how-tip-card h2 {
    margin: 0 0 12px;
    color: #ffffff;
}

.how-tip-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    max-width: 700px;
    line-height: 1.7;
}

.how-pricing-card {
    background: #111827;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.how-pricing-card h2 {
    margin: 0 0 25px;
    color: #ffffff;
}

.how-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.how-pricing-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.how-pricing-list div:last-child {
    border-bottom: none;
}

.how-pricing-list strong {
    color: #ffffff;
}

.how-pricing-list span {
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-tip-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .how-pricing-list div {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .how-credit-banner strong {
        font-size: 1.6rem;
    }
}

/* ==========================
   CREDITS PAGE - FRESH RESET
========================== */

.credits-page-section {
    padding: 50px 0 80px;
}

.credits-main-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    margin-bottom: 28px;
}

.credits-balance-box,
.credits-topup-box,
.credits-info-card {
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.credits-balance-box {
    padding: 34px;
    text-align: center;
    border-color: rgba(255, 214, 107, 0.28);
}

.credits-balance-box span,
.credits-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffd66b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.credits-balance-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 48px;
    line-height: 1;
}

.credits-balance-box p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
}

.credits-topup-box {
    padding: 34px;
}

.credits-topup-box h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}

.credits-topup-box p {
    max-width: 620px;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.credits-minimum-note {
    display: inline-block;
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 214, 107, 0.08);
    border: 1px solid rgba(255, 214, 107, 0.24);
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 700;
}

.credits-minimum-note strong {
    color: #ffd66b;
}

.credits-topup-box .btn {
    min-width: 240px;
}

.credits-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.credits-info-card {
    padding: 24px;
}

.credits-info-card strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.credits-info-card p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 900px) {
    .credits-main-card,
    .credits-info-grid {
        grid-template-columns: 1fr;
    }

    .credits-balance-box h2 {
        font-size: 38px;
    }

    .credits-topup-box h2 {
        font-size: 34px;
    }

    .credits-topup-box .btn {
        width: 100%;
    }
}

/* ==========================
   ABOUT PAGE
========================== */

.about-page-section {
    padding: 50px 0 80px;
}

.about-main-card {
    max-width: 900px;
    margin: 0 auto 28px;
    padding: 36px;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}

.about-label,
.about-contact-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffd66b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-main-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
}

.about-main-card p {
    margin: 0 0 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.about-main-card p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.about-card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(255,255,255,0.12);
}

.about-card strong {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
}

.about-card p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    line-height: 1.6;
    font-size: 14px;
}

.about-card a {
    color: #ffd66b;
    font-weight: 800;
    text-decoration: none;
}

.about-card a:hover {
    text-decoration: underline;
}

.about-contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 34px;
    border-radius: 24px;
    background: rgba(255, 214, 107, 0.08);
    border: 1px solid rgba(255, 214, 107, 0.24);
}

.about-contact-card h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
}

.about-contact-card p {
    margin: 0;
    max-width: 650px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-contact-card .btn {
        width: 100%;
    }

    .about-main-card,
    .about-contact-card {
        padding: 28px;
    }
}

/* ==========================
   RESULTS PAGE
========================== */

.results-filter-section {
    padding: 10px 0 25px;
}

.results-filters {
    display: flex;
    gap: 12px;
}

.results-filter-btn {
    min-width: 140px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.75);
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
    text-transform: uppercase;
}

.results-filter-btn:hover {
    border-color: rgba(255,214,107,.3);
}

.results-filter-btn.active {
    background: #ffd66b;
    color: #111;
    border-color: #ffd66b;
}

.results-section {
    padding-bottom: 80px;
}

.results-card {
    display: none;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.results-card.active {
    display: block;
}

.results-card h2 {
    margin-bottom: 20px;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.results-table th,
.results-table td {
    width: 16.66%;
}

.result-win,
.result-loss,
.result-pending {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 34px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.result-win {
    background: rgba(84,214,74,.15);
    color: #54d64a;
}

.result-loss {
    background: rgba(255,85,85,.15);
    color: #ff5555;
}

.result-pending {
    background: rgba(255,214,107,.15);
    color: #ffd66b;
}

@media (max-width: 768px) {
    .results-filters {
        flex-direction: column;
    }

    .results-filter-btn {
        width: 100%;
    }
}

.results-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.results-record {
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    white-space: nowrap;
}

.results-date-filter {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.results-date-filter input {
    height: 42px;
    padding: 0 12px;
}

.results-date-filter button,
.results-date-filter a {
    height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.results-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-pagination a {
    text-decoration: none;
}


.auth-page {
    min-height: calc(100vh - 112px);
    padding: 74px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(250, 204, 21, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.08), transparent 34%),
        #020814;
}

.auth-shell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card {
    width: min(100%, 480px);
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.auth-card h1 {
    margin: 18px 0 10px;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.35rem, 6vw, 4rem);
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.auth-subtitle {
    margin: 0 0 24px;
    color: #aab4c3;
    font-size: 0.98rem;
    line-height: 1.6;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form label {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(2, 8, 20, 0.95);
    color: #fff;
    font: inherit;
    padding: 0 15px;
    outline: none;
}

.auth-form input:focus {
    border-color: rgba(250, 204, 21, 0.75);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.10);
}

.auth-submit {
    width: 100%;
    margin-top: 10px;
}

.auth-alert {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(127, 29, 29, 0.55);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
    font-size: 0.92rem;
    line-height: 1.45;
}

.auth-footer {
    margin-top: 22px;
    color: #aab4c3;
    text-align: center;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #facc15;
    font-weight: 800;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .auth-page {
        min-height: calc(100vh - 96px);
        padding: 34px 0 56px;
    }

    .auth-card {
        padding: 24px;
        border-radius: 22px;
    }

    .auth-card h1 {
        font-size: 2.45rem;
    }
}

.auth-success {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(20, 83, 45, 0.55);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.profile-records {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.profile-records div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 15px;
    border-radius: 14px;
    background: rgba(2, 8, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-records span {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.profile-records strong {
    color: #ffffff;
    text-align: right;
}

.locked-picks-wrap {
    position: relative;
}

.locked-picks-wrap.is-locked .pick-table {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.picks-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(2, 8, 20, 0.72);
    backdrop-filter: blur(3px);
    border-radius: 18px;
}

.picks-lock-box {
    max-width: 360px;
    text-align: center;
    background: rgba(0, 0, 0, 0.82);
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.picks-lock-box h3 {
    margin: 0 0 10px;
    color: #facc15;
    font-size: 20px;
}

.picks-lock-box p {
    margin: 0 0 16px;
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 14px;
}

.picks-lock-form {
    margin: 0;
}