/* --- Стили, специфичные для страницы "Бонусы" --- */

/* Секция 1: Главный экран */
.bonus-hero {
    background: linear-gradient(rgba(20, 20, 40, 0.55), rgba(20, 20, 40, 0.5)), url('img/bonuses.avif') center/cover no-repeat;
    min-height: 60vh;
}
.bonus-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

/* Секция 2: Бонус Месяца (WOW) */
.botm-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.botm-section h2 {
    color: var(--light-color);
}
a {
    text-decoration: none;
    color: inherit;
}
.black {
    background: #000; padding: 5px
}
.botm-card {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    text-align: left;
}
.botm-logo img {
    max-width: 100%;
}
.botm-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.botm-details a {
    margin-top: 20px;
    display: inline-block;
}
.botm-timer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}
.botm-timer h4 {
    color: var(--light-color);
    opacity: 0.8;
    margin-bottom: 10px;
}
#countdown {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Секция 3: Типы бонусов */
.types-section {
    background-color: var(--gray-color);
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.type-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.type-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Секция 4: Объяснение вейджера (WOW) */
.wagering-section .subtitle {
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.wagering-explainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.explainer-step {
    background: var(--gray-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 220px;
}
.explainer-step span {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 700;
}
.explainer-step.result {
    background-color: var(--dark-color);
    color: var(--light-color);
}
.explainer-step.result h4, .explainer-step.result p, .explainer-step.result small {
    color: var(--light-color);
}
.explainer-step.result span {
    background-color: var(--accent-color);
    color: var(--dark-color);
}
.operator {
    font-size: 2rem;
    color: var(--text-color);
}

/* Секции 5, 6, 7: Списки бонусов */
.bonus-list-section.gray-bg {
    background-color: var(--gray-color);
}
.bonus-list-section h2 i {
    margin-right: 15px;
    color: var(--primary-color);
}
.bonus-table {
    max-width: 1000px;
    margin: 40px auto 0;
    background: var(--light-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.bonus-table-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1fr;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.bonus-table-row:last-child {
    border-bottom: none;
}
.bonus-table-row.header {
    background: var(--dark-color);
    color: var(--light-color);
    font-weight: 600;
}
.casino-cell img {
    max-height: 40px;
    max-width: 120px;
}
.wager-cell, .claim-cell {
    text-align: center;
}

/* Секция 8: Советы */
.tips-section.gray-bg {
    background-color: var(--gray-color);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.tip {
    text-align: left;
    padding: 20px;
    background: var(--light-color);
    border-left: 5px solid var(--accent-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.tip i {
    float: right;
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.1;
}

/* Секция 9: Предупреждение */
.warning-section {
    background: #fffbe6;
    border-top: 1px solid #ffe58f;
    border-bottom: 1px solid #ffe58f;
}
.warning-section .subtitle {
     max-width: 600px;
     margin: 0 auto 30px auto;
}
.warning-section ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.warning-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.warning-section ul i {
    color: #fadb14;
    margin-right: 10px;
}

/* Секция 10: Глоссарий */
.glossary-section.gray-bg {
    background-color: var(--gray-color);
}
dl {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
dt {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}
dd {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
}

/* Адаптивность */
@media screen and (max-width: 992px) {
    .botm-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .botm-details { text-align: center; }
}

@media screen and (max-width: 768px) {
    .wagering-explainer {
        flex-direction: column;
    }
    .operator {
        transform: rotate(90deg);
    }
    .bonus-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        text-align: center;
    }
    .bonus-table-row.header { display: none; }
    .bonus-table-row .casino-cell { grid-column: 1 / 3; }
    .bonus-table-row .wager-cell::before { content: "Wager: "; font-weight: 600; }
}