/* ============================================
   STATALYSTS - COMPLETE UNIFIED CSS
   Professional sports analytics design
   ============================================ */

/* Variables */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0f1419;
    --bg-tertiary: #1a1f2e;
    --border-color: #1a1f2e;
    --border-hover: #2a2f3e;
    --text-primary: #e8eaf0;
    --text-secondary: #a8b2c8;
    --text-tertiary: #5a6270;
    --accent-blue: #4dabf7;
    --accent-blue-hover: #339af0;
    --accent-green: #51cf66;
    --accent-yellow: #ffd43b;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.01em;
    font-weight: 800;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.25rem; line-height: 1.4; }

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: #000;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.season-info {
    color: var(--text-secondary);
}

.top-nav-links {
    display: flex;
    gap: 1.5rem;
}

.top-nav-links a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.top-nav-links a:hover {
    color: var(--text-primary);
}

/* ============================================
   MAIN HEADER
   ============================================ */

.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a.active {
    color: var(--accent-blue);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-blue);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-login {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-login:hover {
    background: rgb(48, 179, 255);
    border-color: rgb(255, 255, 255);
    color: rgb(233, 233, 233);
}

.btn-subscribe{
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    color: rgb(48, 179, 255);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-subscribe:hover{
    background: rgb(48, 179, 255);
    border-color: rgb(255, 255, 255);
    color: rgb(233, 233, 233);
}




.btn-large {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.0625rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
}

/* User Badge */
.user-badge {
    background: rgba(81, 207, 102, 0.1);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.hero {
    background: #000;
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 2rem 3rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-header {
    max-width: 700px;
}

.hero-logo-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 400px;
    height: 400px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.hero-label {
    display: inline-block;
    background: rgba(77, 171, 247, 0.1);
    color: var(--accent-blue);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 2rem 1.5rem;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   FILTERS
   ============================================ */

.filters-section {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filters-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.filter-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.filter-tab {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tab:hover {
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.filter-tab.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-section {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.featured-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.centered {
    text-align: center;
}

.section-link {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.section-link:hover {
    color: var(--accent-blue-hover);
}

.section-badge {
    background: linear-gradient(135deg, var(--accent-green) 0%, #37b24d 100%);
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-pick {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    transition: border-color 0.2s;
}

.featured-pick:hover {
    border-color: var(--accent-blue);
}

.pick-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pick-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green) 0%, #37b24d 100%);
    color: #fff;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.pick-badge.medium {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #fcc419 100%);
    color: #000;
}

.pick-matchup {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pick-team {
    font-size: 1.75rem;
    font-weight: 700;
}

.pick-team.predicted {
    color: var(--accent-blue);
}

.pick-vs {
    color: var(--text-tertiary);
    font-weight: 600;
}

.pick-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pick-sidebar {
    background: rgba(77, 171, 247, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pick-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pick-stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.pick-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pick-stat-value.edge {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* Featured CTA */
.featured-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(77, 171, 247, 0.05);
    border: 1px solid rgba(77, 171, 247, 0.2);
    border-radius: 8px;
    text-align: center;
}

.featured-cta p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   PREVIEW SECTION (Landing Page)
   ============================================ */

.preview-section {
    background: var(--bg-secondary);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-content {
    max-width: 1400px;
    margin: 0 auto;
}

.rankings-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.rankings-preview-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.preview-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.preview-badge {
    background: rgba(77, 171, 247, 0.1);
    color: var(--accent-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-table {
    padding: 1rem;
}

.preview-row {
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    align-items: center;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-row:last-child {
    border-bottom: none;
}

.preview-rank {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.125rem;
}

.preview-team {
    font-weight: 600;
}

.preview-rating {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 28, 0.95) 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.rankings-preview-card:hover .preview-overlay {
    opacity: 1;
}

.preview-lock {
    text-align: center;
    padding: 2rem;
}

.preview-lock svg {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.preview-lock p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   GAME CARDS
   ============================================ */

.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.games-grid {
    display: grid;
    gap: 1rem;
}

.game-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s;
}

.game-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.game-card.edge-big {
    border-left: 4px solid var(--accent-green);
}

.game-card.edge-medium {
    border-left: 4px solid var(--accent-yellow);
}

.game-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.game-time {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.edge-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.edge-badge.big {
    background: linear-gradient(135deg, var(--accent-green) 0%, #37b24d 100%);
    color: #fff;
}

.edge-badge.medium {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #fcc419 100%);
    color: #000;
}

.game-body {
    padding: 1.5rem;
}

.matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.team {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team.away {
    align-items: flex-end;
    text-align: right;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.team-name.predicted {
    color: var(--accent-blue);
}

.team-record {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.vs-divider {
    color: var(--text-tertiary);
    font-weight: 600;
    font-size: 0.875rem;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value.highlight {
    color: var(--accent-green);
    font-size: 1.375rem;
}

/* ============================================
   CONFIDENCE BAR
   ============================================ */

.confidence-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-hover) 100%);
    border-radius: 3px;
    transition: width 0.5s;
}

.confidence-text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--accent-blue);
    min-width: 45px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background: var(--bg-primary);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.features-content {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(77, 171, 247, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    background: var(--bg-primary);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-hover);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-header {
    background: linear-gradient(135deg, rgba(77, 171, 247, 0.1) 0%, rgba(77, 171, 247, 0.05) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.check-icon {
    color: var(--accent-green);
    flex-shrink: 0;
}

.pricing-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Payment Steps */
.payment-steps {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.payment-steps h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   RANKINGS
   ============================================ */

.rankings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.rankings-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.rankings-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.rankings-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.rankings-table {
    width: 100%;
}

.rankings-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
}

.rankings-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.rankings-table tr:last-child {
    border-bottom: none;
}

.rankings-table td {
    padding: 1rem 1.5rem;
}

.rank-number {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.125rem;
    width: 60px;
}

.team-name-col {
    font-weight: 600;
}

.rating-col {
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Rankings Info Section */
.rankings-info {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

.rankings-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rankings-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rankings-info p:last-child {
    margin-bottom: 0;
}

.rankings-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ============================================
   CUSTOM PREDICTOR
   ============================================ */

.predictor-container {
    max-width: 800px;
    margin: 0 auto;
}

.predictor-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-select {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-select:hover,
.form-select:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.predict-button {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.predict-button:hover {
    background: var(--accent-blue-hover);
}

.predict-button:disabled {
    background: var(--border-hover);
    cursor: not-allowed;
}

/* Results Display */
.results-card {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    padding: 2rem;
    display: none;
}

.results-card.show {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-matchup {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.results-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.results-team {
    font-size: 1.5rem;
    font-weight: 700;
}

.results-team.winner {
    color: var(--accent-blue);
}

.results-vs {
    color: var(--text-tertiary);
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.result-confidence {
    margin-top: 1rem;
}

.error-message {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.error-message.show {
    display: block;
}

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

.footer {
    background: #000;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.empty-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .featured-pick {
        grid-template-columns: 1fr;
    }

    .rankings-container {
        grid-template-columns: 1fr;
    }

    .rankings-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-logo-panel {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filters-content {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .matchup {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team.away {
        align-items: flex-start;
        text-align: left;
    }

    .game-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .results-teams {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ==============================================
   LOGIN PAGE STYLES - ADD TO END OF style.css
   ============================================== */

.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.info-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.logo-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-box h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tagline {
    font-size: 1.125rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.records-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.record-card {
    background: rgba(77, 171, 247, 0.1);
    border: 1px solid rgba(77, 171, 247, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.record-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.record-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.record-percentage {
    font-size: 1.125rem;
    color: var(--accent-green);
    font-weight: 600;
}

.season-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.login-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.tab-btn.active {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.auth-tab {
    display: none;
}

.auth-tab.active {
    display: block;
}

.auth-tab h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.login-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-message {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: var(--accent-blue-hover);
}

.login-btn:disabled {
    background: var(--border-hover);
    cursor: not-allowed;
}

.loading-spinner {
    text-align: center;
    padding: 2rem;
    display: none;
}

.loading-spinner.show {
    display: block;
}

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.info-text {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

.payment-info {
    background: rgba(81, 207, 102, 0.1);
    border: 1px solid rgba(81, 207, 102, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.payment-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.payment-info ol {
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.payment-info li {
    margin-bottom: 0.5rem;
}

.payment-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    text-align: center;
}

/* Payment Pending Page */
.payment-pending-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.payment-pending-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-pending-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.payment-instructions-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payment-instructions-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.payment-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.venmo-details {
    background: rgba(77, 171, 247, 0.1);
    border: 1px solid rgba(77, 171, 247, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.venmo-username {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.25rem;
}

.venmo-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-green);
}

.user-email {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    padding: 1rem;
    font-family: monospace;
    font-size: 1.125rem;
    color: var(--accent-blue);
    margin: 0.5rem 0;
    word-break: break-all;
}

.instruction-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.payment-footer {
    text-align: center;
}

.footer-note {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-note a {
    color: var(--accent-blue);
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .records-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 2rem;
    }
    
    .login-container {
        padding: 2rem;
    }
    
    .payment-pending-container {
        padding: 2rem;
    }
    
    .payment-step {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==============================================
   HEADER FIXES - ADD TO style.css
   ============================================== */

/* User badge (shows email) */
.user-badge {
    padding: 0.5rem 1rem;
    background: rgba(77, 171, 247, 0.15);
    border: 1px solid rgba(77, 171, 247, 0.3);
    border-radius: 20px;
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Logout button */
.btn-logout {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-logout:hover {
    background: rgba(255, 59, 48, 0.1);
    border-color: rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

/* Adjust header actions for logged in state */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .user-badge {
        max-width: 120px;
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn-logout {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* ==============================================
   ADDITIONAL CSS FOR REDESIGNED PAGES
   ADD TO END OF style.css
   ============================================== */

/* Locked navigation links */
.nav-locked {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.nav-locked:hover {
    opacity: 0.8;
}

/* Locked CTA */
.locked-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(77, 171, 247, 0.05);
    border: 1px solid rgba(77, 171, 247, 0.2);
    border-radius: 12px;
}

.lock-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: grayscale(100%) brightness(1.2) sepia(100%) hue-rotate(180deg) saturate(3);
}

.locked-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Locked Preview Section */
.locked-preview {
    position: relative;
    min-height: 400px;
}

.preview-blur {
    filter: blur(8px);
    opacity: 0.3;
    pointer-events: none;
}

.sample-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.game-card.blur {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.preview-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 28, 0.95);
    border-radius: 12px;
}

.lock-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

.lock-icon-big {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(100%) brightness(1.2) sepia(100%) hue-rotate(180deg) saturate(3);
}

.lock-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lock-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Predictions Links (when logged in) */
.predictions-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.prediction-link-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.prediction-link-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(77, 171, 247, 0.2);
}

.prediction-link-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.prediction-link-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Table styling for predictions pages */
.predictions-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.predictions-table thead {
    background: rgba(77, 171, 247, 0.1);
}

.predictions-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.predictions-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.predictions-table tbody tr {
    transition: background 0.2s;
}

.predictions-table tbody tr:hover {
    background: rgba(77, 171, 247, 0.05);
}

/* Edge highlights */
.predictions-table tbody tr.edge-high {
    border-left: 4px solid var(--accent-green);
    background: rgba(81, 207, 102, 0.05);
}

.predictions-table tbody tr.edge-medium {
    border-left: 4px solid #ffd93d;
    background: rgba(255, 217, 61, 0.05);
}

.predictions-table tbody tr.edge-low {
    border-left: 4px solid transparent;
}

/* Team names in table */
.team-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.team-predicted {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Edge badge in table */
.edge-value {
    font-weight: 700;
}

.edge-value.high {
    color: var(--accent-green);
}

.edge-value.medium {
    color: #ffd93d;
}

/* Confidence bar in table */
.confidence-bar-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.confidence-bar-small {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill-small {
    height: 100%;
    background: var(--accent-blue);
    border-radius: 4px;
    transition: width 0.3s;
}

.confidence-text-small {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 45px;
}

/* Legend */
.predictions-legend {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.predictions-legend h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legend-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.legend-color.high {
    background: var(--accent-green);
}

.legend-color.medium {
    background: #ffd93d;
}

.legend-color.low {
    background: var(--border-color);
}

.legend-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .predictions-table {
        font-size: 0.875rem;
    }
    
    .predictions-table th,
    .predictions-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .predictions-table th {
        font-size: 0.75rem;
    }
    
    .lock-content {
        padding: 1.5rem;
    }
    
    .lock-icon-big {
        font-size: 3rem;
        filter: grayscale(100%) brightness(1.2) sepia(100%) hue-rotate(180deg) saturate(3);
    }
    
    .lock-content h3 {
        font-size: 1.25rem;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Additional spacing adjustments */
.preview-section + .preview-section {
    margin-top: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Ensure consistent button styling */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ADD TO END OF style.css - Fixes for inline style CSS errors */

/* Matchup cell styling */
.matchup-cell .vs-separator {
    color: var(--text-tertiary);
    margin: 0.25rem 0;
}

.matchup-cell .neutral-indicator {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.predictions-table .no-data {
    color: var(--text-tertiary);
}

/* Featured pick confidence bar spacing */
.pick-sidebar .confidence-bar {
    margin-top: 0.5rem;
}

/* How The Model Works Section */
.model-explanation-section {
    padding: 80px 20px;
    background: #0a0f1c;
}

.model-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-top: 10px;
}

.model-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.model-step {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.model-step:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(1.2) sepia(100%) hue-rotate(180deg) saturate(3);
}

.step-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .model-steps {
        grid-template-columns: 1fr;
    }
    
    .model-explanation-section {
        padding: 60px 20px;
    }
}