:root {
            --color-bg-dark: #0e1217;
            --color-card-bg: #161b22;
            --color-card-border: #21262d;
            --color-wood-dark: #2a1b15;
            --color-fire-orange: #ff5e00;
            --color-fire-glow: rgba(255, 94, 0, 0.35);
            --color-fire-hover: #ff731a;
            --color-saprissa-wine: #7c1a2f;
            --color-alajuela-red: #da121a;
            --color-whatsapp-green: #25d366;
            --color-success-green: #10b981;
            --color-text-primary: #f0f6fc;
            --color-text-secondary: #8b949e;
            --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--color-bg-dark);
            color: var(--color-text-primary);
            font-family: var(--font-body);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            line-height: 1.5;
        }

        h1, h2, h3, h4, .logo-text, .section-title, .btn-fire {
            font-family: var(--font-heading);
        }

        /* Header Navigation */
        header {
            background: linear-gradient(135deg, #18110e 0%, #12161f 100%);
            border-bottom: 2px solid var(--color-fire-orange);
            padding: 16px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-fire-glow);
            z-index: 10;
        }

        .header-container {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-text {
            font-size: 2.1rem;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 0 0 12px rgba(255, 94, 0, 0.4);
        }

        .logo-text i {
            color: var(--color-fire-orange);
            font-size: 1.8rem;
        }

        .logo-text span {
            color: var(--color-fire-orange);
        }

        .bar-badge {
            background: rgba(22, 27, 34, 0.8);
            border: 1px solid rgba(255, 215, 0, 0.4);
            border-radius: 10px;
            padding: 6px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
            backdrop-filter: blur(8px);
        }

        .bar-badge i {
            color: #ffd700;
            font-size: 1.2rem;
        }

        .bar-info {
            text-align: left;
        }

        .bar-subtitle {
            font-size: 0.65rem;
            text-transform: uppercase;
            color: var(--color-text-secondary);
            letter-spacing: 1px;
            font-weight: 700;
        }

        .bar-title {
            font-size: 0.92rem;
            font-weight: 800;
            color: #fff;
        }

        /* Nav links */
        nav {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        nav a {
            color: var(--color-text-secondary);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

        nav a.active {
            color: var(--color-fire-orange);
            background-color: rgba(255, 94, 0, 0.12);
            border-bottom: 2px solid var(--color-fire-orange);
        }

        nav a:hover:not(.active) {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.06);
        }

        .btn-host-header {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
            border: 1.5px solid #ffd700;
            color: #ffd700 !important;
            font-weight: 800 !important;
            border-radius: 8px;
            padding: 8px 16px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
        }

        .btn-host-header:hover {
            background-color: rgba(255, 215, 0, 0.35) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        /* Main Container Layout */
        .main-layout {
            max-width: 1240px;
            width: 100%;
            margin: 28px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 28px;
            flex-grow: 1;
        }

        /* Card panels */
        .charcoal-card {
            background-color: var(--color-card-bg);
            border: 1px solid var(--color-card-border);
            border-radius: 14px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 28px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .charcoal-card:hover {
            border-color: rgba(255, 94, 0, 0.25);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
        }

        /* Section Headings */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--color-card-border);
            padding-bottom: 14px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.15rem;
            text-transform: uppercase;
            font-weight: 800;
            color: var(--color-fire-orange);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }

        /* Banner Partido Destacado */
        .featured-banner {
            background: linear-gradient(rgba(14, 18, 23, 0.8), rgba(14, 18, 23, 0.95)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&q=80&w=1200') no-repeat center center;
            background-size: cover;
            border: 1.5px solid var(--color-fire-orange);
            box-shadow: 0 0 25px rgba(255, 94, 0, 0.25);
            text-align: center;
            padding: 36px 24px;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }

        .banner-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--color-fire-orange) 0%, #ff3300 100%);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
            letter-spacing: 1.5px;
            box-shadow: 0 0 12px rgba(255, 94, 0, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
            70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(255, 94, 0, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
        }

        .matchup-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 45px;
            margin: 20px 0 28px 0;
        }

        .team-block {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 190px;
        }

        .team-logo-wrapper {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid var(--color-card-border);
            margin-bottom: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.5);
            font-weight: 900;
            font-size: 2.3rem;
            font-family: var(--font-heading);
            transition: transform 0.25s ease;
        }

        .team-block:hover .team-logo-wrapper {
            transform: scale(1.05);
        }

        .team-logo-saprissa {
            background-color: var(--color-saprissa-wine);
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.8);
        }

        .team-logo-alajuelense {
            background-color: #0f0f11;
            color: var(--color-alajuela-red);
            border-color: var(--color-alajuela-red);
        }

        .team-name {
            font-weight: 900;
            font-size: 1.15rem;
            letter-spacing: 0.5px;
            font-family: var(--font-heading);
        }

        .vs-divider {
            font-size: 2rem;
            font-style: italic;
            font-weight: 900;
            color: var(--color-fire-orange);
            text-shadow: 0 0 10px rgba(255, 94, 0, 0.5);
        }

        .match-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .match-date {
            background-color: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--color-card-border);
            border-radius: 8px;
            padding: 6px 16px;
            font-size: 0.88rem;
            color: #ffaa66;
            font-weight: 700;
        }

        .match-league {
            font-size: 0.8rem;
            color: var(--color-text-secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
        }

        /* Action Buttons */
        .btn-fire {
            background: linear-gradient(135deg, var(--color-fire-orange) 0%, #ff3300 100%);
            color: #fff;
            border: none;
            padding: 16px 32px;
            font-size: 1.05rem;
            font-weight: 800;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .btn-fire:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--color-fire-hover) 0%, var(--color-fire-orange) 100%);
            box-shadow: 0 8px 25px rgba(255, 94, 0, 0.6), 0 0 15px var(--color-fire-orange);
        }

        .btn-fire:active {
            transform: translateY(0);
        }

        /* Upcoming matches list */
        .upcoming-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .upcoming-item {
            background-color: rgba(0, 0, 0, 0.25);
            border: 1px solid var(--color-card-border);
            border-radius: 10px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .upcoming-item:hover {
            border-color: var(--color-fire-orange);
            background-color: rgba(255, 94, 0, 0.08);
            transform: translateX(4px);
        }

        .upcoming-teams {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 0.88rem;
        }

        .upcoming-team-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            font-weight: 900;
            color: #fff;
        }

        .upcoming-info {
            text-align: right;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .upcoming-date {
            font-size: 0.75rem;
            color: #ffaa66;
            font-weight: 600;
        }

        .upcoming-arrow {
            color: var(--color-text-secondary);
            font-size: 0.85rem;
            transition: color 0.2s, transform 0.2s;
        }

        .upcoming-item:hover .upcoming-arrow {
            color: var(--color-fire-orange);
            transform: translateX(3px);
        }

        /* En la mesa Table Style with Zebra Striping */
        .mesa-table-wrapper {
            overflow-x: auto;
            width: 100%;
            border-radius: 10px;
            border: 1px solid var(--color-card-border);
        }

        table.mesa-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.9rem;
        }

        table.mesa-table th {
            background-color: #0d1117;
            color: var(--color-text-secondary);
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.75rem;
            padding: 14px 16px;
            border-bottom: 1px solid var(--color-card-border);
            letter-spacing: 0.5px;
        }

        table.mesa-table td {
            padding: 16px;
            border-bottom: 1px solid var(--color-card-border);
            vertical-align: middle;
        }

        /* Zebra striping */
        table.mesa-table tbody tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

        table.mesa-table tbody tr:hover {
            background-color: rgba(255, 94, 0, 0.05);
        }

        .user-cell {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #21262d, #0d1117);
            border: 1.5px solid var(--color-fire-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--color-fire-orange);
            font-weight: 800;
        }

        .badge-choice {
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 0.78rem;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .choice-home {
            background-color: rgba(218, 18, 26, 0.18);
            border: 1px solid var(--color-alajuela-red);
            color: #ff6b6b;
        }

        .choice-away {
            background-color: rgba(124, 26, 47, 0.25);
            border: 1px solid var(--color-saprissa-wine);
            color: #ff9ebb;
        }

        .currency {
            font-family: monospace;
            font-weight: 800;
            color: #fff;
            font-size: 0.95rem;
        }

        .payout-info {
            display: flex;
            flex-direction: column;
            font-size: 0.82rem;
        }

        .payout-total {
            font-weight: 800;
            color: var(--color-success-green);
        }

        .payout-breakdown {
            font-size: 0.7rem;
            color: var(--color-text-secondary);
            max-width: 250px;
            line-height: 1.3;
            margin-top: 2px;
        }

        /* Accept Action Button in Green */
        .btn-accept-action {
            background: linear-gradient(135deg, var(--color-success-green) 0%, #059669 100%);
            color: #ffffff;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
            text-transform: uppercase;
        }

        .btn-accept-action:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
            background: linear-gradient(135deg, #34d399 0%, var(--color-success-green) 100%);
        }

        /* Sidebar info panels */
        .info-sidebar-title {
            font-size: 1rem;
            font-weight: 800;
            color: var(--color-fire-orange);
            text-transform: uppercase;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
        }

        .how-to-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            font-size: 0.88rem;
            color: var(--color-text-primary);
            line-height: 1.5;
        }

        .how-to-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .how-to-number {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: rgba(255, 94, 0, 0.15);
            border: 1.5px solid var(--color-fire-orange);
            color: var(--color-fire-orange);
            font-size: 0.8rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .fee-disclaimer {
            margin-top: 18px;
            background-color: rgba(255, 94, 0, 0.05);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 8px;
            padding: 12px;
            font-size: 0.78rem;
            color: #ffaa66;
            display: flex;
            gap: 10px;
            align-items: flex-start;
            line-height: 1.4;
        }

        .fee-disclaimer i {
            margin-top: 2px;
            color: var(--color-fire-orange);
        }

        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.88);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background-color: #ffffff;
            color: #1f2937;
            width: 100%;
            max-width: 540px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            padding: 32px;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: #9ca3af;
            cursor: pointer;
            transition: color 0.2s;
        }

        .modal-close-btn:hover {
            color: #111827;
        }

        /* Preset grid */
        .preset-grid-multicurrency {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 10px;
        }

        .preset-multicurrency-card {
            background-color: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }

        .preset-multicurrency-card:hover {
            border-color: var(--color-fire-orange);
            background-color: #fffbf9;
        }

        .preset-multicurrency-card.selected {
            border-color: var(--color-fire-orange);
            background-color: #fff5f0;
            box-shadow: 0 0 0 2px rgba(255, 94, 0, 0.15);
        }

        .preset-main-val {
            font-size: 1.15rem;
            font-weight: 800;
            color: #0f172a;
        }

        .preset-sub-usdc {
            font-size: 0.78rem;
            color: var(--color-fire-orange);
            font-weight: 800;
        }

        /* Payment Selector */
        .payment-method-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 15px 0;
        }

        .payment-method-btn {
            border: 2px solid #e2e8f0;
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 14px 10px;
            font-size: 0.88rem;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
            color: #475569;
        }

        .payment-method-btn.selected {
            border-color: var(--color-fire-orange);
            background-color: #fff5f0;
            color: var(--color-fire-orange);
        }

        .payment-method-btn.selected-wa {
            border-color: var(--color-whatsapp-green);
            background-color: #f0fdf4;
            color: var(--color-whatsapp-green);
        }

        .qr-placeholder-box {
            width: 180px;
            height: 180px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.5);
        }

        .success-checkmark-wrapper {
            margin: 0 auto 15px auto;
            width: 70px;
            height: 70px;
            background-color: #ebfaf0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .success-checkmark-wrapper i {
            font-size: 2.2rem;
            color: var(--color-success-green);
        }

        .confirm-title {
            font-size: 1.5rem;
            font-weight: 900;
            color: #111827;
            margin-bottom: 6px;
            font-family: var(--font-heading);
        }

        .confirm-subtitle {
            font-size: 0.88rem;
            color: #6b7280;
            margin-bottom: 25px;
        }

        .step-container {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            text-align: left;
            margin-bottom: 20px;
        }

        .step-number {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1.5px solid var(--color-fire-orange);
            color: var(--color-fire-orange);
            font-size: 0.82rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .match-details-card {
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 15px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .match-details-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .soccer-icon-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: #e0f2fe;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0284c7;
            font-size: 1.1rem;
        }

        .match-card-meta {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .match-card-league {
            font-size: 0.98rem;
            font-weight: 800;
            color: #0f172a;
        }

        .match-card-teams {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 600;
        }

        .choice-result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 10px 14px;
            margin-top: 5px;
        }

        .choice-label-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .choice-title {
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 700;
            text-transform: uppercase;
        }

        .choice-value {
            font-size: 0.95rem;
            font-weight: 800;
            color: #0f172a;
        }

        .multiplier-badge {
            background-color: #eef2ff;
            color: #4f46e5;
            font-size: 0.88rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 6px;
        }

        .calculation-card {
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 0;
            width: 100%;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #475569;
        }

        .calc-row-value {
            font-weight: 800;
            color: #0f172a;
            font-family: monospace;
        }

        .total-payment-card {
            background-color: #fff8f5;
            border: 1.5px solid rgba(255, 94, 0, 0.3);
            border-radius: 12px;
            padding: 16px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .total-pay-label {
            font-size: 0.95rem;
            font-weight: 900;
            color: var(--color-fire-orange);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .total-pay-value {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-fire-orange);
            font-family: monospace;
        }

        .btn-confirm-accept {
            background: linear-gradient(135deg, var(--color-fire-orange) 0%, #ff4000 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            padding: 16px;
            font-size: 0.95rem;
            font-weight: 800;
            width: 100%;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 14px rgba(255, 94, 0, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .btn-confirm-accept:hover {
            background: linear-gradient(135deg, #ff721a 0%, var(--color-fire-orange) 100%);
            box-shadow: 0 6px 18px rgba(255, 94, 0, 0.5);
        }

        .btn-confirm-whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            padding: 16px;
            font-size: 0.95rem;
            font-weight: 800;
            width: 100%;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .secure-footnote {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.78rem;
            color: #9ca3af;
            margin-top: 15px;
            font-weight: 600;
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #1e293b;
            border-left: 5px solid var(--color-success-green);
            color: #fff;
            padding: 16px 24px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            gap: 14px;
            z-index: 1000;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .toast.active {
            transform: translateY(0);
            opacity: 1;
        }

        .toast i {
            color: var(--color-success-green);
            font-size: 1.4rem;
        }

        /* Bet input selection screen */
        .select-bet-step {
            display: flex;
            flex-direction: column;
            gap: 20px;
            text-align: left;
        }

        .modal-title-left {
            font-size: 1.35rem;
            font-weight: 900;
            color: #111827;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 12px;
            margin-bottom: 15px;
            font-family: var(--font-heading);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            color: #6b7280;
        }

        .team-selection-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .team-option-btn {
            background-color: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 14px;
            text-align: center;
            cursor: pointer;
            font-weight: 800;
            font-size: 0.9rem;
            transition: all 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .team-option-btn:hover {
            border-color: var(--color-fire-orange);
            background-color: #fffbf9;
        }

        .team-option-btn.selected {
            border-color: var(--color-fire-orange);
            background-color: #fff5f0;
            color: var(--color-fire-orange);
            box-shadow: 0 0 0 2px rgba(255, 94, 0, 0.15);
        }

        .btn-form-next {
            background: linear-gradient(135deg, var(--color-fire-orange) 0%, #ff4000 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: 16px;
            font-size: 0.95rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
        }

        .btn-form-next:hover {
            box-shadow: 0 6px 16px rgba(255, 94, 0, 0.5);
        }

        .stats-bar {
            background-color: rgba(255, 215, 0, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.2);
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: #ffd700;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Improved Footer into Columns */
        footer {
            background-color: #0b0e14;
            border-top: 1px solid var(--color-card-border);
            padding: 40px 20px 25px 20px;
            color: var(--color-text-secondary);
            margin-top: auto;
        }

        .footer-container {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 2fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1rem;
            margin-bottom: 14px;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .footer-col p {
            font-size: 0.82rem;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--color-card-bg);
            border: 1px solid var(--color-card-border);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .social-icon:hover {
            background-color: var(--color-fire-orange);
            border-color: var(--color-fire-orange);
            transform: translateY(-2px);
        }

        .footer-ofac-notice {
            background: rgba(255, 94, 0, 0.06);
            border: 1px solid rgba(255, 94, 0, 0.3);
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 0.8rem;
            color: #ffcc99;
            line-height: 1.5;
        }

        .footer-bottom {
            max-width: 1240px;
            margin: 0 auto;
            border-top: 1px solid var(--color-card-border);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.78rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 960px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 600px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            .logo-section {
                justify-content: space-between;
            }
            nav {
                justify-content: center;
                flex-wrap: wrap;
            }
            .matchup-container {
                gap: 20px;
            }
            .team-logo-wrapper {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            .team-name {
                font-size: 0.95rem;
            }
            .vs-divider {
                font-size: 1.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }