/* Иконки — общий размер/цвет */
.icon {
    flex-shrink: 0;
}
.icon use {
    color: inherit;
}

/* Tournament — минимализм */
.tournament-section {
    margin-bottom: 22px;
}

.tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

.filter-btn:active {
    background: var(--bg-elevated);
}

.filter-btn .icon {
    width: 14px;
    height: 14px;
    color: var(--accent-red);
}

.chevron {
    font-size: 10px;
    color: var(--text-secondary);
}

.tournament-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tournament-info {
    min-width: 0;
    flex: 1;
    order: 1;
}

.tournament-title {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.tournament-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--text-secondary);
}

.badge .icon {
    width: 13px;
    height: 13px;
    color: var(--text-secondary);
}

.badge.date .icon {
    color: var(--text-secondary);
}

.badge.sold-out {
    background: rgba(229, 57, 53, 0.15);
    color: rgba(255,255,255,0.9);
}

.badge.sold-out .icon {
    color: rgba(255,255,255,0.85);
}

/* Иконка справа: по центру карточки, круг с красной обводкой и белым ромбом */
.tournament-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-image .chip-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Rating — красная карточка, трофей, минимум декора */
.rating-section {
    margin-bottom: 22px;
}

.rating-card {
    background: var(--accent-red);
    border-radius: var(--radius);
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
    min-height: 130px;
}

.rating-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(0,0,0,0.06) 100%);
    pointer-events: none;
}

.rating-card__deco--chips {
    position: absolute;
    bottom: 8px;
    left: 12px;
    width: 64px;
    height: 32px;
    opacity: 0.2;
    pointer-events: none;
}

.rating-card__deco--chips svg {
    width: 100%;
    height: 100%;
}

.rating-title {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Unbounded', sans-serif;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: 0.04em;
}

.rating-subtitle {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    color: rgba(255,255,255,0.95);
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}

.rating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.22);
    border: none;
    border-radius: var(--radius-sm);
    padding: 11px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
}

.rating-btn:active {
    background: rgba(255,255,255,0.3);
}

.rating-btn .icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
}

.rating-card .trophy-wrap {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    opacity: 0.5;
}

.rating-card .trophy-wrap svg {
    width: 100%;
    height: 100%;
}

/* Info — две карточки, лаконично */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.info-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
}

.info-card:active {
    background: var(--bg-elevated);
}

.info-card h2 {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

/* О клубе — карточка с фишкой */
.about-section {
    margin-bottom: 20px;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.about-card:active {
    background: var(--bg-elevated);
}

.about-title {
    font-size: 17px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.about-card .chip-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.about-card .chip-wrap svg {
    width: 100%;
    height: 100%;
}
