.club-page {
    min-height: calc(100vh - 120px);
    padding: 34px 0 60px;
}

.club-shell {
    width: min(1680px, calc(100% - 48px));
    margin: 0 auto;
}

.club-hero {
    text-align: center;
    padding: 18px 0 26px;
}

.club-title {
    margin: 0 0 12px;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -.02em;
}

.club-subtitle {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

.club-progress-area {
    max-width: 540px;
    margin: 0 auto 18px;
}

.club-progress {
    width: 100%;
    height: 16px;
    background: #dce4ef;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, .08);
}

.club-progress > span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e 0%, #10b981 100%);
    box-shadow: 0 0 22px rgba(34, 197, 94, .35);
}

.club-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.club-stat {
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.club-stat-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.club-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.club-card {
    position: relative;
    width: 100%;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #1c2e4a 0%, #13233c 100%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .14);
    transition: transform .25s ease, box-shadow .25s ease;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, .20);
}

.club-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, .16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.club-card-media {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.club-card-media iframe,
.club-card-media video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

.club-card-body {
    position: relative;
    z-index: 1;
    padding: 18px 18px 16px;
}

.club-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.club-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.club-card-badge.free {
    background: rgba(34, 197, 94, .16);
    color: #86efac;
}

.club-card-badge.club {
    background: rgba(59, 130, 246, .16);
    color: #93c5fd;
}

.club-card-index {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, .55);
}

.club-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: #38bdf8;
}

.club-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(226, 232, 240, .94);
    min-height: 66px;
}

.club-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
}

.club-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.club-card-btn.primary {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 10px 22px rgba(22, 163, 74, .20);
}

.club-card-btn.primary:hover {
    color: #fff;
    transform: translateY(-1px);
}

.club-card-btn.secondary {
    background: rgba(255, 255, 255, .08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, .08);
}

.club-card-btn.secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.club-card-empty-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.club-empty {
    padding: 34px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .18);
    text-align: center;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.club-empty h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
}

.club-empty p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.club-faq {
    max-width: 760px;
    margin: 48px auto 0;
}

.club-faq h2 {
    margin: 0 0 22px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
}

.club-faq-list {
    display: grid;
    gap: 16px;
}

.club-faq-item {
    padding: 20px 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.club-faq-item h4 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
}

.club-faq-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
}

.club-pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.club-pagination-wrap .pagination {
    gap: 8px;
}

.club-pagination-wrap .page-item .page-link {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .2);
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.club-pagination-wrap .page-item.active .page-link {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
    box-shadow: 0 12px 22px rgba(34, 197, 94, .2);
}

.club-pagination-wrap .page-item.disabled .page-link {
    opacity: .5;
    pointer-events: none;
}

@media (max-width: 991px) {
    .club-shell {
        width: min(100%, calc(100% - 24px));
    }

    .club-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-title {
        font-size: 34px;
    }

    .club-faq h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .club-page {
        padding-top: 22px;
    }

    .club-grid {
        grid-template-columns: 1fr;
    }

    .club-faq h2 {
        font-size: 26px;
    }

    .club-card-body {
        padding: 16px;
    }

    .club-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .club-card-btn {
        width: 100%;
    }
}

.club-show-page {
    min-height: calc(100vh - 120px);
    padding: 34px 0 60px;
}

.club-show-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.club-show-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.club-show-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, .18);
    color: #0f172a;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
    transition: .25s ease;
}

.club-show-back:hover {
    color: #0f172a;
    text-decoration: none;
    transform: translateY(-2px);
}

.club-show-counter {
    font-size: 14px;
    color: #64748b;
    font-weight: 700;
}

.club-show-card {
    background: linear-gradient(180deg, #1b2b46 0%, #1b2c49 100%);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, .14);
    overflow: hidden;
}

.club-show-title {
    margin: 0 0 22px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.18;
    font-weight: 800;
    color: #ffffff;
}

.club-player-wrap {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.club-player-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.club-player-ratio iframe,
.club-player-ratio video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.club-player-fallback {
    padding: 20px;
    margin-top: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.7;
}

.club-player-fallback a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: none;
}

.club-player-fallback a:hover {
    text-decoration: underline;
}

.club-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    margin-bottom: 28px;
}

.club-btn {
    border: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;
}

.club-btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.club-btn-copy,
.club-btn-telegram {
    background: #38bdf8;
    color: #0c2030;
}

.club-btn-copy:hover,
.club-btn-telegram:hover {
    color: #0c2030;
}

.club-btn-whatsapp,
.club-btn-watched {
    background: #22c55e;
    color: #ffffff;
}

.club-btn-whatsapp:hover,
.club-btn-watched:hover {
    color: #ffffff;
}

.club-btn-watched.is-watched {
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .15);
}

.club-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #e2e8f0;
}

.club-extra-link {
    margin-top: 18px;
}

.club-extra-link a {
    color: #7dd3fc;
    font-weight: 700;
    text-decoration: none;
}

.club-extra-link a:hover {
    text-decoration: underline;
}

.club-other-section {
    margin-top: 28px;
}

.club-other-title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.club-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.club-other-card {
    display: block;
    padding: 18px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
    text-decoration: none;
    transition: .25s ease;
}

.club-other-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(15, 23, 42, .08);
}

.club-other-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, .10);
    color: #2563eb;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.club-other-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    color: #0f172a;
}

.club-other-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .club-show-card {
        padding: 20px;
        border-radius: 20px;
    }

    .club-show-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .club-action-row {
        gap: 10px;
    }

    .club-btn {
        width: 100%;
    }
}

.club-access-alert {
    margin-top: 12px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(239, 68, 68, .12);
    border: 1px solid rgba(239, 68, 68, .28);
    color: #fee2e2;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
}
