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

html {
    scroll-behavior: smooth;
}

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

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    padding: 60px 16px 100px;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(243, 246, 251, 0.6) 0%, rgba(243, 246, 251, 1) 60%, rgba(243, 246, 251, 1) 100%), url(https://static.tildacdn.com/tild3465-6331-4664-b335-636436623431/img_header_services-.jpg);
    background-position: top;
    background-color: #f3f6fb;
}

.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: #000000;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: #9e9e9e;
    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;
    transition: all 0.3s ease;
    background: rgb(255 255 255 / 100%);
    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: #1855ea;
}

.stat-label {
    font-size: clamp(0.65rem, 1.2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9e9e9e;
    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: #000000;
}

.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: #1855ea;
    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: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input {
    padding: 14px 16px;
    background-color: #F5F5F5;
    border: 2px solid #E0E0E0;
    color: #000000;
    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: #1855ea;
    background-color: #FAFAFA;
}

.date-input:focus {
    outline: none;
    border-color: #1855ea;
    box-shadow: 0 0 0 3px rgba(24, 85, 234, 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: #000000;
    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: #1855ea;
}

.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(243, 246, 251, 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(243, 246, 251, 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: #9e9e9e;
    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: #1855ea;
    background-color: #e8f0ff;
}

.filter-button.active {
    background: #1855ea;
    color: #FFFFFF;
    border-color: #1855ea;
    box-shadow: 0 4px 12px rgba(24, 85, 234, 0.3);
}

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

.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: #E8F0FF;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1855ea;
    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: #9e9e9e;
    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: #000000;
    line-height: 1.3;
    width: 50%;
    text-align: center;
}

.vs {
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
    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;
    max-width: 230px;
}

.detail-label {
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9e9e9e;
    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: #000000;
}

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

.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: #1855ea !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: #1855ea;
    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: #e8f0ff;
    border-color: #1855ea;
}

.analysis-button.open {
    background: #1855ea;
    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: #000000;
    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;
    color: #000000;
}

@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, #1855ea 0%, #0d3ba8 100%);
    color: #FFFFFF;
    border: 2px solid #1855ea;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(24, 85, 234, 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(24, 85, 234, 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: #000000;
}

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

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

.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: #1855ea;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

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

.express-odds-label {
    font-size: 0.7rem;
    color: #9e9e9e;
    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: #E8F0FF;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1855ea;
    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: #9e9e9e;
    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: #000000;
    line-height: 1.3;
    width: 50%;
}

.express-vs {
    font-size: 0.85rem;
    color: #9e9e9e;
    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: #9e9e9e;
    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: #000000;
}

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

.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: rgba(24, 85, 234, 0.1);
    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: #1855ea;
}

.total-item-label {
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9e9e9e;
    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, #1855ea 0%, #0d3ba8 100%);
    color: #FFFFFF;
    border: 2px solid #1855ea;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(24, 85, 234, 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(24, 85, 234, 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: #9e9e9e;
    font-size: 1.1rem;
}

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

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

.footer-text {
    color: #9e9e9e;
    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, #1855ea 0%, #0d3ba8 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(24, 85, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.buy-access-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(24, 85, 234, 0.4);
    background: linear-gradient(135deg, #0d3ba8 0%, #061d5c 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;
    }
}
