.live-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-scorching {
    background: rgba(168, 85, 247, 0.18);
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.45);
}

.status-heating {
    background: rgba(34, 197, 94, 0.18);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.45);
}

.status-steady {
    background: rgba(250, 204, 21, 0.18);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.45);
}

.status-cooling {
    background: rgba(249, 115, 22, 0.18);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.45);
}

.status-cold {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.45);
}/* Top Goal Scorers — compact dashboard layout */

#top-goalscorers {
    display: grid;
    gap: 10px;
}

.top-scorer-row {
    width: 100%;
    display: grid;
    grid-template-columns: 44px minmax(170px, 1.5fr) 110px minmax(210px, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #263754;
    border-radius: 12px;
    background: #101d32;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
}

.top-scorer-row:hover {
    border-color: #35e6a5;
    transform: translateY(-1px);
}

.top-scorer-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.top-scorer-player {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
}

.top-scorer-player strong {
    font-size: 15px;
    color: #ffffff;
}

.top-scorer-player > span:not(.live-status-badge) {
    font-size: 12px;
    color: #9cabc2;
}

.top-scorer-player .live-status-badge {
    margin-top: 2px;
    padding: 4px 9px;
    font-size: 10px;
}

.top-scorer-row .goal-score-card {
    min-height: auto;
    padding: 10px 12px;
    border-radius: 9px;
    background: #16253d;
}

.top-scorer-row .goal-score-card span {
    display: block;
    color: #9cabc2;
    font-size: 10px;
    text-transform: uppercase;
}

.top-scorer-row .goal-score-card strong {
    color: #35e6a5;
    font-size: 24px;
}

.top-scorer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(55px, 1fr));
    gap: 8px;
}

.top-scorer-stats > span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    border-radius: 8px;
    background: #16253d;
}

.top-scorer-stats small {
    color: #9cabc2;
    font-size: 9px;
    text-transform: uppercase;
}

.top-scorer-stats strong {
    color: #ffffff;
    font-size: 13px;
}

@media (max-width: 800px) {
    .top-scorer-row {
        grid-template-columns: 36px minmax(140px, 1fr) 90px;
    }

    .top-scorer-stats {
        grid-column: 2 / -1;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .top-scorer-row {
        grid-template-columns: 32px 1fr;
    }

    .top-scorer-row .goal-score-card,
    .top-scorer-stats {
        grid-column: 2;
    }
}#top-shot-volume {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.shot-volume-row {
    width: 100%;
    display: grid;
    grid-template-columns: 34px 1fr 90px;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border: 1px solid #263750;
    border-radius: 12px;
    background: #101d32;
    color: white;
    text-align: left;
    cursor: pointer;
}

.shot-volume-row:hover {
    border-color: #2de3a0;
    transform: translateY(-1px);
}

.shot-volume-rank {
    .shot-volume-rank{
    font-size:20px;
    font-weight:800;
}
    color: #2de3a0;
    text-align: center;
}

.shot-volume-player {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shot-volume-player strong {
    font-size: 17px;
    font-weight: 700;
}

.shot-volume-player small,
.shot-volume-stat small {
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shot-volume-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 9px 12px;
    border-radius: 9px;
    background: #172944;
}

.shot-volume-stat strong {
    color: #2de3a0;
    font-size: 20px;
}.player-report-card {
    position: relative;
    overflow: hidden;
}

.player-report-card::before {
    content: "C2F";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 180px;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
}

#player-report-content {
    position: relative;
    z-index: 1;
}
.player-report-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 14px;
    margin-bottom: 8px;
}

.player-report-preview > div {
    position: relative;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #243754;
    background: linear-gradient(
        180deg,
        rgba(28, 44, 72, 0.95) 0%,
        rgba(20, 33, 55, 0.96) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 24px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.player-report-preview > div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #35e6a5 0%,
        rgba(53, 230, 165, 0.15) 100%
    );
}

.player-report-preview > div:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 230, 165, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 30px rgba(0, 0, 0, 0.24);
}

.player-report-preview > div span {
    display: block;
    margin-bottom: 8px;
    color: #8ea3bf;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-report-preview > div strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.player-report-preview > div:first-child {
    border-color: rgba(53, 230, 165, 0.38);
    background: linear-gradient(
        180deg,
        rgba(24, 46, 63, 0.98) 0%,
        rgba(17, 31, 51, 0.98) 100%
    );
}

.player-report-preview > div:first-child strong {
    color: #35e6a5;
}
.player-report-preview--season > div::before {
    background: linear-gradient(
        90deg,
        #35e6a5 0%,
        rgba(53, 230, 165, 0.12) 100%
    );
}

.player-report-preview--recent > div::before {
    background: linear-gradient(
        90deg,
        #60a5fa 0%,
        rgba(96, 165, 250, 0.12) 100%
    );
}

.player-report-preview--recent > div:first-child {
    border-color: rgba(96, 165, 250, 0.38);

    background: linear-gradient(
        180deg,
        rgba(24, 43, 68, 0.98) 0%,
        rgba(17, 31, 51, 0.98) 100%
    );
}

.player-report-preview--recent > div:first-child strong {
    color: #60a5fa;
}
.premium-report-section {
    margin-top: 28px;
}

.premium-section-heading {
    margin-bottom: 12px;
}

.premium-section-heading .eyebrow {
    margin-bottom: 6px;
}

.premium-section-heading h3 {
    margin: 0;
    font-size: 30px;
    color: #ffffff;
}

.premium-insight-card {
    border: 1px solid #223450;
    border-radius: 18px;
    padding: 18px 20px;
    background: linear-gradient(
        180deg,
        rgba(21, 34, 56, 0.9) 0%,
        rgba(16, 28, 46, 0.96) 100%
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

@media (max-width: 760px) {
    .player-report-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player-report-preview > div strong {
        font-size: 24px;
    }
}

@media (max-width: 520px) {
    .player-report-preview {
        grid-template-columns: 1fr;
    }
}
.player-hub-header {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid #263750;
    border-radius: 14px;
    background: #101d32;
    margin-bottom: 16px;
}

.player-headshot {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #172944;
    border: 2px solid #2de3a0;
}

.player-header-info h2 {
    margin: 0 0 4px;
    font-size: 28px;
}

.player-header-info p {
    margin: 0 0 10px;
    color: #94a3b8;
}

#hub-goal-score {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 9px;
    background: #172944;
    color: #2de3a0;
    font-weight: 800;
}

.hub-section {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid #263750;
    border-radius: 14px;
    background: #101d32;
}

.hub-section h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.hub-section > div {
    color: #cbd5e1;
}.goal-score-reasons {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.goal-score-reason {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.45;
    margin-bottom: 6px;
}.matchup-snapshot {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid rgba(52, 211, 153, 0.18);
    border-left: 3px solid #34d399;
    border-radius: 10px;
    background: #0f1b2e;
}

.matchup-snapshot h3 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #f8fafc;
}

.matchup-snapshot ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.matchup-snapshot li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #cbd5e1;
}

.matchup-snapshot li:last-child {
    border-bottom: none;
}

.matchup-snapshot li::before {
    content: "✓";
    margin-right: 8px;
    color: #34d399;
    font-weight: 700;
}.recent-form {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-left: 4px solid #34d399;
    border-radius: 10px;
    background: #111c30;
}

.recent-form h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.recent-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.recent-form-grid > div {
    padding: 10px 12px;
    border-radius: 8px;
    background: #0d1728;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.recent-form-grid span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.recent-form-grid strong {
    font-size: 16px;
    color: #f8fafc;
}

@media (max-width: 700px) {
    .recent-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}.team-breakdown {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-left: 4px solid #34d399;
    border-radius: 10px;
    background: #111c30;
}

.team-breakdown h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.team-breakdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.team-profile-card {
    padding: 14px;
    border-radius: 8px;
    background: #0d1728;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.team-profile-card h4 {
    margin: 0 0 10px;
    font-size: 13px;
}

.team-profile-card ul {
    margin: 0;
    padding-left: 18px;
}

.team-profile-card li {
    margin-bottom: 6px;
    font-size: 13px;
}

.team-profile-card li:last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .team-breakdown-grid {
        grid-template-columns: 1fr;
    }
}.team-rankings-card {
    grid-column: 1 / -1;
}.player-report-preview {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}

.player-report-preview > div {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
}

.player-report-preview span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.65;
    margin-bottom: 4px;
}

.player-report-preview strong {
    font-size: 1rem;
}

@media (max-width: 700px) {
    .player-report-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* =========================================================
   C2F — PLAYERS BY MATCHUP COMPACT CARDS
   ========================================================= */



.slate-matchup {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slate-team-columns {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.slate-team-columns::-webkit-scrollbar {
  width: 7px;
}

.slate-team-columns::-webkit-scrollbar-track {
  background: transparent;
}

.slate-team-columns::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.slate-team-columns::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
}
.slate-matchup.is-expanded .slate-team-columns {
  max-height: none;
  overflow-y: visible;
}

.slate-show-all-btn {
  margin: 12px 14px 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  font-weight: 700;
}

.slate-show-all-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.slate-player-filters {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.slate-filter-btn {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.slate-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.slate-filter-btn.is-active {
  border-color: #00e6a8;
  background: rgba(0, 230, 168, 0.12);
  color: #00e6a8;
}
/* =========================================================
   C2F — LIMIT FULL PLAYERS BY MATCHUP SECTION HEIGHT
   ========================================================= */

#slate-player-matchups {
  max-height: 680px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  overscroll-behavior: contain;
}

#slate-player-matchups::-webkit-scrollbar {
  width: 8px;
}

#slate-player-matchups::-webkit-scrollbar-track {
  background: transparent;
}

#slate-player-matchups::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

#slate-player-matchups::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
}
#players {
  scroll-margin-top: 20px;
}

#today-games {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.c2f-matchup-card {
  padding: 18px;
  background: #121b2d;
  border: 1px solid #2b3950;
  border-radius: 14px;
}

.c2f-matchup-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.c2f-matchup-header h3 {
  margin: 6px 0 0;
  font-size: 18px;
}

.c2f-matchup-header h3 span {
  color: #8f9bb3;
  font-size: 13px;
  margin: 0 6px;
}

.c2f-matchup-time {
  color: #1ee28f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.c2f-matchup-gap {
  min-width: 120px;
  text-align: right;
}

.c2f-matchup-gap span,
.c2f-matchup-insight span {
  display: block;
  color: #8f9bb3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.c2f-matchup-gap strong {
  display: block;
  margin-top: 4px;
  color: #1ee28f;
  font-size: 24px;
}

.c2f-matchup-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.c2f-matchup-scores > div {
  padding: 12px;
  background: #18243a;
  border-radius: 10px;
}

.c2f-matchup-scores span {
  display: block;
  color: #aab4c7;
  font-size: 12px;
}

.c2f-matchup-scores strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.c2f-matchup-insight {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #27354c;
}

.c2f-matchup-insight strong {
  display: block;
  margin-top: 4px;
  color: #1ee28f;
}
.c2f-game-facts {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #27354c;
}

.c2f-game-facts-label {
  display: block;
  margin-bottom: 8px;
  color: #8f9bb3;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.c2f-game-facts p {
  margin: 6px 0;
  color: #f5f7fa;
  font-size: 13px;
  line-height: 1.45;
}
.account-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-button {
  appearance: none;
  border: 1px solid #334155;
  background: #111827;
  color: #e5e7eb;
  padding: 9px 14px;
  border-radius: 9px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.account-button:hover {
  transform: translateY(-1px);
  border-color: #1ee28f;
}

.account-button-primary {
  background: #1ee28f;
  border-color: #1ee28f;
  color: #07111f;
}

.account-button-primary:hover {
  background: #34e99d;
}
.favorite-team-button {
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    margin: 0 0 0 6px;
    font: inherit;
    cursor: pointer;
    line-height: 1;
}

.favorite-team-button.is-favorite {
    color: inherit;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}


.auth-modal[hidden] {
  display: none;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.78);
  backdrop-filter: blur(5px);
}

.auth-modal-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #182235;
  border: 1px solid #2b3950;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.auth-modal-card h2 {
  margin: 6px 0 22px;
}

.auth-modal-card form {
  display: grid;
  gap: 16px;
}

.auth-modal-card label {
  display: grid;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 700;
}

.auth-modal-card input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #334155;
  border-radius: 9px;
  background: #0f172a;
  color: #f8fafc;
  padding: 11px 12px;
  font: inherit;
}

.auth-modal-card input:focus {
  outline: none;
  border-color: #1ee28f;
}

.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 26px;
  cursor: pointer;
}

#auth-message {
  margin: 14px 0 0;
  color: #cbd5e1;
}
.full-rankings-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: #1ee28f;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.full-rankings-link:hover {
    text-decoration: underline;
}
.full-rankings-card {
    display: none;
}

.full-rankings-card.is-open {
    display: block;
}
#full-goalscorers,
#full-points-players {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

#full-goalscorers .goal-scorer-row,
#full-points-players .goal-scorer-row {
    display: grid;
    grid-template-columns:
        44px
        minmax(180px, 1fr)
        repeat(4, minmax(72px, auto));
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #101c30;
    border: 1px solid #253650;
    border-radius: 10px;
}

#full-goalscorers .goal-scorer-rank,
#full-points-players .goal-scorer-rank {
    font-weight: 800;
    color: #1ee28f;
}

#full-goalscorers .goal-scorer-player,
#full-points-players .goal-scorer-player {
    display: flex;
    flex-direction: column;
}

#full-goalscorers .goal-scorer-player small,
#full-goalscorers .goal-scorer-stat small,
#full-points-players .goal-scorer-player small,
#full-points-players .goal-scorer-stat small {
    color: #94a3b8;
    font-size: 0.72rem;
}

#full-goalscorers .goal-scorer-stat,
#full-points-players .goal-scorer-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.full-rankings-link {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin-top: 12px;

    color: #1ee28f;
    font: inherit;
    font-weight: 700;

    cursor: pointer;
    text-decoration: none;

    display: inline-block;

    transition:
        transform 0.18s ease,
        color 0.18s ease,
        text-shadow 0.18s ease,
        letter-spacing 0.18s ease;
}

.full-rankings-link:hover {
    transform: translateX(4px);
    color: #45f0a8;
    letter-spacing: 0.02em;

    text-shadow:
        0 0 8px rgba(30, 226, 143, 0.35),
        0 0 16px rgba(30, 226, 143, 0.12);
}

.full-rankings-link:active {
    transform: translateX(2px);
}
.rankings-back-button {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid #2b3950;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 10px 0 16px;
    color: #e2e8f0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.rankings-back-button:hover {
    border-color: #1ee28f;
    color: #1ee28f;
}
.full-rankings-subtitle {
    margin: 6px 0 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.full-rankings-subtitle span {
    color: #1ee28f;
    font-weight: 800;
}
/* =========================
   MY C2F DASHBOARD
   ========================= */

.my-c2f-card {
  margin-top: 18px;
}

.my-c2f-card .player-stats-heading {
  margin-bottom: 22px;
}

.my-c2f-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.my-c2f-panel {
  background: #111a2b;
  border: 1px solid #2b3950;
  border-radius: 14px;
  padding: 20px;
  min-height: 150px;
}

.my-c2f-panel h3 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.my-c2f-favorite-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  margin-bottom: 8px;
  background: #18243a;
  border: 1px solid #2b3950;
  border-radius: 9px;
}

.my-c2f-favorite-item:last-child {
  margin-bottom: 0;
}

.my-c2f-favorite-item span {
  font-size: 1rem;
}

.my-c2f-favorite-item strong {
  color: #f8fafc;
  font-size: 0.92rem;
}
.my-c2f-player-link {
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.my-c2f-player-link strong {
    color: #f8fafc;
}
.my-c2f-team-link {
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.my-c2f-team-link strong {
    color: #f8fafc;
}

.my-c2f-player-link strong {
  color: #f8fafc;
}
#my-c2f-favorite-players > p,
#my-c2f-favorite-teams > p {
  margin: 0;
  color: #94a3b8;
}
.favorite-player-button {
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    margin: 0 0 0 6px;
    font: inherit;
    cursor: pointer;
    line-height: 1;
}

.favorite-player-button.is-favorite {
    color: inherit;
}
.c2f-ecosystem {
    margin-bottom: 24px;
}

.c2f-ecosystem > p:not(.eyebrow) {
    color: #94a3b8;
    max-width: 760px;
    line-height: 1.6;
}

.c2f-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
}

.c2f-ecosystem-item {
    background: #111827;
    border: 1px solid #263247;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c2f-ecosystem-item strong {
    color: #f8fafc;
    font-size: 1rem;
}

.c2f-ecosystem-item span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.c2f-ecosystem-item {
    position: relative;
    overflow: hidden;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.c2f-ecosystem-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 226, 143, 0.9),
        transparent
    );

    opacity: 0.45;
    transition:
        opacity 0.18s ease,
        left 0.18s ease,
        right 0.18s ease;

    pointer-events: none;
}

.c2f-ecosystem-item:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 226, 143, 0.7);

    background: linear-gradient(
        135deg,
        rgba(30, 226, 143, 0.08),
        #162033 45%
    );

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(30, 226, 143, 0.10);
}

.c2f-ecosystem-item:hover::before {
    left: 3%;
    right: 3%;
    opacity: 1;
}

.c2f-ecosystem-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c2f-ecosystem-icon {
    font-size: 1.35rem;
}

.c2f-ecosystem-step {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}
@media (max-width: 700px) {
    .c2f-ecosystem-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
  .my-c2f-grid {
    grid-template-columns: 1fr;
  }
}
.c2f-ecosystem-grid {
    grid-template-columns: 1fr;
}
.c2f-ecosystem-action {
    width: 100%;
    text-align: left;
    text-decoration: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.hero.card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(20, 82, 66, 0.34) 0%,
            rgba(24, 36, 58, 0.98) 38%,
            rgba(24, 36, 58, 1) 100%
        );

    border: 1px solid rgba(40, 230, 165, 0.55);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.32),
        0 0 30px rgba(40, 230, 165, 0.12);
}

.hero.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(40, 230, 165, 0.95),
        transparent
    );

    pointer-events: none;
}

.hero.card .hero-stat {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}
#ecosystem-premium {
    background:
        linear-gradient(
            135deg,
            rgba(30, 226, 143, 0.07),
            #111827 42%
        );

    border-color: rgba(30, 226, 143, 0.34);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 0 24px rgba(30, 226, 143, 0.045);
}

#ecosystem-premium::before {
    opacity: 0.8;
}

#ecosystem-premium strong {
    color: #f8fafc;
}

#ecosystem-premium .c2f-ecosystem-icon {
    filter: drop-shadow(0 0 6px rgba(30, 226, 143, 0.28));
}
/* C2F ranking presentation polish */

.ranking-fill {
    transform-origin: left center;
    animation: c2f-ranking-reveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;

    box-shadow:
        0 0 8px rgba(30, 226, 143, 0.30),
        0 0 18px rgba(30, 226, 143, 0.10);

    transition:
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.ranking-row strong {
    color: #1ee28f;
    text-shadow: 0 0 10px rgba(30, 226, 143, 0.22);
}

.ranking-item:hover .ranking-fill {
    filter: brightness(1.12);

    box-shadow:
        0 0 10px rgba(30, 226, 143, 0.45),
        0 0 22px rgba(30, 226, 143, 0.16);
}

@keyframes c2f-ranking-reveal {
    from {
        transform: scaleX(0);
        opacity: 0.35;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}
/* C2F header navigation polish */

.site-nav a {
    position: relative;
    text-decoration: none;

    transition:
        color 0.18s ease,
        text-shadow 0.18s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;

    left: 50%;
    right: 50%;
    bottom: -6px;

    height: 2px;
    border-radius: 999px;

    background: #1ee28f;

    opacity: 0;

    transition:
        left 0.18s ease,
        right 0.18s ease,
        opacity 0.18s ease,
        box-shadow 0.18s ease;
}

.site-nav a:hover {
    color: #f8fafc;

    text-shadow:
        0 0 10px rgba(30, 226, 143, 0.18);
}

.site-nav a:hover::after {
    left: 10%;
    right: 10%;

    opacity: 1;

    box-shadow:
        0 0 10px rgba(30, 226, 143, 0.45);
}


/* C2F feature card presentation */
.c2f-feature-card {
    position: relative;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .c2f-feature-card:hover {
        transform: translateY(-3px);

        border-color: rgba(30, 226, 143, 0.28);

        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.24),
            0 0 22px rgba(30, 226, 143, 0.07);
    }
}
/* C2F feature card accent beam */
.c2f-feature-card {
    overflow: hidden;
}

.c2f-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;

    width: 48px;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(30, 226, 143, 0.95),
        rgba(30, 226, 143, 0)
    );

    opacity: 0.65;

    transition:
        width 0.22s ease,
        opacity 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .c2f-feature-card:hover::before {
        width: 130px;
        opacity: 1;
    }
}
/* C2F Team Rankings presentation */
.team-rankings-card {
    position: relative;
    overflow: hidden;
}

.team-rankings-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;

    width: 56px;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(30, 226, 143, 0.95),
        rgba(30, 226, 143, 0)
    );

    opacity: 0.55;
}

.team-rankings-card .ranking-item {
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .team-rankings-card .ranking-item:hover {
        transform: translateX(4px);

        background: linear-gradient(
            90deg,
            rgba(30, 226, 143, 0.035),
            transparent 55%
        );
    }
}
/* C2F ranking score emphasis */
.ranking-row > strong {
    transition:
        transform 0.18s ease,
        color 0.18s ease,
        text-shadow 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .ranking-item:hover .ranking-row > strong {
        transform: scale(1.08);
        color: #45f0a8;

        text-shadow:
            0 0 8px rgba(30, 226, 143, 0.45),
            0 0 16px rgba(30, 226, 143, 0.18);
    }
}
/* C2F premium card interaction */
.premium-card {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.premium-card-action {
    display: inline-block;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        text-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .premium-card:hover {
        transform: translateY(-3px);

        border-color: rgba(30, 226, 143, 0.55);

        background: linear-gradient(
            135deg,
            rgba(30, 226, 143, 0.055),
            #111827 45%
        );

        box-shadow:
            0 14px 30px rgba(0, 0, 0, 0.24),
            0 0 22px rgba(30, 226, 143, 0.10);
    }

    .premium-card:hover .premium-card-action {
        transform: translateX(4px);
        color: #45f0a8;

        text-shadow:
            0 0 10px rgba(30, 226, 143, 0.30);
    }
}
/* C2F feature card accent rail */
.c2f-feature-card {
    position: relative;
    overflow: hidden;
}

.c2f-feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;

    width: 72px;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(30, 226, 143, 0.95),
        rgba(30, 226, 143, 0)
    );

    box-shadow:
        0 0 8px rgba(30, 226, 143, 0.35),
        0 0 18px rgba(30, 226, 143, 0.12);

    opacity: 0.8;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .c2f-feature-card:hover::after {
        width: 115px;
        opacity: 1;
        transition:
            width 0.22s ease,
            opacity 0.22s ease;
    }
}
/* ==============================
   C2F Tonight's Games presentation
   ============================== */

.c2f-games-card {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(30, 226, 143, 0.035) 0%,
            rgba(17, 26, 43, 1) 34%,
            rgba(17, 26, 43, 1) 100%
        );

    border-color: rgba(30, 226, 143, 0.28);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 18px 38px rgba(0, 0, 0, 0.18);
}

.c2f-games-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 22px;

    width: 90px;
    height: 2px;

    background: linear-gradient(
        90deg,
        rgba(30, 226, 143, 1),
        rgba(30, 226, 143, 0)
    );

    box-shadow:
        0 0 10px rgba(30, 226, 143, 0.35),
        0 0 22px rgba(30, 226, 143, 0.12);

    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .c2f-games-card {
        transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
    }

    .c2f-games-card:hover {
        border-color: rgba(30, 226, 143, 0.48);

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.035),
            0 18px 42px rgba(0, 0, 0, 0.24),
            0 0 24px rgba(30, 226, 143, 0.055);
    }
}
/* Individual matchup card polish */
.c2f-matchup-card {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .c2f-matchup-card:hover {
        transform: translateY(-3px);

        box-shadow:
            inset 0 0 0 1px rgba(30, 226, 143, 0.38),
            0 10px 26px rgba(0, 0, 0, 0.22),
            0 0 18px rgba(30, 226, 143, 0.08);

        filter: brightness(1.025);
    }
}
/* My C2F only appears when its nav tab is opened */
#my-c2f {
    display: none;
}

#my-c2f:target {
    display: block;
}
/* Dedicated My C2F view */
body.my-c2f-view section:not(#my-c2f) {
    display: none;
}

body.my-c2f-view #my-c2f {
    display: block;
}
/* Dedicated Admin view */
body.admin-view section:not(#admin-panel) {
    display: none;
}

body.admin-view #admin-panel {
    display: block;
}
/* C2F ADMIN USER ACCESS CONTROL */

.admin-panel-card {
    border: 1px solid rgba(53, 230, 165, 0.28);
    background:
        linear-gradient(
            180deg,
            rgba(24, 42, 66, 0.98) 0%,
            rgba(14, 26, 46, 0.98) 100%
        );
}

#admin-user-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.admin-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    padding: 16px 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    background:
        linear-gradient(
            180deg,
            rgba(31, 50, 76, 0.96) 0%,
            rgba(20, 35, 58, 0.96) 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 8px 24px rgba(0, 0, 0, 0.12);
}

.admin-user-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-user-row strong {
    color: #ffffff;
    font-size: 15px;
}

.admin-user-row span {
    color: #8fa1b8;
    font-size: 12px;
}

.admin-premium-button {
    border: 1px solid rgba(53, 230, 165, 0.42);
    border-radius: 10px;

    padding: 9px 14px;

    background:
        linear-gradient(
            180deg,
            rgba(53, 230, 165, 0.18) 0%,
            rgba(53, 230, 165, 0.08) 100%
        );

    color: #35e6a5;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}

.admin-premium-button:hover {
    transform: translateY(-1px);

    background:
        linear-gradient(
            180deg,
            rgba(53, 230, 165, 0.28) 0%,
            rgba(53, 230, 165, 0.12) 100%
        );

    border-color: rgba(53, 230, 165, 0.7);
}

.admin-premium-button:disabled {
    opacity: 0.5;
    cursor: wait;
}
.admin-premium-button--revoke {
    color: #ff7b86;
    border-color: rgba(255, 123, 134, 0.42);

    background:
        linear-gradient(
            180deg,
            rgba(255, 123, 134, 0.16) 0%,
            rgba(255, 123, 134, 0.07) 100%
        );
}

.admin-premium-button--revoke:hover {
    border-color: rgba(255, 123, 134, 0.72);

    background:
        linear-gradient(
            180deg,
            rgba(255, 123, 134, 0.26) 0%,
            rgba(255, 123, 134, 0.11) 100%
        );
}.admin-user-row--admin {
    border-color: rgba(255, 215, 90, 0.35);
    background:
        linear-gradient(
            180deg,
            rgba(40, 50, 70, 0.98) 0%,
            rgba(24, 36, 58, 0.98) 100%
        );
}

.admin-user-row--admin::after {
    content: "👑 ADMIN";
    color: #ffd75a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;

    padding: 6px 10px;
    border: 1px solid rgba(255, 215, 90, 0.32);
    border-radius: 999px;

    background: rgba(255, 215, 90, 0.08);
}
/* Active navigation tab */
.site-nav a.active {
    color: #45f0a8;
    text-shadow: 0 0 10px rgba(30, 226, 143, 0.35);
}

.site-nav a.active::after {
    opacity: 1;
    left: 10%;
    right: 10%;
}
.slate-player-insight {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
    color: #8f9bb3;
    letter-spacing: 0.02em;
}
/* C2F Premium Matchup Read */
.slate-matchup-read {
    margin: 0;
    padding: 10px 12px;
    background: rgba(30, 226, 143, 0.04);
    border-top: 1px solid rgba(30, 226, 143, 0.12);
    border-bottom: 1px solid rgba(30, 226, 143, 0.12);
}

.slate-matchup-read span {
    display: block;
    margin-bottom: 4px;
    color: #1ee28f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.slate-matchup-read strong {
    display: block;
    color: #dbe5f5;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}
/* C2F Premium daily slate label */
.premium-slate-date {
    margin: 6px 0 20px;
    color: #1ee28f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}
/* C2F Premium Slate Leaders */
.premium-slate-leaders {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0 20px;
}

.premium-slate-leaders > div {
    padding: 14px 16px;
    background:
        linear-gradient(
            135deg,
            rgba(30, 226, 143, 0.08),
            rgba(30, 226, 143, 0.02)
        );
    border: 1px solid rgba(30, 226, 143, 0.18);
    border-radius: 12px;
}

.premium-slate-leaders span {
    display: block;
    margin-bottom: 7px;
    color: #1ee28f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-slate-leaders strong {
    display: block;
    color: #f8f9fb;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 760px) {
    .premium-slate-leaders {
        grid-template-columns: 1fr;
    }
}
/* C2F Team Rating Tier Badges */
.team-tier {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    border: 1px solid transparent;
}

/* Elite */
.team-tier.elite {
    color: #1ee28f;
    background: rgba(30, 226, 143, 0.12);
    border-color: rgba(30, 226, 143, 0.35);
    box-shadow: 0 0 10px rgba(30, 226, 143, 0.10);
}

/* Strong */
.team-tier.strong {
    color: #58d9ae;
    background: rgba(88, 217, 174, 0.10);
    border-color: rgba(88, 217, 174, 0.25);
}

/* Above Average */
.team-tier.above-average {
    color: #8fd9bb;
    background: rgba(143, 217, 187, 0.08);
    border-color: rgba(143, 217, 187, 0.20);
}

/* Average */
.team-tier.average {
    color: #b6c2d2;
    background: rgba(182, 194, 210, 0.08);
    border-color: rgba(182, 194, 210, 0.18);
}

/* Below Average */
.team-tier.below-average {
    color: #d6b879;
    background: rgba(214, 184, 121, 0.08);
    border-color: rgba(214, 184, 121, 0.20);
}

/* Weak */
.team-tier.weak {
    color: #d58b8b;
    background: rgba(213, 139, 139, 0.08);
    border-color: rgba(213, 139, 139, 0.20);
}
/* ============================= */
/* C2F TEAM SCORE BREAKDOWN       */
/* ============================= */

.team-score-breakdown {
    margin-top: 16px;
    padding: 16px 18px;
    background: rgba(8, 18, 36, 0.5);
    border: 1px solid rgba(30, 226, 143, 0.16);
    border-radius: 12px;
}

.team-score-breakdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.team-score-breakdown-row span {
    color: #9aa9bd;
    font-size: 12px;
    font-weight: 600;
}

.team-score-breakdown-row strong {
    color: #f8f9fb;
    font-size: 13px;
    font-weight: 800;
}

.team-score-breakdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    padding-top: 12px;
}

.team-score-breakdown-total > span {
    color: #1ee28f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-score-breakdown-total > strong {
    color: #1ee28f;
    font-size: 17px;
    font-weight: 900;
}
/* C2F Team Score Breakdown polish */

.team-score-breakdown-heading {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.team-score-breakdown-heading span {
    color: #1ee28f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-score-breakdown-heading strong {
    color: #f8f9fb;
    font-size: 13px;
    font-weight: 700;
}

.team-score-breakdown-note {
    margin: 0 0 12px;
    padding: 9px 11px;
    border-left: 2px solid rgba(30, 226, 143, 0.65);
    background: rgba(30, 226, 143, 0.04);
    color: #aeb9c8;
    font-size: 11px;
    line-height: 1.5;
    border-radius: 4px;
}
/* ============================= */
/* C2F TEAM PROFILE SUMMARY      */
/* ============================= */

.team-profile-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0 16px;
}

.team-profile-summary > div {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}

.team-profile-summary span {
  display: block;
  color: #8f9fb3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.team-profile-summary strong {
  color: #f8f9fb;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .team-profile-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}
.daily-player-features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.daily-player-features > .card {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.daily-player-features > .card .full-rankings-link {
    margin-top: auto;
}
@media (max-width: 760px) {
    .daily-player-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .daily-player-features > .card {
        min-width: 0;
        width: 100%;
    }
}
/* Premium Player Report — Last 5 Game Log */

.player-game-log-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 10px;
    border: 1px solid #263754;
    border-radius: 12px;
    background: #101d32;
}

.player-game-log-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.player-game-log-table thead {
    background: #16253d;
}

.player-game-log-table th {
    padding: 12px 14px;
    color: #9cabc2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.player-game-log-table th:first-child,
.player-game-log-table th:nth-child(2) {
    text-align: left;
}

.player-game-log-table td {
    padding: 13px 14px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.player-game-log-table td:first-child,
.player-game-log-table td:nth-child(2) {
    text-align: left;
}

.player-game-log-table tbody tr {
    border-top: 1px solid #263754;
    transition: background 0.15s ease;
}

.player-game-log-table tbody tr:hover {
    background: rgba(53, 230, 165, 0.06);
}

.player-game-log-table td:nth-child(5) strong {
    color: #35e6a5;
    font-size: 15px;
}

.player-game-log-table td:nth-child(7) {
    color: #9cabc2;
}

@media (max-width: 700px) {
    .player-game-log-table-wrapper {
        overflow-x: auto;
    }
}