.statistics-hero {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.statistics-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.stats-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.stats-hero-text .subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.stats-hero-image {
    position: relative;
}

.stats-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideInRight 1s ease-out;
}

.live-stats-dashboard {
    padding: 80px 0;
    background: #ffffff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff8c00 0%, #ff6b00 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.stat-trend {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.league-comparison {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.comparison-table-wrapper {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

.comparison-table thead th {
    padding: 20px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #fff5e6;
}

.comparison-table tbody td {
    padding: 20px;
    color: #333;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.team-name {
    font-weight: 600;
    color: #1a1a1a;
}

.player-rankings {
    padding: 80px 0;
    background: #ffffff;
}

.rankings-tabs {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.tab-button {
    padding: 16px 32px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: #ff8c00;
}

.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00 0%, #ff6b00 100%);
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.rankings-content {
    display: none;
}

.rankings-content.active {
    display: grid;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.player-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: translateY(-8px);
}

.player-rank {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.player-info {
    padding: 24px;
}

.player-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 16px;
    border-radius: 12px;
}

.player-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.player-team {
    color: #666;
    margin-bottom: 16px;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.player-stat {
    text-align: center;
}

.player-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
}

.player-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}

.interactive-charts {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.chart-container {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.chart-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.chart-filter {
    padding: 8px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    background: #ffffff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chart-filter:hover {
    border-color: #ff8c00;
    color: #ff8c00;
}

.chart-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

.match-predictions {
    padding: 80px 0;
    background: #ffffff;
}

.predictions-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.prediction-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5e6 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr;
    gap: 24px;
    align-items: center;
}

.prediction-team {
    text-align: center;
}

.prediction-team-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 12px;
    object-fit: cover;
}

.prediction-team-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.prediction-vs {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #999;
}

.prediction-result {
    text-align: center;
}

.prediction-percentage {
    font-size: 36px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 8px;
}

.prediction-label {
    color: #666;
    font-size: 14px;
}

.historical-data {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.timeline-container {
    margin-top: 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff8c00 0%, #ff6b00 100%);
    transform: translateX(-50%);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 1;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #ff8c00;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
    z-index: 2;
}

.timeline-content {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 16px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.timeline-description {
    color: #666;
    line-height: 1.8;
}

.timeline-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.premium-stats-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.premium-stats-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.premium-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.premium-cta-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.premium-cta-content p {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.premium-feature {
    text-align: center;
}

.premium-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.premium-feature h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.premium-feature p {
    color: #cccccc;
    font-size: 16px;
}

@media (max-width: 1366px) {
    .stats-hero-content {
        gap: 40px;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .stats-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-hero-text h1 {
        font-size: 42px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .prediction-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .premium-features {
        grid-template-columns: 1fr;
    }

    .rankings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-hero-text h1 {
        font-size: 32px;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .rankings-tabs {
        overflow: hidden;
        flex-direction: column;
    }

    .chart-header {
        flex-direction: column;
    }

    .chart-container {
        padding: 16px;
    }
}