/* ===== TEAMS SECTION ===== */
.teams-section {
    margin-bottom: 80px;
}

.teams-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    display: block;
    text-decoration: none;
    background: var(--panel);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.team-card-inner {
    position: relative;
    padding: 24px;
}

.team-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.team-logo-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 16px;
}

.team-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-info {
    width: 100%;
}

.team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}

.team-tag {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.team-card-hover {
    display: none;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--accent);
    border-radius: var(--radius);
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

.stat-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    opacity: 0.03;
    border-radius: 50%;
    display: none;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    .teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .teams-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-card-hover {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent);
        color: white;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .team-card-hover {
        opacity: 1;
    }

    .team-view-text {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 600;
        color: white;
    }
}