/* ==========================================================================
   SureShot Landing Page Styles
   Consolidated & Clean - November 2025
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - SureShot Brand
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --ss-orange: #ec7928;
    --ss-orange-light: #F39B40;
    --ss-orange-dark: #d66620;
    
    /* Neutrals */
    --ss-black: #000000;
    --ss-ink: #111111;
    --ss-ink-light: #1a1a1a;
    --ss-white: #ffffff;
    --ss-muted: #a0a0a0;
    --ss-gray: #888888;
    
    /* Semantic */
    --ss-green: #4ADE80;
    --ss-red: #EF4444;
    
    /* Fonts */
    --font-heading: 'BigNoodleTitling', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* BigNoodleTitling Font */
@font-face {
    font-family: 'BigNoodleTitling';
    src: url('/static/fonts/big_noodle_titling.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */
body#page-top {
    background-color: var(--ss-black);
    color: var(--ss-white);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, .h1, .h2, .h3,
.hero-headline,
.display-4, .display-5,
.prize-amount {
    font-family: var(--font-heading) !important;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-ss-orange { color: var(--ss-orange) !important; }
.text-ss-orange-light { color: var(--ss-orange-light) !important; }
.text-ss-muted { color: var(--ss-muted) !important; }
.text-ss-green { color: var(--ss-green) !important; }
.bg-ss-ink { background-color: var(--ss-ink); }
.bg-ss-ink-light { background-color: var(--ss-ink-light); }
.bg-ss-black { background-color: var(--ss-black); }
.bg-ss-orange { background-color: var(--ss-orange); }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
#mainNav {
    padding: 0.75rem 0;
    transition: background-color 0.3s ease;
}

#mainNav .navbar-brand img {
    transition: transform 0.2s ease;
}

#mainNav .btn-primary {
    background-color: var(--ss-orange) !important;
    border: 2px solid var(--ss-orange) !important;
    color: var(--ss-white) !important;
    font-weight: 600;
}

#mainNav .btn-primary:hover {
    background-color: var(--ss-orange-dark) !important;
    border-color: var(--ss-orange-dark) !important;
    transform: translateY(-1px);
}

#mainNav .btn-outline-light {
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    background: radial-gradient(circle at top right, rgba(236, 121, 40, 0.15), transparent 40%),
                var(--ss-black);
    overflow: hidden;
    min-height: 100vh;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: normal;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Live Status Badges - Desktop */
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    white-space: nowrap;
}

/* Live Status Badges - Mobile Scroller */
.mobile-badge-scroller {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    padding-bottom: 20px;
}

.hero-badges-mobile {
    display: flex;
    gap: 10px;
    padding: 0 1rem;
    animation: scrollBadges 20s linear infinite;
    width: max-content;
}

.hero-badge-mobile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    white-space: nowrap;
}

@keyframes scrollBadges {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Status Dots */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ss-green);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--ss-green);
    animation: pulse 2s infinite;
}

.reg-dot {
    width: 8px;
    height: 8px;
    background-color: var(--ss-orange);
    border-radius: 50%;
    margin-right: 8px;
}

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    70% { opacity: 1; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* --------------------------------------------------------------------------
   CTA Buttons
   -------------------------------------------------------------------------- */
.btn-ss-primary {
    background-color: var(--ss-orange);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(236, 121, 40, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-ss-primary:hover {
    transform: translateY(-2px);
    background-color: var(--ss-orange-dark);
    color: white;
    box-shadow: 0 15px 30px rgba(236, 121, 40, 0.4);
}

.btn-ss-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-ss-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* --------------------------------------------------------------------------
   Hero Video
   -------------------------------------------------------------------------- */
.hero-video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-video-container {
        max-width: 300px;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-video-container {
        max-width: 260px;
    }
}

/* --------------------------------------------------------------------------
   Prize Cards
   -------------------------------------------------------------------------- */
.prize-card {
    background: linear-gradient(145deg, rgba(236, 121, 40, 0.15), rgba(0, 0, 0, 0));
    border: 1px solid rgba(236, 121, 40, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.prize-card:hover {
    transform: scale(1.02);
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--ss-orange);
    line-height: 1;
    margin: 10px 0;
}

/* --------------------------------------------------------------------------
   Winners Section
   -------------------------------------------------------------------------- */
.winners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .winners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.winner-card {
    background: linear-gradient(145deg, #1f1f1f 0%, #171717 100%);
    border: 1px solid rgba(236, 121, 40, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.winner-card:hover {
    border-color: rgba(236, 121, 40, 0.5);
    transform: translateY(-5px);
}

.winner-card.featured {
    border-color: var(--ss-orange);
}

.winner-photo {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.winner-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.winner-quote i {
    color: var(--ss-orange);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 15px;
}

.winner-name {
    color: var(--ss-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ss-orange) 0%, var(--ss-orange-light) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--ss-black);
}

.feature-card {
    background: var(--ss-ink-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 121, 40, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ss-orange) 0%, var(--ss-orange-light) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Comparison Table
   -------------------------------------------------------------------------- */
.comparison-section {
    padding: 80px 0;
    background-color: var(--ss-ink);
}

.comparison-table {
    background: #1c1c1e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
}

.comparison-header {
    background: #000;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #333;
}

.col-feature-head {
    flex: 2;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.col-classic-head {
    flex: 1;
    text-align: center;
    color: #8e8e93;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.col-sureshot-head {
    flex: 1;
    text-align: center;
    background: rgba(236, 121, 40, 0.2);
    color: var(--ss-orange);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(236, 121, 40, 0.3);
}

.comparison-row {
    display: flex;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    align-items: center;
}

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

.col-feature {
    flex: 2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--ss-orange);
    font-size: 1.3rem;
}

.col-classic, .col-sureshot {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.x-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #3a3a3c;
    color: #8e8e93;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.check-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.2);
    color: var(--ss-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 1.2rem;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.status-text {
    font-size: 0.85rem;
    color: #8e8e93;
    text-align: center;
    line-height: 1.2;
}

.status-text-light {
    font-size: 0.9rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
}

/* Comparison Table Mobile */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-row, .comparison-header {
        padding: 1rem 0.8rem;
    }
    
    .col-feature, .col-feature-head {
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .feature-icon {
        font-size: 1.1rem;
    }
    
    .status-text, .status-text-light {
        font-size: 0.75rem;
    }
    
    .x-mark, .check-mark {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .col-sureshot-head {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------------------------
   Demo Section - Interactive Confidence Tipping
   -------------------------------------------------------------------------- */
.demo-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--ss-ink) 0%, var(--ss-black) 100%);
}

/* Score Panel */
.demo-score-panel {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-score-item {
    text-align: center;
    padding: 0 20px;
}

.demo-score-item.demo-score-main {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 30px;
}

.demo-score-label {
    display: block;
    font-size: 0.75rem;
    color: var(--ss-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.demo-score-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--ss-orange);
}

.demo-score-main .demo-score-value {
    font-size: 2.2rem;
}

/* Instructions Toggle */
.demo-instructions-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-bottom: 15px;
    color: var(--ss-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.demo-instructions-toggle:hover {
    color: var(--ss-orange);
}

.demo-instructions {
    display: none;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(236, 121, 40, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(236, 121, 40, 0.2);
}

.demo-instructions.show {
    display: flex;
}

.demo-instruction-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.demo-step {
    width: 24px;
    height: 24px;
    background: var(--ss-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Games Wrapper */
.demo-games-wrapper {
    display: flex;
    gap: 10px;
    max-width: 100%;
}

/* Confidence Scale */
.demo-confidence-scale {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
    width: 50px;
}

.demo-confidence-item {
    height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1c1c1e;
    border: 2px solid #333;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.demo-confidence-item.active {
    border-color: var(--ss-orange);
    background: rgba(236, 121, 40, 0.15);
}

.demo-conf-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
}

.demo-conf-label {
    font-size: 0.6rem;
    color: var(--ss-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Games List */
.demo-games-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

/* Individual Game */
.demo-game {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #222;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #222;
    height: 58px;
    cursor: grab;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.3s ease,
                margin 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.2s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.demo-game:hover:not(.dragging):not(.demo-drag-source) {
    transform: translateY(-1px);
    box-shadow: 4px 4px 0 #222;
}

.demo-game:active {
    cursor: grabbing;
}

/* The original item location while dragging - shows placeholder gap */
.demo-game.demo-drag-source {
    opacity: 0.4;
    transform: scale(0.98);
    border-style: dashed;
    border-color: var(--ss-orange);
    background: rgba(236, 121, 40, 0.1);
}

/* Floating clone that follows the cursor */
.demo-game.demo-drag-helper {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    cursor: grabbing;
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--ss-orange);
    transition: none; /* No transitions on helper - follows mouse directly */
    opacity: 0.95;
}

/* Gap indicator - items shift to make room */
.demo-game.demo-shift-down {
    transform: translateY(64px);
}

.demo-game.demo-shift-up {
    transform: translateY(-64px);
}

/* Dropped animation */
.demo-game.demo-dropped {
    animation: dropBounce 0.3s ease-out;
}

@keyframes dropBounce {
    0% { transform: scale(1.02); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.demo-game.correct {
    border-color: #28a745;
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.15) 0%, #fff 30%);
}

.demo-game.incorrect {
    border-color: #dc3545;
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.15) 0%, #fff 30%);
}

/* Game Content */
.demo-game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 10px;
    min-width: 0;
}

.demo-game-info {
    display: none; /* Hidden for cleaner look */
}

.demo-game-date,
.demo-game-time,
.demo-game-venue {
    display: none;
}

/* Teams Container */
.demo-teams {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 0;
    color: #000;
}

/* Home team - feathered gradient (orange slides in from left) */
.demo-team-home {
    background: linear-gradient(to right, var(--ss-orange) 45%, #d5d5d5 55%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.5s ease, color 0.3s ease;
}

.demo-team-home:hover {
    background-position: 90% 0;
}

.demo-team-home.selected {
    background-position: 0% 0;
    color: #fff;
}

/* Away team - feathered gradient (orange slides in from right) */
.demo-team-away {
    flex-direction: row-reverse;
    background: linear-gradient(to left, var(--ss-orange) 45%, #d5d5d5 55%);
    background-size: 200% 100%;
    background-position: 0% 0;
    transition: background-position 0.5s ease, color 0.3s ease;
}

.demo-team-away:hover {
    background-position: 10% 0;
}

.demo-team-away.selected {
    background-position: 100% 0;
    color: #fff;
}

.demo-team-logo {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.demo-team-name {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-team-abbrev {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
}

/* VS Icon */
.demo-vs {
    flex-shrink: 0;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-vs-icon {
    width: 24px;
    height: 24px;
}

.demo-vs-result {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.demo-vs-result.win {
    background: #28a745;
    color: white;
}

.demo-vs-result.loss {
    background: #dc3545;
    color: white;
}

/* Outcome Columns */
.demo-outcome-cols {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 8px;
    border-left: 1px solid #eee;
    flex-shrink: 0;
}

.demo-outcome {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    white-space: nowrap;
}

.demo-outcome-label {
    color: #888;
}

.demo-outcome-correct .demo-outcome-value {
    color: #28a745;
    font-weight: 700;
}

.demo-outcome-wrong .demo-outcome-value {
    color: #dc3545;
    font-weight: 700;
}

/* Drag Handle */
.demo-drag-handle {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    border-left: 1px solid #eee;
    flex-shrink: 0;
}

.demo-drag-handle i {
    font-size: 1.2rem;
}

/* Demo Actions */
.demo-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.demo-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.demo-btn-simulate {
    background: var(--ss-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 121, 40, 0.3);
}

.demo-btn-simulate:hover:not(:disabled) {
    background: var(--ss-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 121, 40, 0.4);
}

.demo-btn-simulate:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.demo-btn-reset {
    background: transparent;
    color: var(--ss-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-btn-reset:hover {
    color: white;
    border-color: white;
}

/* Results Panel */
.demo-results-panel {
    text-align: center;
    padding: 30px;
    margin-top: 25px;
    background: linear-gradient(135deg, rgba(236, 121, 40, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    border: 2px solid var(--ss-orange);
    border-radius: 16px;
}

.demo-results-panel h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.demo-results-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.demo-results-label {
    font-size: 0.9rem;
    color: var(--ss-muted);
    margin-right: 10px;
}

.demo-results-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--ss-orange);
    line-height: 1;
}

.demo-results-max {
    font-size: 1.5rem;
    color: var(--ss-muted);
}

.demo-results-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Disclaimer */
.demo-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--ss-gray);
    margin-top: 20px;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .demo-score-panel {
        gap: 10px;
        padding: 12px;
    }
    
    .demo-score-item {
        padding: 0 10px;
    }
    
    .demo-score-item.demo-score-main {
        padding: 0 15px;
    }
    
    .demo-score-value {
        font-size: 1.4rem;
    }
    
    .demo-score-main .demo-score-value {
        font-size: 1.8rem;
    }
    
    .demo-instructions {
        flex-direction: column;
        gap: 10px;
    }
    
    .demo-confidence-scale {
        width: 36px;
    }
    
    .demo-confidence-item {
        height: 52px;
    }
    
    .demo-conf-num {
        font-size: 1.1rem;
    }
    
    .demo-game {
        height: 52px;
    }
    
    .demo-team-name {
        display: none;
    }
    
    .demo-team-abbrev {
        display: block;
    }
    
    .demo-team-logo {
        width: 20px;
        height: 20px;
    }
    
    .demo-outcome-cols {
        padding: 2px 5px;
    }
    
    .demo-outcome {
        font-size: 0.6rem;
    }
    
    .demo-drag-handle {
        width: 24px;
    }
    
    .demo-game-info {
        font-size: 0.55rem;
    }
    
    .demo-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .demo-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .demo-game-venue {
        display: none;
    }
    
    .demo-outcome-label {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Explore / Learn More Section
   -------------------------------------------------------------------------- */
.explore-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.explore-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.explore-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.explore-card:hover {
    transform: translateY(-5px);
    border-color: var(--ss-orange);
    box-shadow: 0 15px 40px rgba(236, 121, 40, 0.15);
}

.explore-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ss-orange) 0%, var(--ss-orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 20px;
}

.explore-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.explore-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.explore-card .link-arrow {
    color: var(--ss-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.explore-card:hover .link-arrow {
    gap: 10px;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header-dark {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-dark h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-header-dark p {
    color: var(--ss-muted);
    font-size: 1.1rem;
}

.section-header-light {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-light h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header-light p {
    color: #666;
    font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.landing-footer {
    background: #000;
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--ss-gray);
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-links-column a {
    display: block;
    color: var(--ss-gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--ss-orange);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--ss-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--ss-orange);
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        margin: 0 auto;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 130px;
    }
    
    .hero-headline {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }
    
    .btn-ss-primary,
    .btn-ss-outline {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}
