/* ===== CLUBS PAGE ===== */
body{
    background-image:url('../img/clubs.png');
    margin:0;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}
h1 {
    font-family: "Playfair Display", serif;
}

.clubs-page {

    min-height: 100vh;
    padding: 100px 20px;
    /*background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);*/
}

.clubs-page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.clubs-page-heading {
    text-align: center;
    margin-bottom: 40px;
}

.clubs-page-stars {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f2c94c;
    letter-spacing: 6px;
    line-height: 1;
}

.clubs-page-heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #4f2a7f;
    line-height: 1.2;
    margin-bottom: 12px;
}

.clubs-page-heading p {
    font-size: 18px;
    color: #7a6b92;
}

.footer-note p {
    font-size: 18px;
    color: #7a6b92;
}

.footer-note a {
    text-decoration: none;
    color: #4f2a7f;
    font-weight: bold;
}

/* ===== ACCORDION ===== */

.clubs-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clubs-country {
    background: linear-gradient(180deg, #f8f3ff 0%, #f4edff 100%);
    border: 1px solid rgba(176, 145, 220, 0.16);
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(126, 91, 171, 0.08);
    overflow: hidden;
}

.clubs-country-btn {
    width: 100%;
    padding: 22px 24px;
    border: none;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    text-align: left;
}

.clubs-country-left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #4f2a7f;
    font-size: 24px;
    font-weight: 700;
}

.clubs-country-left .fi {
    font-size: 28px;
    border-radius: 3px;
}

.clubs-country-arrow {
    font-size: 28px;
    line-height: 1;
    color: #8d62d9;
    transition: transform 0.3s ease;
}

.clubs-country-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.clubs-country.active .clubs-country-content {
    max-height: 500px;
    padding: 0 24px 24px;
}

.clubs-country.active .clubs-country-arrow {
    transform: rotate(45deg);
}

.clubs-country-content ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.clubs-country-content li {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    color: #5e4c78;
    font-size: 18px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

/* ===== ACTIONS ===== */

.clubs-page-actions {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.clubs-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    background: #6A2CA0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.clubs-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(137, 92, 182, 0.18);
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
    .clubs-page {
        padding: 70px 16px;
    }

    .clubs-page-heading h1 {
        font-size: 32px;
    }

    .clubs-page-heading p {
        font-size: 16px;
    }

    .clubs-country-btn {
        padding: 18px 16px;
    }

    .clubs-country-left {
        font-size: 20px;
        gap: 12px;
    }

    .clubs-country-left .fi {
        font-size: 24px;
    }

    .clubs-country-arrow {
        font-size: 24px;
    }

    .clubs-country-content {
        padding: 0 16px;
    }

    .clubs-country.active .clubs-country-content {
        padding: 0 16px 16px;
    }

    .clubs-country-content li {
        font-size: 16px;
        padding: 12px 14px;
    }
}


/* ===== PRESS RELEASE PAGE ===== */

.press-release-page {
    min-height: 100vh;
    padding: 100px 20px;
    background: transparent;
}

.press-release-container {
    max-width: 1000px;
    margin: 0 auto;
}

.press-release-heading {
    text-align: center;
    margin-bottom: 36px;
}

.press-release-stars {
    margin-bottom: 10px;
    font-size: 18px;
    color: #f2c94c;
    letter-spacing: 6px;
    line-height: 1;
}

.press-release-heading h1 {
    font-size: 52px;
    font-weight: 700;
    color: #4f2a7f;
    line-height: 1.2;
    margin-bottom: 12px;
}

.press-release-date {
    font-size: 18px;
    color: #7a6b92;
}

.press-release-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 12px 28px rgba(126, 91, 171, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.press-release-card h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #4f2a7f;
    margin-bottom: 24px;
}

.press-release-card h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #5a3a8b;
    margin-top: 28px;
    margin-bottom: 14px;
}

.press-release-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #5e4c78;
    margin-bottom: 16px;
}

.press-release-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.press-release-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    background: #6A2CA0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.press-release-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(137, 92, 182, 0.18);
}

@media (max-width: 768px) {
    .press-release-page {
        padding: 70px 16px;
    }

    .press-release-heading h1 {
        font-size: 34px;
    }

    .press-release-date {
        font-size: 16px;
    }

    .press-release-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .press-release-card h2 {
        font-size: 24px;
    }

    .press-release-card h3 {
        font-size: 20px;
    }

    .press-release-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}

.back-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:22px 50px;

    background:#6A2CA0;
    color:white;

    border-radius:60px;

    font-size:18px;
    text-decoration:none;
    font-family: "Segoe UI";
}

.back-btn svg{
    transition:0.3s;
}

.back-btn:hover svg{
    transform:translateX(-4px);
}