/* ============================================
   БОНУСНАЯ СТРАНИЦА - СТИЛИ
   ============================================ */

/* Hero Section */
.bonus-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 50%, #bbdefb 100%);
    padding: 60px 0;
    border-bottom: 3px solid #1e88e5;
    margin-bottom: 50px;
}

.bonus-hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.bonus-hero-content {
    flex: 1;
    min-width: 300px;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-hero-title {
    font-size: 2.8rem;
    color: #0d3b66;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.bonus-hero-amount {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.amount-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e88e5;
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 rgba(30,136,229,0.2);
}

.amount-plus {
    font-size: 2.5rem;
    color: #0d3b66;
    font-weight: 700;
}

.bonus-hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border-left: 4px solid #1e88e5;
}

.btn-hero-claim {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e88e5, #0d3b66);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(13,59,102,0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #0d3b66;
}

.btn-hero-claim:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(13,59,102,0.7);
    background: linear-gradient(135deg, #0d3b66, #1e88e5);
}

.bonus-hero-note {
    margin-top: 20px;
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bonus-hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.bonus-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 6px solid #fff;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.bonus-hero-image img:hover {
    transform: scale(1.15) rotate(2deg);
}

/* Bonus Info Block */
.bonus-info-block {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #dbe9ff;
}

.bonus-info-block h3 {
    color: #0d3b66;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #1e88e5;
    padding-bottom: 10px;
}

.bonus-info-block p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.bonus-feature-item {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #1e88e5;
    transition: transform 0.3s ease;
}

.bonus-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30,136,229,0.3);
}

.bonus-feature-item i {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 15px;
}

.bonus-feature-item h4 {
    color: #0d3b66;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bonus-feature-item p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    color: #0d3b66;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Bonus Tiers */
.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-tier {
    background: #fff;
    border-radius: 20px;
    border: 3px solid #dbe9ff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.bonus-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30,136,229,0.3);
    border-color: #1e88e5;
}

.tier-header {
    background: linear-gradient(135deg, #0d3b66, #1e88e5);
    padding: 25px;
    text-align: center;
    color: #fff;
}

.tier-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-weight: 900;
    color: #0d3b66;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tier-label {
    display: block;
    font-weight: 700;
    font-size: 1.3rem;
}

.tier-content {
    padding: 30px;
}

.tier-bonus {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-percent {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #1e88e5;
    line-height: 1;
}

.bonus-max {
    display: block;
    color: #666;
    font-size: 1.3rem;
    margin-top: 5px;
}

.tier-free-spins {
    text-align: center;
    background: linear-gradient(135deg, #fff9e6, #ffecb3);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    color: #d45500;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px dashed #ffcc00;
}

.tier-free-spins i {
    color: #ff9800;
    margin-right: 8px;
}

.tier-conditions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-conditions li {
    padding: 12px 0;
    border-bottom: 1px dashed #dbe9ff;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
}

.tier-conditions li:last-child {
    border-bottom: none;
}

.tier-conditions i {
    color: #4caf50;
    font-size: 1.2rem;
}

/* CTA Section */
.bonus-cta {
    background: linear-gradient(135deg, #0d3b66, #1e88e5);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(13,59,102,0.3);
}

.bonus-cta h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
}

.bonus-cta p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #0d3b66;
    padding: 22px 45px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #fff;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    background: #f0f7ff;
}

.cta-note {
    margin-top: 25px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 40px 0;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 10px;
}

.breadcrumbs ol {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #999;
}

.breadcrumbs a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .bonus-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-hero-amount {
        justify-content: center;
    }
    
    .bonus-hero-subtitle {
        text-align: center;
    }
    
    .amount-big {
        font-size: 2.8rem;
    }
    
    .bonus-hero-title {
        font-size: 2.2rem;
    }
    
    .bonus-hero-image img {
        transform: scale(1);
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .amount-big {
        font-size: 2.2rem;
    }
    
    .btn-hero-claim, .btn-cta-large {
        width: 100%;
        justify-content: center;
        font-size: 1.2rem;
        padding: 18px 30px;
    }
    
    .bonus-hero-image img {
        max-width: 100%;
    }
}