/**
 * Office Pool Hub — light theme polish
 * Refines spacing, brand color, cards, and typography on top of site-ui.css
 */

:root {
    --site-canvas: #eef2f7;
    --site-border: #cfd9e4;
    --site-emerald-tint: #ecfbf5;
    --site-emerald-tint-strong: #d6f5ea;
    --site-shadow: 0 6px 20px rgba(11, 31, 51, .07);
    --site-shadow-lg: 0 14px 36px rgba(11, 31, 51, .11);
    --site-radius: 14px;
}

body {
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header-2 .headerbox {
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(11, 31, 51, .06), 0 4px 18px rgba(11, 31, 51, .05);
}

.site-header-nav .site-nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header-nav .site-nav-menu > li {
    position: relative;
    margin: 0;
}

.site-header-nav .site-nav-menu > li > a {
    display: block;
    padding: 10px 2px;
    color: var(--site-navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.site-header-nav .site-nav-menu > li > a:hover,
.site-header-nav .site-nav-menu > li > a:focus {
    color: var(--site-emerald);
    text-decoration: none;
}

.site-header-account-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 10001;
    min-width: 210px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--site-shadow-lg);
}

.site-header-account::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
}

.site-header-account:hover .site-header-account-menu,
.site-header-account:focus-within .site-header-account-menu {
    display: block;
}

.site-header-account-menu li a {
    display: block;
    padding: 11px 16px;
    color: var(--site-navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.3;
}

.site-header-account-menu li a:hover,
.site-header-account-menu li a:focus {
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
    text-decoration: none;
}

/* Page tabs (Find a Pool, etc.) */
.oph-page-tabs,
.scores-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.oph-page-tab,
.scores-tab {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    color: var(--site-navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.oph-page-tab:hover,
.scores-tab:hover {
    border-color: var(--site-emerald);
    color: var(--site-emerald-dark);
    text-decoration: none;
}

.oph-page-tab.is-active,
.scores-tab.is-active {
    border-color: var(--site-emerald);
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
}

.oph-tab-panel {
    margin-top: 8px;
}

.scores-view-toggle {
    display: inline-flex;
    gap: 0;
    margin: 0 0 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.scores-view-btn {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--site-navy);
    text-decoration: none;
    border-right: 1px solid var(--site-border);
    transition: background .15s ease, color .15s ease;
    background: #fff;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    cursor: pointer;
    font-family: inherit;
}

.scores-view-btn:last-child {
    border-right: 0;
}

.scores-view-btn:hover {
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
    text-decoration: none;
}

.scores-view-btn.is-active {
    background: var(--site-emerald);
    color: #fff;
}

.scores-daily-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

/* Scores hub */
.scores-page .scores-hero {
    margin-bottom: 16px;
}

.scores-toolbar-panel {
    margin-bottom: 16px;
}

.scores-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.scores-toolbar-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
}

.scores-toolbar-form label {
    margin: 0;
    font-weight: 600;
    color: var(--site-navy);
}

.scores-toolbar-form select,
.scores-toolbar-form input[type="date"] {
    min-width: 160px;
    min-height: 38px;
    border-radius: 8px;
    border: 1px solid var(--site-border);
    padding: 6px 10px;
}

.scores-spreads-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 600;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.scores-card {
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    background: #fff;
    box-shadow: var(--site-shadow);
    padding: 14px 16px;
}

.scores-card--live {
    border-color: #f59e0b;
    box-shadow: 0 0 0 1px rgba(245, 158, 11, .15);
}

.scores-card--final {
    opacity: .95;
}

.scores-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #64748b;
}

.scores-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.scores-badge-live {
    background: #fef3c7;
    color: #b45309;
}

.scores-badge-final {
    background: #ecfdf5;
    color: #047857;
}

.scores-badge-scheduled {
    background: #eff6ff;
    color: #1d4ed8;
}

.scores-card-team {
    display: grid;
    grid-template-columns: 28px 1fr auto auto;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.scores-card-team-home {
    border-top: 1px solid #eef2f7;
    margin-top: 4px;
    padding-top: 10px;
}

.scores-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.scores-team-name {
    font-weight: 700;
    color: var(--site-navy);
}

.scores-team-score {
    font-size: 18px;
    color: var(--site-navy);
}

.scores-home-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 10px;
    font-weight: 800;
}

.scores-card-spread {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--site-border);
    font-size: 12px;
    color: #64748b;
}

/* Pick sheets hub */
.pick-sheets-featured {
    margin-top: 12px;
    border: 1px solid var(--site-border);
    box-shadow: none;
}

.pick-sheets-sport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.pick-sheets-sport-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: var(--site-navy);
    box-shadow: var(--site-shadow);
}

.pick-sheets-sport-card:hover {
    border-color: var(--site-emerald);
    text-decoration: none;
    color: var(--site-emerald-dark);
}

.pick-sheets-sport-card span {
    font-size: 13px;
    color: #64748b;
}

.pick-sheets-pool-list {
    margin-bottom: 20px;
    border: 1px solid var(--site-border);
    box-shadow: none;
}

.pick-sheets-pool-cards {
    display: grid;
    gap: 14px;
}

.pick-sheets-pool-card {
    padding: 16px 18px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #f8fafc;
}

.pick-sheets-pool-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
}

.pick-sheets-pool-card__head span {
    font-size: 13px;
    color: #64748b;
}

.pick-sheets-pool-card__status {
    margin: 8px 0 12px;
    font-size: 13px;
}

/* SEO landing pages */
.landing-page {
    background: #fff;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--site-border);
}

.landing-hero-copy .start-lead {
    margin: 0 0 24px;
    max-width: 56ch;
}

.landing-hero-copy .start-hero-actions {
    margin-bottom: 0;
}

.landing-section .start-section-head h2 {
    margin: 0 0 12px;
}

.landing-hero-inner {
    max-width: 860px;
}

.landing-hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    color: var(--site-navy);
}

.landing-section {
    padding: 40px 0;
}

.landing-section--alt {
    background: #f8fafc;
}

.landing-narrow {
    max-width: 820px;
}

.landing-summary {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #334155;
}

.landing-steps {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.landing-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
}

.landing-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--site-emerald);
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-step h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.landing-step p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.landing-feature {
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
}

.landing-feature h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.landing-feature p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.landing-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.landing-faq {
    border: 1px solid var(--site-border);
    border-radius: 10px;
    background: #fff;
    padding: 0 16px;
}

.landing-faq summary {
    cursor: pointer;
    font-weight: 600;
    padding: 14px 0;
    color: var(--site-navy);
}

.landing-faq p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.6;
}

.landing-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.landing-related-links a {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    color: var(--site-navy);
}

.landing-related-links a:hover {
    border-color: var(--site-emerald);
    color: var(--site-emerald-dark);
    text-decoration: none;
}

.landing-cta {
    padding: 48px 0 56px;
    background: var(--site-navy);
    color: #fff;
}

.landing-cta-inner {
    text-align: center;
}

.landing-cta h2 {
    margin: 0 0 12px;
    color: #fff;
}

.landing-cta p {
    margin: 0 0 20px;
    color: #cbd5e1;
    line-height: 1.6;
}

.site-footer-guides {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    justify-content: center;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
}

.site-footer-guides strong {
    color: #e2e8f0;
    font-size: 13px;
    margin-right: 4px;
}

.site-footer-guides a {
    color: #cbd5e1;
    font-size: 13px;
    text-decoration: none;
}

.site-footer-guides a:hover {
    color: #fff;
    text-decoration: underline;
}

.pool-guides-block {
    margin-top: 8px;
}

.pool-guides-block__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 20px;
}

.pool-guides-block__head h2 {
    margin: 0 0 8px;
}

.pool-guides-block__head p {
    margin: 0;
    color: #64748b;
}

.pool-guides-block__more {
    margin: 16px 0 0;
    text-align: center;
}

.landing-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.landing-guides-grid--compact {
    margin-top: 8px;
}

.landing-guide-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: var(--site-navy);
    box-shadow: var(--site-shadow);
    min-height: 100%;
}

.landing-guide-card strong {
    font-size: 14px;
    color: var(--site-emerald-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.landing-guide-card span {
    font-size: 15px;
    line-height: 1.5;
    color: #334155;
}

.landing-guide-card em {
    font-style: normal;
    font-size: 13px;
    color: var(--site-emerald-dark);
    margin-top: auto;
}

.landing-guide-card:hover {
    border-color: var(--site-emerald);
    text-decoration: none;
    color: var(--site-navy);
}

.pick-sheet-options-form {
    max-width: 520px;
}

.pick-sheet-featured-form {
    margin-bottom: 12px;
}

.pick-sheet-option-row {
    margin-bottom: 14px;
}

.pick-sheet-option-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--site-navy);
}

.pick-sheet-option-row select,
.pick-sheet-option-row .form-control {
    width: 100%;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid var(--site-border);
    padding: 8px 12px;
}

.pick-sheet-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}

.pick-sheet-checkbox input {
    margin: 0;
}

.pick-sheet-option-actions {
    margin-top: 18px;
}

.pick-sheet-note {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 13px;
}

.pick-sheet-fill-page .pick-sheet-fill-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
}

.pick-sheet-fill-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pick-sheet-fill-table th,
.pick-sheet-fill-table td {
    border: 1px solid var(--site-border);
    padding: 10px 12px;
    vertical-align: middle;
}

.pick-sheet-fill-table th {
    background: #f3f4f6;
    text-align: left;
    font-size: 13px;
}

.pick-sheet-fill-date-row td {
    background: var(--site-emerald-tint);
    font-weight: 700;
    color: var(--site-navy);
}

.pick-sheet-fill-pick-col {
    width: 56px;
    text-align: center;
}

.pick-sheet-fill-choice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}

.pick-sheet-fill-choice input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pick-sheet-fill-circle {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid var(--site-navy);
    border-radius: 50%;
    transition: background .12s ease, box-shadow .12s ease;
}

.pick-sheet-fill-choice input:checked + .pick-sheet-fill-circle {
    background: var(--site-emerald);
    border-color: var(--site-emerald-dark);
    box-shadow: inset 0 0 0 3px #fff;
}

.pick-sheet-fill-choice input:focus-visible + .pick-sheet-fill-circle {
    outline: 2px solid var(--site-emerald);
    outline-offset: 2px;
}

.pick-sheet-fill-tiebreaker {
    max-width: 420px;
    margin: 20px 0 12px;
}

.pick-sheet-fill-tiebreaker-game {
    font-size: 13px;
    margin: 4px 0 4px;
    font-weight: 700;
}

.pick-sheet-fill-tiebreaker-note {
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0 0 10px;
    max-width: 560px;
}

.pick-sheet-fill-tiebreaker-input {
    max-width: 120px;
}

.pick-sheet-fill-summary {
    font-size: 14px;
    font-weight: 600;
    color: var(--site-navy);
    margin-bottom: 12px;
}

.pick-sheet-fill-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.pick-sheet-fill-actions .btn-lg {
    min-height: 44px;
}

.pick-sheet-intake-list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.pick-sheet-intake-list li + li {
    margin-top: 8px;
}

.pick-sheet-intake-sources {
    margin: 16px 0;
    background: #f9fafb;
}

.pool-paper-intake-actions .btn {
    min-height: 38px;
}

.pick-sheet-ocr-panel,
.pick-sheet-ocr-results {
    margin-bottom: 16px;
}

.pool-renew-page .pool-renew-copy {
    margin: 16px 0;
    background: #f9fafb;
}

.pool-renew-page .matchweek-option {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.pool-renew-page .pool-form-field {
    margin-bottom: 16px;
}

.pick-sheet-ocr-text {
    max-height: 260px;
    overflow: auto;
    background: #f9fafb;
    border: 1px solid var(--site-border);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    white-space: pre-wrap;
}

.pick-sheet-ocr-name-hint {
    font-size: 14px;
    margin: 8px 0 12px;
}

.pick-sheet-ocr-clear-form {
    margin-top: 12px;
}

.team-pick.is-ocr-suggested {
    border-color: #16a34a;
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.35);
}

.team-pick__ocr-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
    vertical-align: middle;
    white-space: normal;
}

@media (max-width: 991px) {
    .site-header-nav .site-nav-menu {
        gap: 2px 12px;
    }

    .site-header-nav .site-nav-menu > li > a {
        font-size: 13px;
    }
}

.site-header-btn,
.site-header-account-toggle {
    border-radius: 8px;
}

/* Cards & panels */
.panel-box {
    border-color: var(--site-border);
    box-shadow: var(--site-shadow);
}

.content-info .panel-box:not(.sc-stat-card):not(.sc-shark-card) .titles {
    padding: 14px 20px;
    border-bottom: none;
    background: linear-gradient(135deg, var(--site-navy-soft) 0%, var(--site-navy) 100%);
}

.content-info .panel-box:not(.sc-stat-card):not(.sc-shark-card) .titles h3,
.content-info .panel-box:not(.sc-stat-card):not(.sc-shark-card) .titles h4 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    letter-spacing: .01em;
}

.panel-box .info-panel {
    padding: 22px 24px;
}

/* Buttons */
.btn {
    min-height: 40px;
    padding: 9px 18px;
    letter-spacing: .02em;
}

.btn-primary:hover {
    box-shadow: 0 4px 14px rgba(0, 166, 122, .28);
}

.btn-default {
    border: 1px solid #8fa6ba;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(11, 31, 51, .08);
}

.btn-default:hover {
    border-color: #334e68;
    box-shadow: 0 2px 8px rgba(11, 31, 51, .12);
}

/* Forms */
.form-control,
.content-info select,
.content-info input[type="text"],
.content-info input[type="email"],
.content-info input[type="password"],
.content-info input[type="date"],
.content-info input[type="number"],
.content-info textarea {
    border-radius: 8px;
    border-color: #c5d3e0;
    transition: border-color .15s ease, box-shadow .15s ease;
}

/* Tables */
.table thead th {
    background: #e8eef5;
    color: var(--site-navy);
    font-size: 11px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: #f7f9fc;
}

/* Homepage hero */
.home-intro-card {
    padding: 24px 26px 22px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 16px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--site-shadow-lg);
}

.home-action-card {
    min-height: 128px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-action-card-primary {
    border-color: rgba(0, 166, 122, .4);
    background: linear-gradient(165deg, var(--site-emerald-tint) 0%, #fff 55%);
}

.home-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
    font-size: 18px;
}

.home-action-card-primary .home-action-icon {
    background: var(--site-emerald-tint-strong);
}

.home-page .home-section-alt {
    background: linear-gradient(180deg, #e8eef5 0%, var(--site-canvas) 100%);
}

.home-format-card,
.home-start-card,
.home-step {
    border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.home-format-card {
    border-top: 3px solid var(--site-emerald);
}

.home-format-card:hover,
.home-start-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--site-shadow-lg);
}

.home-section-head h2 {
    font-size: 32px;
    letter-spacing: -.02em;
}

/* Homepage OPH Shark — same solid navy as footer */
.home-shark-block.oph-shark-tile--dark {
    background: var(--site-navy);
    border: none;
}

.home-shark-copy h2 {
    color: #fff;
    font-size: 28px;
    letter-spacing: -.02em;
}
.home-shark-block,
.beat-shark-hero,
.sc-shark-inner.oph-shark-tile--dark {
    box-shadow: var(--site-shadow-lg);
}

.home-shark-visual,
.beat-shark-hero-visual,
.beat-shark-today-visual,
.sc-shark-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beat-shark-hero-visual::before,
.beat-shark-today-visual::before,
.sc-shark-visual::before {
    content: "";
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(24, 22, 58, .85) 0%, transparent 68%);
    pointer-events: none;
}

.home-shark-visual::before {
    content: "";
    position: absolute;
    inset: 8% 0;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(11, 31, 51, .92) 0%, transparent 68%);
    pointer-events: none;
}

.home-shark-visual .oph-shark-pose-img,
.beat-shark-hero-visual .oph-shark-pose-img,
.beat-shark-today-visual .oph-shark-pose-img,
.sc-shark-visual .oph-shark-pose-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .28));
}

.oph-shark-tile--light .oph-shark-pose-img,
.beat-shark-step-card .oph-shark-pose-img {
    filter: none;
}

.home-shark-block {
    padding: 32px 34px;
}

.home-shark-copy .btn-default {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.home-shark-copy .btn-default:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

/* Sports Central */
.sports-central .sc-stat-card {
    border-radius: 14px;
    box-shadow: var(--site-shadow);
}

.sports-central .sc-section-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--site-shadow);
}

.sports-central .sc-section-card .titles {
    background: linear-gradient(135deg, var(--site-navy-soft) 0%, var(--site-navy) 100%);
}

.sports-central .sc-section-card .titles h4 {
    color: #fff;
}

.sports-central .sc-greeting .info-panel {
    padding: 30px 34px;
}

/* Pool hub / account sidebar */
.pool-hub-page,
.pool-form-page {
    background: linear-gradient(180deg, #e3eaf2 0%, var(--site-canvas) 200px);
}

.pool-hub-page .menu-ul-container ul li,
.pool-form-page .menu-ul-container ul li,
.sports-central .menu-ul-container ul li {
    border-radius: 10px;
}

.menu-ul-container .list li:hover,
.menu-ul-container .list .active-li {
    background: var(--site-emerald-tint) !important;
}

/* Pool picks */
.pool-context-card,
.matchup-card {
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
}

.picks-deadline-banner {
    border-radius: 14px;
    box-shadow: var(--site-shadow);
}

.picks-deadline-banner.is-open {
    border-color: #9ddfc8;
    background: linear-gradient(165deg, var(--site-emerald-tint) 0%, #fff 100%);
}

/* Browse pool preview */
.pool-browse-preview {
    border-radius: 16px;
    box-shadow: var(--site-shadow-lg);
    overflow: hidden;
}

.pool-browse-stat {
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.beat-shark-commentary-inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center;
    padding: 24px 28px;
}

@media (max-width: 767px) {
    .beat-shark-commentary-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.sc-shark-weekly-light {
    margin-bottom: 10px;
}

.pool-win-prob-card {
    margin-bottom: 20px;
}

.pool-win-prob-header {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 20px;
    align-items: center;
}

.pool-win-prob-value {
    margin: 4px 0 8px;
    font-size: 28px;
    letter-spacing: -.02em;
}

.pool-win-prob-meter {
    height: 12px;
    border-radius: 999px;
    background: rgba(11, 31, 51, .08);
    overflow: hidden;
}

.pool-win-prob-meter-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    transition: width .35s ease;
}

.pool-win-prob-scenarios {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 31, 51, .08);
}

.pool-win-prob-scenarios-title {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
}

.pool-win-prob-scenarios ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pool-win-prob-scenarios li {
    padding: 8px 0;
    border-top: 1px solid rgba(11, 31, 51, .06);
    font-size: 14px;
}

.pool-win-prob-scenarios li.is-your-pick {
    font-weight: 600;
}

.pool-win-prob-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .pool-win-prob-header {
        grid-template-columns: 1fr;
    }
}

.sc-analytics-card {
    margin-bottom: 20px;
}

.sc-analytics-summary {
    font-style: italic;
    color: #334155;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 3px solid #60a5fa;
}

.sc-analytics-stat {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 12px;
    min-height: 108px;
}

.sc-analytics-stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    margin-bottom: 6px;
}

.sc-analytics-stat strong {
    display: block;
    font-size: 22px;
    color: #0b1f33;
}

.sc-analytics-stat small {
    display: block;
    margin-top: 4px;
    color: #64748b;
}

.sc-analytics-note,
.sc-analytics-footnote {
    margin-top: 12px;
    margin-bottom: 0;
}

.sc-analytics-comparisons {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 31, 51, .08);
}

.sc-analytics-comparisons-title,
.sc-analytics-comparisons > p.sc-analytics-comparisons-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    margin-bottom: 12px;
}

.sc-comparison-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    height: 100%;
}

.sc-comparison-card h5 {
    margin: 0 0 10px;
    font-size: 16px;
}

.sc-comparison-card ul {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.sc-comparison-card li {
    padding: 8px 0;
    border-top: 1px solid rgba(11, 31, 51, .06);
    font-size: 13px;
}

.sc-comparison-card li span,
.sc-comparison-card li strong,
.sc-comparison-card li em {
    display: block;
}

.pool-analytics-card {
    margin-bottom: 20px;
}

.pool-analytics-grid {
    display: grid;
    gap: 10px;
}

.pool-analytics-row {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 14px;
}

.pool-analytics-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    margin-bottom: 4px;
}

/* Pool picks — recent achievement badges */
.pool-achievements-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pool-achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--site-emerald-tint);
    color: var(--site-emerald-dark);
    font-size: 13px;
    font-weight: 600;
}

/* Season Wrapped + Hall of Fame */
.season-wrapped-page .season-wrapped-card {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #0b1f33 0%, #16324a 55%, #1e4d3a 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(11, 31, 51, .22);
}

.season-wrapped-page .season-wrapped-card--champion {
    background: linear-gradient(145deg, #0b1f33 0%, #1a365d 40%, #166534 100%);
}

.season-wrapped-card-inner {
    padding: 28px 24px;
}

.season-wrapped-kicker,
.sc-wrapped-teaser-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .78;
    margin-bottom: 8px;
}

.season-wrapped-pool {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.season-wrapped-scope,
.season-wrapped-tagline,
.season-wrapped-champion-line {
    opacity: .92;
    margin-bottom: 14px;
}

.season-wrapped-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.season-wrapped-stat {
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.season-wrapped-stat strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
}

.season-wrapped-stat span {
    display: block;
    font-size: 12px;
    opacity: .8;
    margin-top: 4px;
}

.season-wrapped-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.season-wrapped-achievement {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: 13px;
}

.season-wrapped-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.season-wrapped-share-input {
    min-width: 240px;
    flex: 1 1 240px;
}

.season-wrapped-banner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.season-wrapped-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sc-wrapped-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.sc-wrapped-teaser {
    display: block;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0b1f33, #1e4d3a);
    color: #fff;
    text-decoration: none;
}

.sc-wrapped-teaser:hover,
.sc-wrapped-teaser:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.sc-wrapped-teaser strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.sc-wrapped-teaser-meta {
    display: block;
    font-size: 13px;
    opacity: .85;
}

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

.hall-of-fame-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(11, 31, 51, .08);
}

.hall-of-fame-card-inner {
    padding: 20px;
}

.hall-of-fame-sport {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
    margin-bottom: 6px;
}

.hall-of-fame-champion {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
}

.hall-of-fame-meta,
.hall-of-fame-scope,
.hall-of-fame-date {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

.hall-of-fame-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hall-of-fame-pool-name {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.custom-season-panel {
    margin-top: 4px;
    padding: 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(11, 31, 51, .08);
}

.custom-season-hof-option {
    margin-top: 14px;
}

.custom-season-hof-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 600;
    margin-bottom: 0;
}

.custom-season-hof-label input {
    margin-top: 3px;
}

.sports-central .sc-achievement-badge {
    align-items: flex-start;
    max-width: 100%;
}

.sc-achievement-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.sc-achievement-badge-text small {
    display: block;
    font-weight: 400;
    opacity: .85;
}

.sc-achievements-footnote {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 13px;
}

.sc-stat-card small.text-muted {
    display: block;
    margin-top: 6px;
    font-size: 12px;
}

.sc-pools-section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #64748b;
    margin-bottom: 10px;
}

.shark-scoring-help {
    margin-bottom: 20px;
    border: 1px solid rgba(11, 31, 51, .08);
}

.shark-scoring-help-title {
    font-weight: 700;
    margin-bottom: 0;
}

.shark-scoring-help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.shark-scoring-help-item ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.shark-scoring-help-item li {
    margin-bottom: 4px;
}

.shark-scoring-help-example {
    margin: 14px 0 0;
    font-size: 13px;
}

/* Help Center */
/* Help Center */
.help-page .landing-hero-inner--help {
    max-width: 920px;
}

.help-search-panel {
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(6px);
}

.help-search {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    margin: 0;
}

.help-search-input,
.help-search input[type="search"].form-control {
    flex: 1 1 420px;
    min-width: 0;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border: 1px solid #c5d3e0;
    border-radius: 12px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--site-navy);
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.help-search-input:focus,
.help-search input[type="search"].form-control:focus {
    border-color: var(--site-emerald);
    box-shadow: 0 0 0 3px rgba(0, 179, 134, 0.16);
    outline: none;
}

.help-search-input::placeholder {
    color: #94a3b8;
}

.help-search-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.help-search-submit {
    min-height: 52px;
    padding-left: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.help-search__clear {
    font-size: 15px;
    font-weight: 600;
    color: var(--site-emerald-dark);
    text-decoration: none;
}

.help-search__clear:hover {
    text-decoration: underline;
}

.help-page .landing-hero--compact {
    padding-bottom: 28px;
}

.help-search-meta {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.help-category-desc {
    margin: 8px 0 0;
    color: #64748b;
    max-width: 640px;
}

.help-article-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-article-list--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

a.help-article-card,
a.help-article-card:hover,
a.help-article-card:focus {
    text-decoration: none;
    color: var(--site-navy);
}

.help-article-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: var(--site-navy);
    box-shadow: var(--site-shadow);
    min-height: 100%;
}

.help-article-card__category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--site-emerald-dark);
}

.help-article-card strong {
    font-size: 17px;
    line-height: 1.35;
    color: var(--site-navy);
    font-weight: 700;
}

.help-article-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    flex: 1;
}

.help-article-card em {
    font-style: normal;
    font-size: 13px;
    color: var(--site-emerald-dark);
}

.help-empty {
    text-align: center;
    color: #64748b;
}

.help-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.help-breadcrumb a {
    color: var(--site-emerald-dark);
    text-decoration: none;
}

.help-breadcrumb a:hover {
    text-decoration: underline;
}

.help-article-body h2 {
    margin: 28px 0 12px;
    font-size: 20px;
}

.help-article-body h2:first-child {
    margin-top: 0;
}

.help-article-body p {
    line-height: 1.65;
    color: #334155;
}

.help-article-list-items {
    margin: 0 0 16px;
    padding-left: 1.25rem;
    line-height: 1.65;
    color: #334155;
}

.help-article-list-items li {
    margin-bottom: 8px;
}

.help-related {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--site-border);
}

.help-related h2 {
    font-size: 18px;
    margin: 0 0 12px;
}

.help-article-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.help-crosslinks h2 {
    font-size: 18px;
    margin: 0 0 12px;
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Alerts */
.alert {
    border-radius: 10px;
}

/* Footer — keep dark navy from site-ui.css */
.site-footer {
    padding-top: 32px !important;
    padding-bottom: 28px !important;
}

@media (max-width: 767px) {
    .home-intro-card {
        padding: 18px 16px;
    }

    .home-shark-block {
        padding: 24px 20px;
    }

    .panel-box .info-panel {
        padding: 18px 16px;
    }

    .season-wrapped-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-search {
        flex-direction: column;
        align-items: stretch;
    }

    .help-search-input,
    .help-search input[type="search"].form-control {
        flex-basis: auto;
    }

    .help-search-actions {
        width: 100%;
    }

    .help-search-submit,
    .help-search .btn {
        width: 100%;
    }

    .help-search-panel {
        padding: 18px 16px;
    }
}
