* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: #eef2f6;
    color: var(--text);
    font: 16px/1.55 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; border: 0; }
button, input, select, textarea { font: inherit; }

#page, #wrap, #middleColumn { width: 100%; }
#wrap { min-height: calc(100vh - 180px); background: var(--surface-2); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7,17,31,.96);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
}
.site-header-inner {
    max-width: 1180px;
    min-height: 76px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-right: auto;
}
.brand-mark {
    width: 42px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    position: relative;
    border: 2px solid #fff;
    border-radius: 12px 12px 17px 17px;
    transform: perspective(60px) rotateX(-4deg);
}
.brand-mark:after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 2px solid var(--accent);
    border-radius: 8px 8px 13px 13px;
}
.brand-football {
    z-index: 1;
    color: #fff;
    font-size: 17px;
    transform: rotate(45deg);
}
.brand-copy { display: grid; line-height: 1; text-transform: uppercase; }
.brand-copy span { font-size: 11px; letter-spacing: .13em; font-weight: 800; }
.brand-copy strong { font-size: 22px; letter-spacing: .02em; }

#navigation { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 6px; }
#navigation a {
    padding: 11px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,.83);
    font-weight: 650;
    font-size: 14px;
}
#navigation a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-toggle {
    display: none;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 10px;
    min-height: 42px;
    padding: 8px 12px;
}

#content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 24px 64px;
}
.home-page { padding-top: 24px; }

.hero {
    min-height: 570px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 26px;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(2,8,15,.84), rgba(2,8,15,.30) 48%, rgba(2,8,15,.82)),
        url("../images/football_1000_183.jpg") center/cover no-repeat,
        var(--ink);
    box-shadow: 0 28px 70px rgba(7,17,31,.25);
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(to top, rgba(6,20,33,.96), transparent 48%);
}
.hero-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    z-index: -1;
    background: linear-gradient(to top, rgba(4,13,23,.98), transparent);
}
.hero-copy {
    position: relative;
    z-index: 4;
    width: min(590px, 82%);
    text-align: center;
    color: #fff;
}
.hero-kicker, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 900;
}
.hero-kicker:before, .hero-kicker:after {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--accent);
}
.hero h1 {
    margin: 18px 0;
    color: #fff;
    text-transform: uppercase;
    font-size: clamp(52px, 8vw, 90px);
    letter-spacing: -.045em;
    line-height: .87;
    font-weight: 950;
    text-shadow: 0 7px 24px rgba(0,0,0,.45);
}
.hero p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255,255,255,.82);
    font-size: clamp(17px, 2vw, 21px);
}
.hero-actions { margin-top: 30px; display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
/* Legacy button compatibility.
   New markup should use Bootstrap .btn classes instead.
   These rules intentionally mirror Bootstrap sizing/behavior while
   preserving Office Pool Pal's themed accent color for legacy primary buttons. */
.button, .tryitbtn, a.tryitbtn {
    display: inline-block;
    padding: .375rem .75rem;
    color: var(--bs-btn-color, #212529);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: var(--bs-border-radius, .375rem);
    background-color: transparent;
    transition: color .15s ease-in-out,
                background-color .15s ease-in-out,
                border-color .15s ease-in-out,
                box-shadow .15s ease-in-out;
}
.button-primary, .tryitbtn, a.tryitbtn {
    color: #fff !important;
    background-color: var(--accent);
    border-color: var(--accent);
}
.button-primary:hover,
.button-primary:focus,
.button-primary:active,
.tryitbtn:hover,
.tryitbtn:focus,
.tryitbtn:active,
a.tryitbtn:hover,
a.tryitbtn:focus,
a.tryitbtn:active {
    color: #fff !important;
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}
.button-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}
.button-block { width: 100%; }

.hero-helmet {
    position: absolute;
    z-index: 3;
    width: clamp(220px, 31vw, 390px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,.55));
}
.hero-helmet-left { left: -26px; bottom: 4px; }
.hero-helmet-right {
    right: -26px;
    bottom: 4px;
    transform: scaleX(-1);
}

.feature-grid {
    margin-top: -32px;
    padding: 0 26px;
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.feature-card {
    min-height: 225px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(145deg, #132943, #091828);
    box-shadow: 0 18px 34px rgba(7,17,31,.22);
    transition: transform .18s ease, border-color .18s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(var(--accent-rgb), .70); }
.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), .12);
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
}
.feature-card h2 { margin: 18px 0 8px; font-size: 18px; text-transform: uppercase; letter-spacing: .025em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.feature-link { margin-top: auto; padding-top: 18px; color: #fff; font-size: 13px; font-weight: 800; }

.home-split {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.65fr .85fr;
    gap: 18px;
}
.home-panel {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.standings-panel { padding: 26px; background: #fff; }
.deadline-panel {
    padding: 28px;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(rgba(7,17,31,.90), rgba(7,17,31,.96)),
        url("../images/football_1000_183.png") left center/auto 100% no-repeat,
        var(--ink);
}
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.section-heading h2, .deadline-panel h2 { margin: 5px 0 20px; font-size: 28px; }
.section-heading a { color: var(--accent); font-size: 13px; font-weight: 800; }
.standings-placeholder { border-top: 1px solid var(--line); }
.standing-row {
    min-height: 74px;
    padding: 15px 4px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.standing-row span:first-child { display: grid; }
.standing-row small { color: var(--muted); }
.standing-head { min-height: 44px; color: var(--muted); text-transform: uppercase; font-size: 11px; font-weight: 850; }
.status-pill {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--success);
    background: #e9fbf4;
    font-size: 12px;
    font-weight: 850;
}
.deadline-number {
    width: 104px;
    height: 104px;
    margin: 10px auto 16px;
    display: grid;
    place-items: center;
    border: 3px solid var(--accent);
    border-radius: 50%;
    color: #fff;
    font-size: 52px;
    font-weight: 950;
}
.deadline-panel p { color: rgba(255,255,255,.72); }

.survivor-callout {
    margin-top: 18px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--panel);
}
.callout-mark {
    width: 50px; height: 56px; display: grid; place-items: center;
    border-radius: 13px 13px 20px 20px;
    background: var(--accent);
    font-size: 23px; font-weight: 950;
}
.survivor-callout h2 { margin: 0; font-size: 22px; text-transform: uppercase; }
.survivor-callout p { margin: 2px 0 0; color: rgba(255,255,255,.67); }
.survivor-callout > a { color: #fff; font-weight: 800; }

.interior-page {
    min-height: 620px;
    padding-top: 46px;
}

.interior-page h2, .interior-page h3 { color: var(--ink); }
.interior-page > p:first-of-type { color: var(--muted); }

.account-layout, .entry-layout, .pick-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.account-layout > tbody, .entry-layout > tbody, .pick-layout > tbody,
.account-layout > tbody > tr, .entry-layout > tbody > tr, .pick-layout > tbody > tr { display: contents; }
.account-layout td, .entry-layout td, .pick-layout td {
    padding: 28px !important;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    white-space: normal !important;
}
.pick-layout { grid-template-columns: 320px minmax(0,1fr); }
.pick-summary { align-self: start; }

input[type="text"], input[type="password"], input[type="email"], select, textarea {
    width: 100% !important;
    min-height: 47px;
    padding: 11px 13px;
    border: 1px solid #cfd7df;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(var(--accent-rgb), .10);
}
form table { width: 100%; border-collapse: separate; border-spacing: 0 9px; }
form td { padding: 5px 7px; }

.table-zebra {
    width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}
.table-zebra th, .table-zebra td {
    padding: 12px 13px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
    font-size: 14px;
}
.table-zebra th {
    color: #fff;
    background: var(--ink-2);
    text-align: left;
}
.table-zebra tr.alternateRow { background: #f7f9fb; }
.table-zebra .sortedColumn { background: #edf2f7; color: var(--text); }
.table-zebra th.sortedColumn { background: var(--accent); color: #fff; }

.team-pick {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 6px 9px;
    border-radius: 8px;
    color: var(--ink);
    font-weight: 800;
}
.team-pick:hover { background: var(--accent-soft); color: var(--accent); }

.Message {
    margin: 20px 0;
    padding: 15px 17px;
    border: 1px solid #f2b5c1;
    border-radius: 12px;
    color: var(--danger-dark);
    background: var(--danger-soft);
    font-size: 15px;
    font-weight: 800;
}
.error { color: var(--danger); }

#footer {
    background: var(--ink);
    color: rgba(255,255,255,.72);
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 24px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.footer-brand span:last-child { display: grid; }
.footer-brand small { color: rgba(255,255,255,.55); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.footer-copy { font-size: 13px; }

@media (max-width: 930px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .home-split { grid-template-columns: 1fr; }
    .hero-helmet { width: 31vw; min-width: 180px; opacity: .82; }
}
@media (max-width: 760px) {
    .site-header-inner { min-height: 68px; padding: 0 16px; flex-wrap: wrap; }
    .brand-copy strong { font-size: 19px; }
    .brand-mark { width: 36px; height: 40px; }
    .nav-toggle { display: inline-flex; gap: 10px; align-items: center; }
    #navigation { width: 100%; }
    .nav-links {
        display: none;
        padding: 7px 0 14px;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links.is-open { display: flex; }
    #navigation a { padding: 12px 10px; }
    #content { padding: 18px 15px 44px; }
    .hero { min-height: 540px; border-radius: 20px; }
    .hero-copy { width: 92%; padding-bottom: 40px; }
    .hero h1 { font-size: clamp(48px, 16vw, 68px); }
    .hero p { max-width: 340px; font-size: 16px; }
    .hero-helmet { width: 49vw; min-width: 175px; bottom: -8px; opacity: .52; }
    .hero-helmet-left { left: -60px; }
    .hero-helmet-right { right: -60px; }
    .feature-grid { margin-top: 16px; padding: 0; grid-template-columns: 1fr; }
    .feature-card { min-height: 188px; }
    .survivor-callout { grid-template-columns: auto 1fr; }
    .survivor-callout > a { grid-column: 2; }
    .account-layout, .entry-layout, .pick-layout { grid-template-columns: 1fr; }
    .account-layout td, .entry-layout td, .pick-layout td { padding: 20px !important; }
    form table, form tbody, form tr, form td { display: block; width: 100%; }
    form td { padding: 4px 0 !important; }
    .footer-inner { grid-template-columns: 1fr; text-align: left; }
}
@media print {
    .site-header, #footer { display: none; }
    #content { max-width: none; padding: 0; }
}


/* Bootstrap/Web Forms integration */
html, body { min-height: 100%; }
body { display: flex; flex-direction: column; background: #eef2f6; }
form#form1 { min-height: 100vh; display: flex; flex-direction: column; }
.site-header { background: rgba(7,17,31,.97); border-bottom: 1px solid rgba(255,255,255,.08); }
.site-header .navbar { min-height: 76px; }
.brand-shield { width: 40px; height: 44px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 11px 11px 16px 16px; color: var(--accent); }
.brand-text { display: grid; line-height: 1; text-transform: uppercase; }
.brand-text small { font-size: .68rem; letter-spacing: .13em; font-weight: 800; }
.brand-text strong { font-size: 1.35rem; }
.site-footer { margin-top: auto; background: #07111f; color: rgba(255,255,255,.78); }
.site-footer a { color: #fff; }
.page-shell { width: 100%; max-width: 1180px; margin-inline: auto; padding: 2rem 1rem 4rem; }
.card-clean { border: 0; border-radius: 1rem; box-shadow: 0 14px 35px rgba(7,17,31,.10); }
.form-control, .form-select { min-height: 47px; border-radius: .65rem; }

.btn-accent {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
}
.btn-accent:hover,
.btn-accent:focus,
.btn-accent:active {
    color: #fff;
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}
.btn-danger {
    color: #fff;
    background: var(--danger);
    border-color: var(--danger);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
    color: #fff;
    background: var(--danger-dark);
    border-color: var(--danger-dark);
}
.text-accent { color: var(--accent) !important; }
.border-accent { border-color: var(--accent) !important; }
.validation-summary-errors { padding: 1rem; border-radius: .75rem; color: var(--danger-dark); background: #f8d7da; margin-bottom: 1rem; }
.validation-summary-errors ul { margin-bottom: 0; }
.table-responsive { border-radius: .9rem; box-shadow: 0 10px 28px rgba(7,17,31,.08); }
.table thead th { background: #0c1b2d; color: #fff; border: 0; white-space: nowrap; }
.team-card { border: 1px solid #dfe5eb; border-radius: 1rem; transition: .18s ease; overflow: hidden; }
.team-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 12px 28px rgba(7,17,31,.10); }
.team-card.used { opacity: .46; }
.team-logo { width: 82px; height: 70px; object-fit: contain; }
.hero.webforms-hero { min-height: 560px; }
@media(max-width: 767.98px) {
    .hero.webforms-hero { min-height: 530px; }
}







/* Pick page horizontal matchup layout */
.pick-matchup {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.pick-matchup .btn {
    flex: 1 1 0;
    min-width: 0;
    max-width: 150px;
    min-height: 96px;
    padding: 6px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
}

.pick-team-helmet {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: 72px !important;
    object-fit: contain;
    margin: 0 auto;
    transition: transform .16s ease;
}

.pick-at {
    flex: 0 0 auto;
    width: 24px;
    text-align: center;
    color: #697586;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.pick-matchup .btn:hover .pick-team-helmet,
.pick-matchup .btn:focus .pick-team-helmet {
    transform: scale(1.05);
}

.pick-matchup .btn.used .pick-team-helmet,
.pick-matchup .btn:disabled .pick-team-helmet,
.pick-matchup a.disabled .pick-team-helmet {
    opacity: .42;
    filter: grayscale(.65);
}

@media (max-width: 575.98px) {
    .pick-matchup {
        gap: 5px;
    }

    .pick-matchup .btn {
        max-width: none;
        min-height: 82px;
        padding: 4px;
    }

    .pick-team-helmet {
        height: 58px !important;
    }

    .pick-at {
        width: 20px;
        font-size: .66rem;
    }
}


/* Borderless helmet pick buttons */
.pick-matchup .btn {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.pick-matchup .btn:hover,
.pick-matchup .btn:focus,
.pick-matchup .btn:active {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}


/* Pick page selector/current-pick enhancements */
.pick-filter-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.current-pick-panel {
    min-width: 160px;
    padding: 10px 14px 8px;
    text-align: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dfe5eb;
}

.current-pick-label {
    margin-bottom: 2px;
    color: #697586;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.current-pick-helmet {
    display: block;
    width: auto;
    height: 58px;
    max-width: 125px;
    margin: 0 auto;
    object-fit: contain;
}

/* Current week's selected helmet in the game card */
.pick-matchup .btn.current-selection {
    position: relative;
    border-radius: 14px;
    background: rgba(var(--accent-rgb), .08) !important;
    box-shadow: inset 0 0 0 3px var(--accent) !important;
}

.pick-matchup .btn.current-selection .pick-team-helmet {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1.06);
}

.pick-matchup .btn.current-selection::after {
    content: "PICKED";
    position: absolute;
    right: 5px;
    bottom: 5px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .05em;
}

@media (max-width: 767.98px) {
    .pick-filter-area {
        width: 100%;
        align-items: stretch;
    }

    .pick-filter-area .form-select {
        flex: 1 1 160px;
    }

    .current-pick-panel {
        align-self: flex-end;
    }
}


/* Team name below helmet */
.pick-team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.pick-team-name {
    display: block;
    color: #17202c;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

@media (max-width: 575.98px) {
    .pick-team-name {
        font-size: .7rem;
    }
}

/* =========================================================
   Survivor standings
   Desktop: Entry + Weeks 1-18
   Mobile/tablet: sticky Entry column + horizontal week scroll
   ========================================================= */

.standings-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border: 1px solid #e3e8ee;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    -webkit-overflow-scrolling: touch;
}

.standings-table {
    width: 100%;
    min-width: 1180px;
    table-layout: fixed;
    background: #fff;
}

.standings-table th,
.standings-table td {
    border-color: #edf0f3;
}

.standings-entry-col {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 190px;
    min-width: 190px;
    max-width: 190px;
    padding: 10px 12px !important;
    background: #fff !important;
    box-shadow: 1px 0 0 #e6e9ed;
    font-size: .84rem;
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

thead .standings-entry-col {
    z-index: 5;
    background: #17202c !important;
    color: #fff !important;
}

.standings-week-head {
    width: 55px;
    min-width: 55px;
    padding: 9px 3px !important;
    background: #17202c !important;
    color: #fff !important;
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
}

.week-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
}

.standings-pick-cell {
    width: 55px;
    min-width: 55px;
    height: 68px;
    padding: 4px 2px !important;
    text-align: center;
    vertical-align: middle !important;
}

.standings-table tbody tr:nth-child(even) .standings-pick-cell,
.standings-table tbody tr:nth-child(even) .standings-entry-col {
    background: #fafbfc !important;
}

.standings-week-head.current-week {
    background: #5f6772 !important;
}

.standings-pick-cell.current-week {
    background: #eceff2 !important;
    box-shadow: inset 1px 0 #cfd5dc,
                inset -1px 0 #cfd5dc;
}

.standings-table tbody tr:nth-child(even) .standings-pick-cell.current-week {
    background: #e5e9ed !important;
}

.standings-pick {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

.standings-helmet {
    display: block;
    width: 46px;
    height: 38px;
    object-fit: contain;
}

.standings-team-abbr {
    display: block;
    max-width: 52px;
    overflow: hidden;
    color: #344054;
    font-size: .58rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pick-submitted {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #22a447;
    box-shadow: 0 0 0 4px rgba(34, 164, 71, .13);
}

.losing-pick {
    position: relative;
}

.losing-pick .standings-helmet {
    opacity: .38;
    filter: grayscale(1);
}

.losing-pick .standings-team-abbr {
    color: var(--danger);
    text-decoration: line-through;
}

.losing-pick::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 6px;
    right: 6px;
    height: 2px;
    background: var(--danger);
    transform: rotate(-20deg);
    transform-origin: center;
}

.eliminated-entry .standings-entry-col {
    color: var(--danger) !important;
    font-weight: 800;
}

.eliminated-entry td:not(.current-week) {
    background-image: linear-gradient(rgba(var(--danger-rgb), .018), rgba(var(--danger-rgb), .018));
}

.standings-empty {
    display: inline-block;
    min-height: 1px;
}

@media (min-width: 1200px) {
    .standings-table {
        min-width: 0;
    }

    .standings-entry-col {
        width: 18%;
        min-width: 150px;
        max-width: none;
    }

    .standings-week-head,
    .standings-pick-cell {
        width: auto;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .standings-table {
        min-width: 1120px;
    }

    .standings-entry-col {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
        font-size: .78rem;
    }

    .standings-week-head,
    .standings-pick-cell {
        width: 52px;
        min-width: 52px;
    }

    .standings-helmet {
        width: 42px;
        height: 35px;
    }
}


/* Compact standings rows */
.standings-table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.standings-table tbody tr {
    margin: 0 !important;
    padding: 0 !important;
}

.standings-table tbody th,
.standings-table tbody td {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.standings-table tbody .standings-entry-col {
    padding: 0 10px !important;
    height: 48px;
    line-height: 48px;
}

.standings-table tbody .standings-pick-cell {
    height: 48px;
    padding: 0 2px !important;
}

.standings-helmet {
    height: 34px;
}

.standings-pick {
    gap: 0;
}

.standings-team-abbr {
    margin-top: -2px;
}


/* Current-round countdown clock */
.deadline-countdown-wrap {
    margin: 8px auto 18px;
}

.deadline-countdown-label {
    margin-bottom: 8px;
    color: rgba(255,255,255,.68);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.deadline-countdown {
    width: min(100%, 280px);
    margin: 0 auto;
    padding: 14px 18px;
    border: 3px solid var(--accent);
    border-radius: 18px;
    color: #fff;
    background: rgba(7,17,31,.34);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: .06em;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

@media (max-width:575.98px) {
    .deadline-countdown {
        width: min(100%, 240px);
        padding: 13px 12px;
        font-size: 2.2rem;
    }
}

/* =========================================================
   Global interior page heading system
   Single source of truth: matches Pick.aspx
   ========================================================= */

/* Red uppercase label above the page heading */
.page-shell .eyebrow,
.interior-page .eyebrow,
.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 .55rem;
    color: var(--accent) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}

/* Standard page H1: same visual weight/size as Pick.aspx "You picked" */
.page-shell h1,
.interior-page > h1,
.interior-page table h1,
.page-title {
    margin-top: 0;
    margin-bottom: .45rem;
    color: var(--ink);
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
}

/* Bootstrap display/font utility classes must not make interior page H1s drift */
.page-shell h1.display-1,
.page-shell h1.display-2,
.page-shell h1.display-3,
.page-shell h1.display-4,
.page-shell h1.display-5,
.page-shell h1.display-6 {
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
}

/* Keep headings compact but readable on phones */
@media (max-width: 575.98px) {
    .page-shell h1,
    .interior-page > h1,
    .interior-page table h1,
    .page-title,
    .page-shell h1.display-1,
    .page-shell h1.display-2,
    .page-shell h1.display-3,
    .page-shell h1.display-4,
    .page-shell h1.display-5,
    .page-shell h1.display-6 {
        font-size: 1.7rem !important;
    }
}



/* =========================================================
   Site.Master navigation / brand utilities
   ========================================================= */
.account-nav-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding-left: .45rem !important;
            padding-right: .45rem !important;
        }

        .account-nav-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: 2px solid rgba(255,255,255,.75);
            border-radius: 50%;
        }

        .account-nav-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .account-nav-link:hover .account-nav-icon,
        .account-nav-link:focus .account-nav-icon {
            border-color: #fff;
        }

        .live-scoring-active {
            color: var(--live) !important;
            font-weight: 700;
        }

        .brand-logo-img {
            width: 46px;
            height: 46px;
            display: block;
            object-fit: contain;
            flex: 0 0 auto;
        }

/* =========================================================
   Office Pool Pal shared callout component
   ---------------------------------------------------------
   Reusable branded panel used by Entries.aspx and other pages.
   Bootstrap remains responsible for grid/layout/spacing utilities.
   ========================================================= */

.opp-callout {
    border: 0;
    border-radius: 1.5rem;
    background: #f1f5f8;
    box-shadow: none;
}

.opp-callout .eyebrow {
    color: var(--accent) !important;
}

.opp-callout-title {
    color: var(--ink);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.opp-callout-copy {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.55;
}

.opp-callout .btn {
    width: auto !important;
}

/* Optional semantic variants. These are app states, not layout utilities. */
.opp-callout-warning {
    background: #fff8e1;
}

.opp-callout-danger {
    background: var(--danger-soft);
}

/* Office Pool Pal home-page competition feature. */
.opp-pool-status {
    background: #07111f;
    color: #fff;
    padding: 1.75rem;
}

.opp-pool-status h2 {
    color: #fff;
}

.opp-pool-status-eyebrow,
.opp-pool-status-copy,
.opp-pool-how-label,
.opp-pool-step-copy {
    color: rgba(255, 255, 255, 0.68);
}

.opp-pool-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    padding: 1.25rem;
}

.opp-pool-stat-number {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.opp-pool-stat-label {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.opp-pool-how {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 1.25rem;
}

.opp-pool-step-number {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.95);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .opp-pool-status {
        padding: 1.25rem;
    }

    .opp-pool-step-copy {
        font-size: 0.75rem;
    }
}

.opp-featured-game {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.opp-featured-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.opp-featured-team {
    min-width: 0;
    text-align: center;
}

.opp-featured-helmet {
    width: clamp(76px, 10vw, 112px);
    height: auto;
    display: block;
    margin: 0 auto 0.75rem;
}

.opp-featured-team-name {
    font-weight: 700;
    line-height: 1.2;
}

.opp-featured-at {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

@media (max-width: 575.98px) {
    .opp-featured-game {
        padding: 1.25rem;
    }

    .opp-featured-matchup {
        gap: 0.5rem;
    }

    .opp-featured-helmet {
        width: 72px;
    }
}

