.cpl-stadiums-page {
    max-width: 110 30px auto;    max-width: 1100px;
    direction: ltr;
    text-align: left;
}

.cpl-stadium-country-block {
    margin-bottom: 32px;
}

.cpl-stadium-country-title {
    display: inline-block;
    margin: 0 0 16px 0;
    padding: 10px 16px;
    background: #0b1020;
    color: #FFD800;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 800;
}

.cpl-stadiums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px;
}

.cpl-stadium-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.cpl-stadium-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cpl-stadium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border-color: #007bff;
}

.cpl-stadium-city-image {
    width: 84px !important;
    height: 84px !important;
    max-width: 84px !important;
    max-height: 84px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto 10px auto !important;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.20);
}

.cpl-stadium-city {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .cpl-stadiums-page {
        max-width: 95%;
    }

    .cpl-stadiums-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 14px;
    }

    .cpl-stadium-country-title {
        font-size: 18px;
        padding: 8px 12px;
    }

    .cpl-stadium-card {
        padding: 14px 12px;
    }

    .cpl-stadium-city-image {
        width: 72px !important;
        height: 72px !important;
        max-width: 72px !important;
        max-height: 72px !important;
    }

    .cpl-stadium-city {
        font-size: 14px;
    }
}
.cpl-back-link {
    margin-bottom: 15px;
}

.cpl-back-link a {
    display: inline-block;
    color: #ffd800;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.cpl-back-link a:hover {
    text-decoration: underline;
}