/* =========================
   ROOT / BASE — OCEAN'S 11 THEME
   ========================= */

:root {
    /* Deep midnight navy base */
    --black: #0a0e1a;
    --deep: #0d1224;
    --card: #111730;
    --card-2: #161d38;
    --border: #1e2a4a;
    /* Silver / Platinum accent (replaces gold) */
    --gold: #c0c8d8;
    --gold-light: #dce3ef;
    --gold-dim: #8a99b8;
    --gold-2: #9aa8c2;
    /* Red accent from logo slash — split for text vs button use */
    --red: #e85650; /* text/labels on dark bg — 4.64:1+ */
    --red-btn: #b52520; /* button bg with white text — 6.46:1 */
    --red-btn-hover: #cc2f29; /* button hover bg — 5.24:1 */
    --red-light: #f07068; /* hover text accent — 5.70:1+ */
    --red-dim: #9a3030;
    /* Text & UI */
    --white: #eef1f7;
    --text: #bcc5d6;
    --muted: #8d9ab4;
    --green: #28b463;
    --danger: #d9534f;
    /* Shadows & radii */
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    --radius: 18px;
    --radius-sm: 12px;
    /* Layout */
    --site-max: 1200px;
    --content-max: 1100px;
    --gutter: 24px;
    --section-pad: 88px;
    --nav-h: 76px;
}

.hl_page-creator--content,
.hl-page-section,
.hl-page-section > div {
    max-width: 100% !important;
    padding: 0 !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: "Barlow", sans-serif;
}

.bbs-site {
    position: relative;
    width: 100%;
    background: radial-gradient( ellipse 70% 55% at 100% 0%, rgba(192, 200, 216, 0.04) 0%, transparent 60% ), radial-gradient( ellipse 40% 40% at 0% 100%, rgba(201, 42, 42, 0.03) 0%, transparent 50% ), linear-gradient(180deg, #0c1020 0%, #0a0e1a 100%);
}

    .bbs-site::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        opacity: 0.06;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    }

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

/* =========================
   LAYOUT
   ========================= */

.bbs-container {
    width: min(calc(100% - (var(--gutter) * 2)), var(--site-max));
    margin: 0 auto;
}

.bbs-content {
    width: min(100%, var(--content-max));
    margin: 0 auto;
}

.section {
    padding: var(--section-pad) 0;
}

.section-surface {
    background: var(--deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
}

    .section-label::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--red);
    }

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

.bbs-title {
    font-family: "Bebas Neue", sans-serif;
    line-height: 0.95;
    letter-spacing: 1px;
    color: var(--white);
}

.bbs-title-lg {
    font-size: clamp(54px, 9vw, 124px);
}

.bbs-title-md {
    font-size: clamp(38px, 5vw, 68px);
    margin-bottom: 18px;
}

.text-muted {
    color: var(--muted);
}

.text-gold {
    color: var(--red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--red-btn);
    color: #fff;
    border-color: var(--red-btn);
}

    .btn-primary:hover {
        background: var(--red-btn-hover);
        border-color: var(--red-btn-hover);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border);
}

    .btn-outline:hover {
        color: var(--gold);
        border-color: var(--gold);
    }

/* =========================
   NAV
   ========================= */

.bbs-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--nav-h);
    background: rgba(10, 14, 26, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(192, 200, 216, 0.1);
}

.bbs-nav__inner {
    width: min(calc(100% - (var(--gutter) * 2)), var(--site-max));
    margin: 0 auto;
    min-height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bbs-nav__logo img,
.cta__logo,
.footer__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.bbs-nav__logo img {
    height: clamp(42px, 5vw, 64px);
    object-fit: contain;
}

.cta__logo {
    width: min(100%, 420px);
    max-height: 160px;
    object-fit: contain;
    margin: 0 auto 24px;
    filter: drop-shadow(0 0 24px rgba(201, 42, 42, 0.25));
}

.footer__logo {
    width: min(100%, 260px);
    max-height: 96px;
    object-fit: contain;
    margin-bottom: 14px;
}

@media (max-width: 700px) {
    .bbs-nav__logo img {
        height: 44px;
    }

    .cta__logo {
        width: min(100%, 300px);
        max-height: 120px;
    }

    .footer__logo {
        width: min(100%, 220px);
        max-height: 82px;
    }
}

.bbs-nav__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .bbs-nav__menu a {
        text-decoration: none;
        color: var(--muted);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        transition: color 0.18s ease;
    }

        .bbs-nav__menu a:hover,
        .bbs-nav__menu a.is-active {
            color: var(--gold-light);
        }

.bbs-nav__cta {
    padding: 0 18px;
}

.bbs-nav__social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 18px;
    border-left: 1px solid var(--border);
}

    .bbs-nav__social a {
        display: inline-flex;
        color: var(--muted);
        transition: color 0.18s ease, transform 0.18s ease;
    }

        .bbs-nav__social a:hover {
            color: var(--gold-light);
            transform: translateY(-1px);
        }

.bbs-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
}

    .bbs-nav__toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .bbs-nav__toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .bbs-nav__toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .bbs-nav__toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* =========================
   HERO
   ========================= */

.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 72px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse 58% 50% at 82% 42%, rgba(192, 200, 216, 0.06) 0%, transparent 68% ), radial-gradient( ellipse 36% 44% at 12% 90%, rgba(201, 42, 42, 0.06) 0%, transparent 64% ), linear-gradient(160deg, #0d1224 0%, #0a0e1a 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 350px);
    gap: 44px;
    align-items: end;
    width: min(calc(100% - (var(--gutter) * 2)), var(--site-max));
    margin: 0 auto;
}

.hero__logo {
    height: clamp(110px, 15vw, 190px);
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 36px rgba(201, 42, 42, 0.2));
}

.hero__copy {
    max-width: 760px;
}

    .hero__copy em {
        display: block;
        font-style: normal;
        color: var(--red);
    }

.hero__sub {
    margin-top: 24px;
    max-width: 620px;
    font-size: 18px;
    color: var(--muted);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero__stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    padding: 20px 22px;
    background: rgba(192, 200, 216, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-card__num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--gold);
}

.stat-card__label {
    margin-top: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================
   SWIPER TICKER
   ========================= */

.ticker {
    position: relative;
    background: linear-gradient(180deg, #0f1528 0%, #0c1020 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow: hidden;
}

    .ticker::before,
    .ticker::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 64px;
        z-index: 10;
        pointer-events: none;
    }

    .ticker::before {
        left: 0;
        background: linear-gradient(90deg, #0c1020, transparent);
    }

    .ticker::after {
        right: 0;
        background: linear-gradient(270deg, #0c1020, transparent);
    }

    .ticker .swiper {
        overflow: visible;
    }

    .ticker .swiper-wrapper {
        align-items: center;
    }

.ticker__item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: auto !important;
    min-height: 64px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient( 180deg, rgba(192, 200, 216, 0.03) 0%, rgba(192, 200, 216, 0.015) 100% );
    box-shadow: var(--shadow);
    white-space: nowrap;
    cursor: grab;
    user-select: none;
}

    .ticker__item:active {
        cursor: grabbing;
    }

.ticker__teams {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker__team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker__logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.ticker__abbr {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.ticker__vs {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.ticker__meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker__score {
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    line-height: 1;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.ticker__status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(192, 200, 216, 0.03);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

    .ticker__status.live {
        color: var(--red);
        border-color: rgba(201, 42, 42, 0.35);
        background: rgba(201, 42, 42, 0.08);
    }

    .ticker__status.final {
        color: var(--white);
    }

    .ticker__status.upcoming {
        color: var(--muted);
    }

.ticker__league {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.ticker__date {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-dim);
    white-space: nowrap;
}

@media (max-width: 700px) {
    .ticker__item {
        min-height: 54px;
        padding: 8px 14px;
        gap: 10px;
    }

    .ticker__logo {
        width: 20px;
        height: 20px;
    }

    .ticker__abbr {
        font-size: 13px;
    }

    .ticker__score {
        font-size: 20px;
    }

    .ticker__status,
    .ticker__league,
    .ticker__date {
        font-size: 10px;
    }
}

/* =========================
   ABOUT
   ========================= */

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: start;
}

.about__text p {
    margin-bottom: 18px;
    color: var(--muted);
}

.about__text strong {
    color: var(--white);
    font-weight: 600;
}

.about__features {
    display: grid;
    gap: 16px;
}

.feature-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.feature-card__icon {
    font-size: 28px;
    line-height: 1;
}

.feature-card__title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-card__desc {
    color: var(--muted);
    font-size: 14px;
}

/* =========================
   BOOKS
   ========================= */

.book-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.book-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease;
}

    .book-pill:hover {
        border-color: var(--gold);
        transform: translateY(-1px);
    }

.book-pill__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.book-pill__name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.book-pill__status {
    font-size: 11px;
    color: var(--red);
}

.book-pill__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.book-pill__logo--dark {
    filter: brightness(0) invert(1);
}

.tab-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.tab-btn {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--muted);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.18s ease;
}

    .tab-btn:hover,
    .tab-btn.is-active {
        background: var(--red-btn);
        border-color: var(--red-btn);
        color: #fff;
    }

.odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

/* =========================
   GAME CARD
   ========================= */

.game-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--card-2);
    border-bottom: 1px solid var(--border);
}

.game-card__sport {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.game-card__time {
    font-size: 12px;
    color: var(--muted);
}

.game-card__live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .game-card__live::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        animation: pulse 1.2s ease infinite;
    }

.game-card__body {
    padding: 18px;
}

.team-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

    .team-row:last-child {
        border-bottom: 0;
    }

.team-row__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-row__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-row__name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.team-row__meta {
    font-size: 12px;
    color: var(--muted);
}

.team-row__score {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
    min-width: 32px;
    text-align: right;
}

    .team-row__score.winner {
        color: var(--green);
    }

.odds-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.odd-box {
    min-width: 56px;
    padding: 8px 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--deep);
    text-align: center;
    text-decoration: none;
}

.odd-box__book {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.odd-box__value {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

    .odd-box__value.positive {
        color: var(--green);
    }

    .odd-box__value.negative {
        color: var(--gold);
    }

.game-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    background: rgba(201, 42, 42, 0.03);
    border-top: 1px solid var(--border);
}

.pick-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(201, 42, 42, 0.1);
    border: 1px solid var(--red-dim);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(40, 180, 99, 0.1);
    border: 1px solid rgba(40, 180, 99, 0.3);
}

.empty-state {
    padding: 36px 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    color: var(--muted);
    background: rgba(192, 200, 216, 0.015);
}

.game-card__pitchers {
    display: flex;
    gap: 16px;
    padding: 10px 18px;
    border-top: 1px solid var(--border);
    background: rgba(192, 200, 216, 0.015);
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
}

.game-card__pitcher-item strong {
    color: var(--white);
    font-weight: 600;
}

/* =========================
   ROSTER TABLE
   ========================= */

.roster-table-wrap {
    margin-top: 38px;
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}

.roster-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

    .roster-table th {
        padding: 14px 18px;
        text-align: left;
        background: var(--card-2);
        border-bottom: 1px solid var(--border);
        font-family: "Barlow Condensed", sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gold);
    }

    .roster-table td {
        padding: 16px 18px;
        border-bottom: 1px solid var(--border);
        color: var(--muted);
        font-size: 14px;
    }

    .roster-table tbody tr:last-child td {
        border-bottom: 0;
    }

.roster-code {
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    color: var(--gold);
}

.roster-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

/* =========================
   PREMIUM / HANDICAPPER SECTION
   ========================= */

.handicapper-section {
    padding: 88px 0;
}

.handicapper-section__shell {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient( 180deg, rgba(192, 200, 216, 0.025), rgba(192, 200, 216, 0.008) ), linear-gradient( 135deg, rgba(138, 153, 184, 0.04), rgba(138, 153, 184, 0.01) );
    border: 1px solid rgba(192, 200, 216, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.handicapper-section__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(192, 200, 216, 0.08);
    padding-bottom: 20px;
}

.handicapper-section__title {
    font-size: 2.2rem;
    color: #fff;
}

.handicapper-section__subtitle {
    color: rgba(192, 200, 216, 0.7);
}

/* =========================
   HANDICAPPER GRID
   ========================= */

.handicapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =========================
   BIO CARD
   ========================= */

.bio-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient( 180deg, rgba(192, 200, 216, 0.035), rgba(192, 200, 216, 0.012) );
    border: 1px solid rgba(192, 200, 216, 0.1);
    transition: all 0.2s ease;
}

    .bio-card:hover {
        transform: translateY(-6px);
        border-color: rgba(192, 200, 216, 0.25);
    }

.bio-card--link {
    text-decoration: none;
    color: inherit;
}

.bio-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.bio-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(192, 200, 216, 0.25);
}

.bio-card__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-card__name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.bio-card__specialty {
    font-size: 0.8rem;
    color: var(--gold-dim);
    text-transform: uppercase;
}

.bio-card__badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.bio-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    background: rgba(192, 200, 216, 0.06);
    color: var(--muted);
}

.bio-badge--hot {
    background: rgba(192, 200, 216, 0.1);
    color: var(--gold-light);
}

.bio-card__body {
    font-size: 14px;
    color: var(--muted);
}

.bio-card__stats {
    display: flex;
    gap: 24px;
    margin-top: 18px;
}

.bio-card__num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--gold);
    line-height: 1;
}

.bio-card__label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-card__footer {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.bio-card__cta {
    color: var(--red);
    font-size: 12px;
}

/* =========================
   MEMBERSHIP
   ========================= */

.membership-hero {
    max-width: 620px;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--red-btn);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.price-label {
    margin-top: 26px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
}

.price-row {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.price-row__currency {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
    margin-top: 8px;
}

.price-row__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 98px;
    line-height: 0.9;
    color: var(--white);
    letter-spacing: -2px;
}

.price-row__period {
    margin-top: 22px;
    font-size: 20px;
    color: var(--muted);
}

.pricing-note {
    margin-top: 16px;
    color: var(--muted);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 18px;
}

.compare-box,
.compare-eq {
    background: var(--deep);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    min-height: 92px;
}

.compare-eq {
    padding: 0 14px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--gold);
}

.compare-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
}

.compare-label {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

    .feature-list li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 14px 16px;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--deep);
        color: var(--text);
        font-size: 14px;
    }

        .feature-list li::before {
            content: "\2713";
            color: var(--red);
            font-weight: 700;
            flex-shrink: 0;
        }

.callout {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid var(--red-dim);
    background: rgba(201, 42, 42, 0.04);
}

.callout__title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}

.discord-card {
    margin-top: 24px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(88, 101, 242, 0.35);
    background: rgba(88, 101, 242, 0.07);
}

.discord-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.discord-card__eyebrow {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5865f2;
}

.discord-card__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
}

.discord-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0 20px;
}

.discord-pill {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--deep);
}

.discord-pill__name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5865f2;
    margin-bottom: 4px;
}

.discord-pill__text {
    font-size: 13px;
    color: var(--muted);
}

/* =========================
   STORE
   ========================= */

.store-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1/1;
    background: #1a2040;
    overflow: hidden;
}

    .product-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.28s ease;
    }

.product-card:hover .product-card__media img {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

    .product-card__badge.new {
        background: var(--red-btn);
        color: #fff;
    }

    .product-card__badge.hot {
        background: var(--red-btn-hover);
        color: #fff;
    }

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(10, 14, 26, 0.75);
    transition: opacity 0.2s ease;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__body {
    padding: 18px;
}

.product-card__name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
}

.product-card__desc {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted);
    min-height: 42px;
}

.product-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.product-card__price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    color: var(--gold-light);
    line-height: 1;
}

.size-row {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.size-dot {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    font-size: 8px;
    font-weight: 700;
    color: var(--muted);
    font-family: "Barlow Condensed", sans-serif;
}

.store-cta {
    margin-top: 30px;
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .store-cta h3 {
        font-family: "Bebas Neue", sans-serif;
        font-size: 30px;
        line-height: 1;
        color: var(--white);
    }

    .store-cta p {
        color: var(--muted);
        margin-top: 6px;
    }

/* =========================
   TESTIMONIALS
   ========================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.testimonial-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--card);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--red);
    margin-bottom: 14px;
    font-size: 14px;
}

.testimonial-text {
    color: var(--text);
    font-size: 15px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-author {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.testimonial-record {
    margin-top: 4px;
    font-size: 12px;
    color: var(--red);
}

/* =========================
   FINAL CTA
   ========================= */

.cta {
    text-align: center;
    overflow: hidden;
}

    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( ellipse 70% 60% at 50% 50%, rgba(201, 42, 42, 0.05) 0%, transparent 70% );
        pointer-events: none;
    }

    .cta .bbs-container {
        position: relative;
        z-index: 1;
    }

.cta__body {
    max-width: 560px;
    margin: 0 auto;
}

.cta__actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   FOOTER
   ========================= */

.footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 68px 0 34px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 34px;
}

.footer__tag {
    max-width: 290px;
    color: var(--muted);
    font-size: 14px;
}

.footer__col h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer__col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 10px;
}

    .footer__col a:hover {
        color: var(--gold-light);
    }

.disclaimer {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(192, 200, 216, 0.02);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

    .disclaimer strong {
        color: var(--white);
    }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
}

.footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .footer__bottom-links a {
        text-decoration: none;
        color: var(--muted);
    }

        .footer__bottom-links a:hover {
            color: var(--gold-light);
        }

/* =========================
   ANIMATIONS
   ========================= */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
    .book-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer__top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .handicapper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .hero__inner,
    .about__grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    :root {
        --section-pad: 70px;
    }

    .bbs-nav__toggle {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bbs-nav__social {
        display: none;
    }

    .bbs-nav__menu {
        display: none;
        position: absolute;
        top: calc(var(--nav-h) + 10px);
        left: var(--gutter);
        right: var(--gutter);
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(10, 14, 26, 0.98);
        box-shadow: var(--shadow);
    }

        .bbs-nav__menu.is-open {
            display: flex;
        }

    .book-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-list,
    .discord-grid,
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    :root {
        --gutter: 18px;
        --section-pad: 60px;
    }

    .hero__stats,
    .book-row,
    .feature-list,
    .discord-grid,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .store-head,
    .store-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .compare-eq {
        min-height: 44px;
        border-radius: 14px;
    }

    .hero__logo {
        height: 128px;
    }

    .bbs-title-lg {
        font-size: 56px;
    }

    .product-grid,
    .card-grid,
    .odds-grid {
        grid-template-columns: 1fr;
    }

    .handicapper-grid {
        grid-template-columns: 1fr;
    }
}

.handicapper-section__intro {
    max-width: 760px;
}

.handicapper-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(192, 200, 216, 0.06);
    border: 1px solid rgba(192, 200, 216, 0.15);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.handicapper-section__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.handicapper-section__pill {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(192, 200, 216, 0.035);
    border: 1px solid rgba(192, 200, 216, 0.08);
    color: rgba(192, 200, 216, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bio-card__rank {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(192, 200, 216, 0.08);
    border: 1px solid rgba(192, 200, 216, 0.18);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bio-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 92px;
}

.bio-card__avatar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.bio-card__code {
    min-width: 42px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(192, 200, 216, 0.08);
    border: 1px solid rgba(192, 200, 216, 0.18);
    color: var(--gold);
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
}

.bio-card__identity {
    min-width: 0;
    flex: 1 1 auto;
}

.bio-stat {
    padding: 12px;
    border-radius: 12px;
    background: rgba(192, 200, 216, 0.03);
    border: 1px solid rgba(192, 200, 216, 0.08);
}

.bio-stat__value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.bio-stat__label {
    font-size: 0.7rem;
    color: rgba(192, 200, 216, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bio-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 6px;
}

.bio-card__trend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(192, 200, 216, 0.6);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bio-card__trend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(192, 200, 216, 0.1);
}

.bio-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bio-card__cta-arrow {
    transition: transform 180ms ease;
}

.bio-card--link:hover .bio-card__cta-arrow {
    transform: translateX(3px);
}

.bio-card--link:focus-visible {
    outline: 2px solid rgba(192, 200, 216, 0.45);
    outline-offset: 3px;
}

@media (max-width: 860px) {
    .handicapper-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .handicapper-section__meta {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .bio-card__top {
        padding-right: 0;
    }

    .bio-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   PRICING GRID
   ========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: visible;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    .plan-card:hover {
        transform: translateY(-4px);
        border-color: rgba(192, 200, 216, 0.2);
    }

.plan-card--popular {
    border-color: var(--red);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(232, 86, 80, 0.12);
}

    .plan-card--popular:hover {
        border-color: var(--red-light);
    }

.plan-card__popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 999px;
    background: var(--red-btn);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-card__inner {
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plan-card--popular .plan-card__inner {
    padding-top: 42px;
}

.plan-card__name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.plan-card__amount {
    font-family: "Bebas Neue", sans-serif;
    font-size: 56px;
    line-height: 1;
    color: var(--red);
    letter-spacing: -1px;
}

.plan-card__period {
    font-size: 16px;
    color: var(--muted);
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    width: 100%;
}

    .plan-card__features li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 0;
        border-top: 1px solid var(--border);
        font-size: 14px;
        color: var(--text);
    }

        .plan-card__features li:last-child {
            border-bottom: 1px solid var(--border);
        }

        .plan-card__features li strong {
            color: var(--white);
            font-weight: 700;
        }

.plan-card__check {
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
}

.plan-card__cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 12px;
    letter-spacing: 1.5px;
}

.plan-card__form {
    margin: 0;
}

.plan-card__cta-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

code {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 12px;
}

.cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .cta__actions .btn {
        min-width: 200px;
        justify-content: center;
    }

@media (max-width: 800px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .plan-card--popular {
        order: -1;
    }
}

.pick-profile-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pick-profile-cta__person {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    font-weight: 800;
    font-size: 13px;
}

.pick-profile-cta__img {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.18);
}

.pick-profile-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    color: #111;
    background: #f5c542;
    white-space: nowrap;
}

/* ── PICKS PAGE ── */
.picks-shell { padding: 32px 0 72px; }
.picks-header { display:flex; justify-content:space-between; align-items:end; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.wallet-card { min-width:220px; border-radius:20px; padding:18px 20px; border:1px solid rgba(255,255,255,.08); background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015)),rgba(10,16,34,.78); box-shadow:0 18px 40px rgba(0,0,0,.22); }
.wallet-card__label { font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.58); margin-bottom:6px; }
.wallet-card__value { font-size:34px; font-weight:800; color:#fff; line-height:1; }
.picks-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.pick-card { border-radius:24px; overflow:hidden; border:1px solid rgba(255,255,255,.08); background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015)),rgba(10,16,34,.78); box-shadow:0 18px 40px rgba(0,0,0,.22); }
.pick-card__inner { padding:20px; display:flex; flex-direction:column; gap:16px; height:100%; }
.pick-card__top { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.pick-persona { display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }
.pick-persona__avatar { width:38px; height:38px; border-radius:50%; object-fit:cover; border:1px solid rgba(255,255,255,.08); }
.pick-chip-cost { display:inline-flex; align-items:center; gap:6px; border-radius:999px; padding:6px 10px; font-size:12px; font-weight:700; background:rgba(232,86,80,.12); color:#ff918b; border:1px solid rgba(232,86,80,.22); white-space:nowrap; }
.pick-matchup { text-align:center; }
.pick-logos { display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:8px; }
.pick-team-logo { width:44px; height:44px; object-fit:contain; border-radius:50%; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); padding:4px; }
.pick-matchup__title { font-size:1.05rem; font-weight:700; color:#fff; }
.pick-matchup__meta { font-size:14px; color:rgba(255,255,255,.60); margin-top:6px; }
.pick-body { border-radius:18px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.025); padding:18px; }
.pick-body--locked { position:relative; overflow:hidden; }
.pick-body--locked .pick-body__content { filter:blur(4px); user-select:none; }
.pick-body__overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg,rgba(9,10,12,.14),rgba(9,10,12,.42)); }
.pick-tags { display:flex; flex-wrap:wrap; gap:8px; }
.pick-tags span { padding:6px 10px; border-radius:999px; font-size:12px; color:rgba(255,255,255,.72); background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); }
.pick-analysis { color:rgba(255,255,255,.78); line-height:1.6; font-size:14px; }
.pick-actions { display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; }
@media (max-width:1100px) { .picks-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:767.98px) { .picks-grid { grid-template-columns:1fr; } }

/* ── PROFILE / ACCOUNT / CHIP HISTORY ── */
.profile-shell { padding:72px 0; }
.profile-wrap { width:min(100%,1120px); margin:0 auto; }
.profile-header { display:grid; gap:14px; margin-bottom:24px; }
.profile-eyebrow { display:inline-flex; align-items:center; gap:10px; font-family:"Barlow Condensed",sans-serif; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--red); }
.profile-eyebrow::before { content:""; width:24px; height:1px; background:var(--red); }
.profile-title { margin:0; font-family:"Bebas Neue",sans-serif; font-size:clamp(38px,6vw,58px); line-height:1; letter-spacing:1px; color:var(--white); }
.profile-subtitle { color:var(--muted); font-size:15px; margin:0; }
.profile-grid { display:grid; grid-template-columns:1.2fr .8fr; gap:22px; }
.profile-stack { display:grid; gap:22px; }
.profile-card { border:1px solid var(--border); border-radius:22px; background:var(--card); box-shadow:var(--shadow); overflow:hidden; }
.profile-card__head { padding:22px 24px 16px; border-bottom:1px solid var(--border); background:linear-gradient(180deg,rgba(192,200,216,.03),rgba(192,200,216,.01)); }
.profile-card__body { padding:24px; }
.profile-card__title { margin:0; font-family:"Barlow Condensed",sans-serif; font-size:18px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--white); }
.profile-kpis { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.profile-kpi { border:1px solid var(--border); border-radius:18px; background:rgba(192,200,216,.03); padding:18px; }
.profile-kpi__label { font-family:"Barlow Condensed",sans-serif; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:8px; }
.profile-kpi__value { font-size:28px; font-weight:800; color:var(--white); line-height:1.1; }
.profile-list { display:grid; gap:16px; }
.profile-row { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; padding-bottom:16px; border-bottom:1px solid var(--border); }
.profile-row:last-child { border-bottom:0; padding-bottom:0; }
.profile-row__label { font-family:"Barlow Condensed",sans-serif; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--muted); }
.profile-row__value { color:var(--white); text-align:right; font-size:15px; }
.profile-status { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; }
.profile-status--good { color:#d9ffe8; border:1px solid rgba(86,232,148,.25); background:rgba(86,232,148,.08); }
.profile-status--warn { color:#ffe6c7; border:1px solid rgba(255,180,90,.25); background:rgba(255,180,90,.08); }
.profile-status--neutral { color:#dfe7f5; border:1px solid rgba(192,200,216,.18); background:rgba(192,200,216,.06); }
.profile-actions { display:grid; gap:12px; }
.profile-note { margin-top:14px; color:var(--muted); font-size:13px; line-height:1.6; }
.profile-chip-card { position:relative; overflow:hidden; }
.profile-chip-card::after { content:""; position:absolute; inset:auto -60px -60px auto; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle,rgba(232,86,80,.18),transparent 65%); pointer-events:none; }
.profile-chip-balance { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.profile-chip-balance__value { font-size:clamp(42px,6vw,64px); line-height:1; font-weight:900; color:var(--white); }
.profile-chip-balance__label { font-family:"Barlow Condensed",sans-serif; font-size:14px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold-light); }
.profile-links { display:grid; gap:10px; }
.profile-links a { color:var(--gold-light); text-decoration:none; }
.profile-links a:hover { color:var(--red-light,#ff918b); }
@media (max-width:900px) { .profile-grid { grid-template-columns:1fr; } .profile-kpis { grid-template-columns:1fr; } .profile-row { flex-direction:column; } .profile-row__value { text-align:left; } }

/* ── CHIP HISTORY TABLE ── */
.history-table-wrap { overflow-x:auto; }
.history-table { width:100%; border-collapse:collapse; min-width:720px; }
.history-table th { text-align:left; padding:14px 16px; font-family:"Barlow Condensed",sans-serif; font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--muted); border-bottom:1px solid var(--border); }
.history-table td { padding:16px; border-bottom:1px solid var(--border); color:var(--white); font-size:14px; vertical-align:top; }
.history-table tr:last-child td { border-bottom:0; }
.chip-amount { font-weight:800; white-space:nowrap; }
.chip-amount--positive { color:#c9ffe2; }
.chip-amount--negative { color:#ffb4af; }
.chip-type { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; }
.chip-type--credit { color:#d9ffe8; border:1px solid rgba(86,232,148,.25); background:rgba(86,232,148,.08); }
.chip-type--debit { color:#ffe6c7; border:1px solid rgba(255,180,90,.25); background:rgba(255,180,90,.08); }
.history-empty { color:var(--muted); font-size:15px; line-height:1.7; }