/* -- HOMEPAGE -- */

/* #region HERO */
.hero-video {
    position: relative;
    min-height: clamp(460px, 72vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(204, 102, 0, 0.22);
}

.hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    filter: saturate(0.85) contrast(1.1);
}

.hero-video__content {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.hero-video__text {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
}

.hero-video__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

@media (max-width: 760px) {
    .hero-video {
        min-height: 560px;
    }

    .hero-video__content {
        padding: 56px 0;
    }
}

/* #endregion */

/* #region LEADERBOARDS */

.scores-section {
    padding: 56px 0 72px;
        min-width: 0;
}

.scores-grid {
    display: grid;
    gap: 32px;
    min-width: 0;
}

.scores-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-lg);
    background: var(--color-card);
    box-shadow: var(--shadow-glow);
}


.scores-card__header {
    margin-bottom: 20px;
}

.scores-card__header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.scores-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.scores-stat {
    padding: 20px;
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    background: rgba(204, 102, 0, 0.08);
}

.scores-stat span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 700;
} 

.scores-stat strong {
    display: block;
    color: var(--color-primary-light);
    font-size: 2rem;
    line-height: 1;
}

.scores-table-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.scores-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.scores-table th,
.scores-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.scores-table thead th {
    color: var(--color-primary-light);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(204, 102, 0, 0.08);
}

.scores-table tbody tr:last-child td {
    border-bottom: none;
}

.scores-table tbody tr:hover {
    background: rgba(204, 102, 0, 0.06);
}

.scores-table td:first-child {
    width: 60px;
    font-weight: 700;
}

.scores-table .score-value {
    color: var(--color-primary-light);
    font-weight: 700;
}

.scores-table-empty {
    color: var(--color-muted);
    text-align: center;
}

@media (max-width: 768px) {
    .scores-section {
        padding-top: 40px;
    }

    .scores-card {
        padding: 20px;
    }

    .scores-stats {
        grid-template-columns: 1fr;
    }

    .scores-table {
        font-size: 0.9rem;
    }

    .scores-table th,
    .scores-table td {
        padding: 10px 8px;
    }
}

/* #endregion */