/* ===== КЛУБ ВЛАДЕЛЬЦЕВ – НОВЫЙ ДИЗАЙН ===== */
.club {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,107,0,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,107,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Заголовок блока */
.club-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.club-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
}

.club-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.club-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Рейтинги платформ */
.rating-platforms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--cream);
    border-radius: 60px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.platform-rating:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 10px 25px rgba(255,107,0,0.1);
}

.platform-icon {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--black);
    margin-left: 0.5rem;
}

.reviews-count {
    font-size: 0.9rem;
    color: var(--gray-light);
    white-space: nowrap;
}

/* Сетка отзывов */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.review-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.review-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(255,107,0,0.08);
}

/* Уголки (архитектурный стиль) */
.review-card .corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-style: solid;
    border-color: var(--orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .corner {
    opacity: 0.5;
}

.corner-tl {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
}
.corner-tr {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
}
.corner-bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
}
.corner-br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.source-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.source-name {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
}

.star-filled {
    color: #ffc107;
    font-size: 1.2rem;
}

.star-empty {
    color: #e0e0e0;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.review-link {
    margin-top: 1rem;
    text-align: right;
}

.review-link a {
    font-size: 0.85rem;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s ease;
}

.review-link a:hover {
    gap: 0.6rem;
    text-decoration: underline;
}

/* Сертификаты */
.certificates {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, var(--cream) 0%, #ffffff 100%);
    border: 1px solid rgba(255,107,0,0.2);
    position: relative;
}

.certificates-header {
    text-align: center;
    margin-bottom: 2rem;
}

.certificates-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.certificates-header h3::before,
.certificates-header h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--orange);
    opacity: 0.3;
}

.certificates-header h3::before {
    left: -30px;
}
.certificates-header h3::after {
    right: -30px;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    align-items: flex-end;
}

.certificate-item {
    text-align: center;
    width: 130px;
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-image {
    width: 100%;
    height: auto;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 0.75rem;
}

.certificate-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.certificate-caption {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rating-platforms {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    .platform-rating {
        width: 100%;
        max-width: 400px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .certificates-grid {
        gap: 1.5rem;
    }
    .certificate-item {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .certificate-item {
        width: 80px;
    }
    .certificates-header h3 {
        font-size: 1.4rem;
    }
}