.hero-block {
    position: relative;
}

.hero-copy,
.hero-side {
    overflow: hidden;
    position: relative;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: -80px -120px auto auto;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34,197,94,.24), transparent 67%);
    pointer-events: none;
}

.hero-title {
    letter-spacing: -1.4px;
}

.hero-text {
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-side {
    background:
        linear-gradient(135deg, rgba(34,197,94,.10), rgba(59,130,246,.06)),
        rgba(17,24,39,.92);
}

.mini-stat strong {
    font-size: 18px;
}

.status-card,
.match-row,
.result-row,
.ranking-row,
.summary-card,
.group-preview-card {
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.status-card:hover,
.match-row:hover,
.result-row:hover,
.ranking-row:hover,
.summary-card:hover,
.group-preview-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34,197,94,.24);
    background: rgba(255,255,255,.04);
}

.status-card strong {
    color: #f8fafc;
    font-size: 20px;
}

.match-row,
.result-row {
    border-radius: 18px;
}

.match-meta .pill {
    max-width: 100%;
}

.match-teams {
    padding: 6px 0;
}

.match-teams strong,
.result-teams span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    width: 100%;
}

.result-teams span:last-child {
    text-align: right;
}

.ranking-row {
    border-radius: 16px;
}

.ranking-name strong {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.28);
    color: #bbf7d0;
}

.section-head h2 {
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .match-actions,
    .match-meta {
        align-items: flex-start;
    }

    .match-actions a,
    .match-actions .pill {
        width: 100%;
        text-align: center;
    }

    .result-teams {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .result-teams span,
    .result-teams span:last-child,
    .result-teams strong {
        text-align: left;
    }
}
