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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            background-color: #000000;
            min-height: 100vh;
            color: #333333;
        }

        /* ==================== HERO SECTION ==================== */
        .hero-section {
            position: relative;
            padding: 60px 16px 100px;
            overflow: hidden;
            background-image: 
                linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%),
                url('https://static.tildacdn.com/tild3465-6331-4664-b335-636436623431/img_header_services-.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-color: #000000;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .hero-title {
            font-size: clamp(1.75rem, 6vw, 3.5rem);
            font-weight: 800;
            line-height: 1.3;
            text-align: center;
            letter-spacing: -1px;
            color: #FFFFFF;
        }

        .hero-subtitle {
            font-size: clamp(0.85rem, 2vw, 1rem);
            color: #CCCCCC;
            text-align: center;
            max-width: 500px;
        }

        /* ==================== CONTAINER ==================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ==================== STATS SECTION ==================== */
        .stats-section {
            position: relative;
            z-index: 10;
            margin-top: 60px;
            padding: 0 0px;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        .stats-grid .stat-card {
            flex: 1 1 calc(33.333% - 11px);
            min-width: 160px;
        }

        @media (max-width: 1024px) {
            .stats-grid .stat-card {
                flex: 1 1 calc(33.333% - 11px);
                min-width: 100px;
            }
        }

        @media (max-width: 768px) {
            .stats-grid .stat-card {
                flex: 1 1 calc(33.333% - 11px);
                min-width: 80px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid .stat-card {
                flex: 1 1 calc(33.333% - 11px);
                min-width: 80px;
            }
        }

        .stat-card {
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: rgb(255 255 255 / 10%);
            border-radius: 12px;
            border: 1px solid rgb(255 255 255 / 10%);
            padding: 10px 20px;
        }

        @media (max-width: 480px) {
            .stat-card {
                padding: 16px 12px;
            }
        }

        .stat-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .stat-value {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 800;
            color: #03aba3;
        }

        .stat-label {
            font-size: clamp(0.65rem, 1.2vw, 0.85rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #666666;
            font-weight: 600;
        }

        /* ==================== ICON STYLES ==================== */
        .icon-svg {
            width: 20px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
        }

        .icon-svg-small {
            width: 12px;
            height: 12px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
        }

        .icon-svg-large {
            width: 24px;
            height: 24px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
        }

        .icon-svg-xlarge {
            width: 32px;
            height: 32px;
            display: inline-block;
            vertical-align: middle;
            object-fit: contain;
        }

        .icon-svg.spinner {
            animation: spin 2s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* ==================== FILTER HEADER ==================== */
        .filter-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 10px;
            padding: 0 16px;
            flex-wrap: wrap;
            color: #FFFFFF;
        }

        .filter-section-title {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .results-badge {
            padding: 8px 16px;
            background: #03aba3;
            color: #FFFFFF;
            font-size: clamp(0.7rem, 1.5vw, 0.85rem);
            font-weight: 700;
            border-radius: 20px;
            white-space: nowrap;
        }

        /* ==================== DATE SELECTOR ==================== */
        .date-selector {
            margin-bottom: 48px;
        }

        .date-selector-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 20px;
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .date-label {
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #333333;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .date-input {
            padding: 14px 16px;
            background-color: #F5F5F5;
            border: 2px solid #E0E0E0;
            color: #333333;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .date-input:hover {
            border-color: #03aba3;
            background-color: #FAFAFA;
        }

        .date-input:focus {
            outline: none;
            border-color: #03aba3;
            box-shadow: 0 0 0 3px rgba(3, 171, 163, 0.1);
        }

        /* ==================== TOGGLE SWITCH ==================== */
        .toggle-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-top: 2px solid #F0F0F0;
        }

        .toggle-label {
            font-size: clamp(0.85rem, 2vw, 0.95rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #333333;
            flex: 1;
        }

        .toggle-switch {
            position: relative;
            display: inline-flex;
            width: 56px;
            height: 32px;
            background-color: #E0E0E0;
            border-radius: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border: none;
            padding: 2px;
            align-items: center;
        }

        .toggle-switch.active {
            background-color: #03aba3;
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            width: 28px;
            height: 28px;
            background-color: #FFFFFF;
            border-radius: 50%;
            left: 2px;
            transition: left 0.3s ease;
        }

        .toggle-switch.active::after {
            left: 26px;
        }

        /* ==================== FILTER SECTION ==================== */
        .filter-section {
            position: relative;
            max-width: 1200px;
            margin: 0 auto 30px auto;
        }

        .filter-container {
            display: flex;
            gap: 10px;
            padding: 0;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            position: relative;
            overflow-y: hidden;
            padding: 8px 16px;
            margin-left: 0;
            margin-right: 0;
        }

        .filter-gradient-left {
            position: absolute;
            left: 0;
            top: 42px;
            bottom: 0;
            width: 16px;
            height: 50px;
            background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
            pointer-events: none;
            z-index: 3;
        }

        .filter-gradient-right {
            position: absolute;
            right: 0;
            top: 42px;
            bottom: 0;
            width: 16px;
            height: 50px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
            pointer-events: none;
            z-index: 3;
        }

        @media (max-width: 768px) {
            .filter-container {
                scroll-snap-type: x mandatory;
            }
        }

        .filter-button {
            padding: 10px 16px;
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            border: 2px solid #E0E0E0;
            cursor: pointer;
            background-color: #F5F5F5;
            color: #666666;
            border-radius: 8px;
            white-space: nowrap;
            flex-shrink: 0;
            font-family: 'Open Sans', Arial, sans-serif;
            position: relative;
            z-index: 1;
        }

        .filter-button:hover {
            transform: translateY(-2px);
            border-color: #03aba3;
            background-color: #f0fffe;
        }

        .filter-button.active {
            background: #effa07;
            color: #333333;
            border-color: #effa07;
            box-shadow: 0 4px 12px rgba(239, 250, 7, 0.3);
        }

        /* ==================== PREDICTIONS GRID ==================== */
        .predictions-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .predictions-grid .prediction-card {
            flex: 1 1 calc(33.333% - 14px);
            min-width: 320px;
        }

        @media (max-width: 1024px) {
            .predictions-grid .prediction-card {
                flex: 1 1 calc(50% - 10px);
            }
        }

        @media (max-width: 768px) {
            .predictions-grid .prediction-card {
                flex: 1 1 100%;
            }
        }

        .prediction-card {
            padding: 24px;
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: stretch;
        }

        @media (min-width: 1024px) {
            .prediction-card {
                align-items: flex-start;
            }
        }

        .prediction-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            width: 100%;
        }

        .competition-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: #E3F2FD;
            font-size: clamp(0.65rem, 1.5vw, 0.8rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #03aba3;
            border-radius: 6px;
            max-width: 160px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .prediction-date {
            font-size: clamp(0.7rem, 1.5vw, 0.85rem);
            color: #999999;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .prediction-date span {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .match-info {
            display: flex;
            flex-direction: row;
            gap: 8px;
            text-align: center;
            padding: 12px 0;
            border-top: 1px solid #F0F0F0;
            border-bottom: 1px solid #F0F0F0;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            height: 100%;
        }

        .team {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 800;
            color: #333333;
            line-height: 1.3;
            width: 50%;
            text-align: center;
        }

        .vs {
            text-align: center;
            font-size: 0.85rem;
            color: #999999;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .prediction-details {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
        }

        .detail-item {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: left;
        }

        .detail-label {
            font-size: clamp(0.65rem, 1.5vw, 0.8rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #999999;
            font-weight: 600;
            display: flex;
            flex-direction: row;
            gap: 6px;
            text-align: left;
            align-items: center;
        }

        .detail-value {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: 800;
            color: #333333;
        }

        .detail-value-bet {
            font-size: 16px;
            font-weight: 600;
            color: #333333;
        }

        .detail-value-odds {
            font-size: 16px;
            font-weight: 600;
        }

        .detail-item-bet {
            flex: 0 0 auto;
        }

        .detail-item-odds {
            flex: 0 0 80px;
            max-width: 80px;
        }

        .odds-value {
            color: #03aba3 !important;
        }

        @media (max-width: 1024px) {
            .prediction-details {
                flex-wrap: wrap;
                gap: 16px;
            }

            .detail-item {
                flex: 1 1 calc(50% - 8px);
            }
        }

        /* ==================== ANALYSIS SECTION ==================== */
        .analysis-section {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #F0F0F0;
        }

        .analysis-button {
            width: 100%;
            padding: 10px 12px;
            background: #F5F5F5;
            color: #03aba3;
            border: 1px solid #E0E0E0;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Open Sans', Arial, sans-serif;
            align-self: stretch;
        }

        .analysis-button:hover {
            background: #f0fffe;
            border-color: #03aba3;
        }

        .analysis-button.open {
            background: #03aba3;
            color: #FFFFFF;
        }

        @media (min-width: 1024px) {
            .analysis-button {
                align-self: flex-start;
            }
        }

        .analysis-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #666666;
            margin-top: 12px;
            width: 100%;
        }

        .analysis-content.open {
            max-height: 1500px;
            margin-top: 12px;
        }

        .analysis-text {
            padding: 12px;
            background: #f7f7f7;
            border-radius: 6px;
            width: 100%;
            text-align: left;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        @media (min-width: 1024px) {
            .analysis-text {
                font-size: 0.9rem;
                line-height: 1.7;
            }
        }

        /* ==================== BET BUTTON ==================== */
        .bet-button {
            width: 100%;
            padding: clamp(16px, 4vw, 20px) 24px;
            font-weight: 800;
            font-size: clamp(0.95rem, 2.5vw, 1.25rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(135deg, #effa07 0%, #e8f500 100%);
            color: #333333;
            border: 2px solid #effa07;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(239, 250, 7, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            margin-bottom: 48px;
            position: relative;
            overflow: hidden;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .bet-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(239, 250, 7, 0.4);
        }

        .bet-button:active {
            transform: translateY(-1px);
        }

        /* ==================== EXPRESS SECTION ==================== */
        .express-section {
            margin-bottom: 64px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1rem, 2vw, 1.2rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #FFFFFF;
        }

        .section-subtitle {
            font-size: clamp(0.8rem, 1.5vw, 0.95rem);
            color: #CCCCCC;
            margin-bottom: 20px;
        }

        .express-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .express-grid .express-card {
            flex: 1 1 calc(33.333% - 14px);
            min-width: 320px;
        }

        @media (max-width: 1024px) {
            .express-grid .express-card {
                flex: 1 1 calc(50% - 10px);
            }
        }

        @media (max-width: 768px) {
            .express-grid .express-card {
                flex: 1 1 100%;
            }
        }

        .express-card {
            padding: 24px;
            background: #FFFFFF;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s ease;
            align-items: stretch;
        }

        @media (min-width: 1024px) {
            .express-card {
                align-items: flex-start;
            }
        }

        .express-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            width: 100%;
        }

        .express-number {
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            font-weight: 800;
            color: #03aba3;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .express-match {
            font-size: clamp(0.85rem, 2vw, 1rem);
            color: #333333;
            font-weight: 700;
            line-height: 1.4;
            margin-top: 6px;
        }

        .express-bet {
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            color: #666666;
            font-weight: 600;
            margin-top: 4px;
        }

        .express-odds {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 800;
            color: #333333;
            text-align: center;
            line-height: 1.2;
        }

        .express-odds-label {
            font-size: 0.7rem;
            color: #999999;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            margin-top: 4px;
        }

        .express-competition-badge {
            display: flex-end;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: #E3F2FD;
            font-size: clamp(0.65rem, 1.5vw, 0.8rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #03aba3;
            border-radius: 6px;
            max-width: 160px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .express-date {
            font-size: clamp(0.7rem, 1.5vw, 0.85rem);
            color: #999999;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .express-date span {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .express-match-info {
            display: flex;
            flex-direction: row;
            gap: 8px;
            text-align: center;
            padding: 12px 0;
            border-top: 1px solid #F0F0F0;
            border-bottom: 1px solid #F0F0F0;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            height: 100%;
        }

        .express-team {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            font-weight: 800;
            color: #333333;
            line-height: 1.3;
            width: 50%;
        }

        .express-vs {
            font-size: 0.85rem;
            color: #999999;
            font-weight: 700;
            letter-spacing: 0.1em;
        }

        .express-details {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
        }

        .express-detail-item_box {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: left;
        }

        .express-detail-item {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: left;
            max-width: 80px;
        }

        .express-detail-label {
            font-size: clamp(0.65rem, 1.5vw, 0.8rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #999999;
            font-weight: 600;
            display: flex;
            flex-direction: row;
            gap: 6px;
            text-align: left;
            align-items: center;
        }

        .express-detail-value {
            font-size: 16px;
            font-weight: 600;
            color: #333333;
        }

        .express-detail-value_kef {
            font-size: 16px;
            font-weight: 600;
            color: #03aba3;
        }

        .express-total {
            padding: 24px 0;
            background: transparent;
            border-radius: 0;
            border: none;
        }

        .express-total-grid {
            display: flex;
            flex-wrap: nowrap;
            gap: 20px;
            margin-bottom: 24px;
            justify-content: flex-start;
        }

        .express-total-grid .total-item {
            flex: 1 1 auto;
            min-width: 120px;
        }

        @media (max-width: 768px) {
            .express-total-grid .total-item {
                flex: 1 1 auto;
            }

            .express-total-grid {
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .express-total-grid {
                flex-wrap: wrap;
                gap: 12px;
            }

            .express-total-grid .total-item {
                flex: 1 1 calc(33.333% - 8px);
            }
        }

        .total-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: center;
            background: rgb(255 255 255 / 10%);
            border-radius: 12px;
            padding: 10px 20px;
            border: 1px solid rgb(255 255 255 / 10%);
        }

        .total-item h4 {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            font-weight: 800;
            color: #03aba3;
        }

        .total-item-label {
            font-size: clamp(0.7rem, 1.5vw, 0.8rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #666666;
            font-weight: 600;
        }

        .add-button {
            width: 100%;
            padding: 14px 24px;
            font-weight: 800;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(135deg, #effa07 0%, #e8f500 100%);
            color: #333333;
            border: 2px solid #effa07;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(239, 250, 7, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .add-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(239, 250, 7, 0.4);
        }

        .add-button:active {
            transform: translateY(-1px);
        }

        h3.filter-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* ==================== LOADING & EMPTY STATES ==================== */
        .loading {
            text-align: center;
            padding: 40px 20px;
            color: #CCCCCC;
            font-size: 1.1rem;
        }

        .empty-state {
            display: flex;
            width: 100%;
            text-align: center;
            padding: 60px 20px;
            background: #FFFFFF;
            border-radius: 12px;
            color: #999999;
            font-size: 1rem;
            justify-content: center;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            border-top: 1px solid #333333;
            background-color: #1a1a1a;
            padding: 32px 16px;
            text-align: center;
            margin-top: 64px;
        }

        .footer-text {
            color: #999999;
            font-size: 0.9rem;
        }

        /* ==================== ICON STYLING ==================== */
        .fa {
            margin-right: 6px;
        }

        /* ==================== EXPRESS ACCESS CONTROL ==================== */
        .express-grid.blurred {
            filter: blur(5px);
            pointer-events: none;
        }

        .express-overlay {
            position: relative;
            min-height: 100px;
        }

        .express-overlay.locked {
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .express-overlay.locked .express-grid {
            width: 100%;
        }

        .express-overlay.locked::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 0;
            z-index: 100;
            pointer-events: none;
        }

        .access-button-wrapper {
            display: flex;
            justify-content: center;
            position: absolute;
            align-items: center;
            width: 100%;
            height: 100%;
            z-index: 101;
        }

        .buy-access-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #03aba3 0%, #00897b 100%);
            color: #FFFFFF !important;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(3, 171, 163, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .buy-access-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(3, 171, 163, 0.4);
            background: linear-gradient(135deg, #00897b 0%, #006064 100%);
        }

        .buy-access-button i {
            margin-right: 4px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 480px) {
            .hero-section {
                padding: 40px 16px 60px;
            }

            .stats-section {
                margin-top: 40px;
            }

            .filter-container {
                scroll-snap-align: start;
            }

            .prediction-card,
            .express-card {
                padding: 16px;
            }

            .buy-access-button {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }
