/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КЛУБА "МАГИЯ ВЕЛИКИХ ДИНАСТИЙ" ===== */

/* Хлебные крошки */
.breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.breadcrumb__link:hover {
    color: #7877c6;
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.breadcrumb__current {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Основная секция клуба */
.club-detail {
    padding: 60px 0;
    min-height: 100vh;
}

.club-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.club-header__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.club-header__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #7877c6, #9b9ae1);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.club-header__content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #f0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.club-header__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.club-status,
.club-meetings {
    background: rgba(120, 119, 198, 0.2);
    color: #7877c6;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.club-status {
    background: linear-gradient(135deg, #7877c6, #9b9ae1);
    color: white;
}

/* Вступление */
.club-intro {
    margin-bottom: 60px;
}

.club-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Задачи клуба */
.club-tasks {
    margin-bottom: 60px;
}

.club-tasks h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.task-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(120, 119, 198, 0.3);
}

.task-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.task-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7877c6;
    margin-bottom: 15px;
}

.task-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Регламент занятий */
.club-schedule {
    margin-bottom: 60px;
}

.club-schedule h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.schedule-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-3px);
    border-color: rgba(120, 119, 198, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.schedule-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.schedule-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7877c6;
    margin-bottom: 5px;
}

.schedule-info p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* Династии */
.dynasties-section {
    margin-bottom: 60px;
}

.dynasties-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dynasties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dynasty-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dynasty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(120, 119, 198, 0.3);
}

.dynasty-symbol {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.dynasty-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7877c6;
    margin-bottom: 15px;
}

.dynasty-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Тарифы */
.club-pricing {
    margin-bottom: 60px;
}

.club-pricing h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(120, 119, 198, 0.3);
}

.pricing-card.featured {
    border-color: rgba(120, 119, 198, 0.3);
}

.pricing-card.popular {
    border-color: #7877c6;
    background: rgba(120, 119, 198, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #7877c6, #9b9ae1);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(120, 119, 198, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7877c6;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    margin-bottom: 25px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-highlight {
    color: #7877c6;
    font-weight: 600;
}

.pricing-savings {
    text-align: center;
    margin-bottom: 20px;
}

.savings-text {
    display: block;
    font-size: 1rem;
    color: #7877c6;
    font-weight: 600;
    margin-bottom: 5px;
}

.savings-percent {
    background: linear-gradient(135deg, #7877c6, #9b9ae1);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-action {
    text-align: center;
}

/* Призыв к действию */
.club-cta {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.2), rgba(120, 119, 198, 0.1));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.club-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.club-cta p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
    .club-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .club-header__content h1 {
        font-size: 2rem;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dynasties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
