/* ======================================= */
/* ========== АРХОНТЫ И СИСТЕМЫ ========== */
/* ======================================= */

.arhonts-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.arhonts-container h1 {
    text-align: center;
    color: #ffd966;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* Карточки */
.info-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.info-card:hover {
    border-color: rgba(255, 200, 100, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-header {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 24px;
}

.card-header h2 {
    color: #ffd966;
    font-size: 1.2em;
    margin: 0;
}

.card-content {
    padding: 20px;
}

/* Требования */
.requirement-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-row:last-child {
    border-bottom: none;
}

.req-label {
    color: #aaa;
    font-size: 0.9em;
}

.req-value {
    font-weight: 700;
    font-size: 0.95em;
}

.req-value.level {
    color: #4caf50;
}

.req-value.dalant {
    color: #ff8c00;
}

.req-value.os {
    color: #42a5f5;
}

.req-value.time {
    color: #ffd966;
}

/* Блоки баффов */
.buff-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.buff-row:last-child {
    border-bottom: none;
}

.buff-name {
    color: #aaa;
    font-size: 0.9em;
}

.buff-value {
    font-weight: 600;
    font-size: 0.9em;
}

.buff-row.positive .buff-value {
    color: #4caf50;
}

.buff-row.negative .buff-value {
    color: #ff6b6b;
}

/* Подзаголовки */
.section-subtitle {
    color: #ffd966;
    font-size: 1em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 217, 102, 0.3);
}

/* Таблица бонусов ЧВ */
.bonus-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-category {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.category-title {
    font-weight: 700;
    font-size: 0.85em;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-category.win-dsu .category-title {
    color: #ffd966;
}

.bonus-category.win .category-title {
    color: #4caf50;
}

.bonus-category.draw .category-title {
    color: #ff9800;
}

.bonus-category.loss .category-title {
    color: #ff6b6b;
}

.bonus-level {
    font-size: 0.75em;
    padding: 4px 0;
    color: #ccc;
}

.bonus-level.negative {
    color: #ff6b6b;
}

/* Блоки строк */
.block-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.block-label {
    color: #aaa;
    font-size: 0.9em;
}

.block-value {
    font-weight: 700;
    color: #4caf50;
}

/* Награды */
.reward-item {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.reward-icon img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #0a0a1a;
    padding: 8px;
    border: 1px solid #ffd966;
}

.reward-info {
    flex: 1;
}

.reward-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffd966;
    margin-bottom: 5px;
}

.reward-count {
    font-size: 0.85em;
    color: #aaa;
    margin-bottom: 8px;
}

.reward-bonus {
    font-size: 0.85em;
    color: #4caf50;
    margin-bottom: 5px;
}

.reward-trade {
    font-size: 0.8em;
    color: #42a5f5;
}

/* ======================================= */
/* ========== РЯДЫ КАРТОЧЕК (2 КОЛОНКИ) ========== */
/* ======================================= */

.cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.cards-row .info-card {
    margin-bottom: 0;
}

/* Адаптивность: на мобильных устройствах колонки становятся вертикальными */
@media (max-width: 768px) {
    .cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .arhonts-container {
        padding: 10px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .requirement-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .buff-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .bonus-table {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .block-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .reward-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reward-icon img {
        width: 80px;
        height: 80px;
    }
}