/* ===== CUSTOM.CSS - СЕО БЛОКИ ===== */

/* 1. FAQ БЛОК */
.faq-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 2.2em;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.faq-question {
    background: rgba(0, 102, 204, 0.1);
    padding: 20px;
    margin: 0;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* 2. БЛОК "ПОЧЕМУ ВЫБИРАЮТ НАС" */
.why-choose-us {
    margin: 50px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 20px;
    color: white;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 3em;
    margin-bottom: 15px;
    display: block;
}

.advantage-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 600;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95em;
}

/* 3. ОБЗОР КАЗИНО */
.detailed-casino-info {
    margin: 50px 0;
    padding: 40px;
    background: #1e1e1e;
    border-radius: 20px;
    border: 1px solid #333;
}

.detailed-casino-info h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.casino-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.overview-content h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
}

.overview-content p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background: linear-gradient(135deg, #0066cc, #004499);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* 4. ОТЗЫВЫ РАСШИРЕННЫЕ */
.reviews-section-extended {
    margin: 40px 0;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 15px;
}

.reviews-section-extended h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.review-item-extended {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header span {
    color: #ffffff;
    font-weight: 600;
}

.stars {
    color: #ffd700;
    font-size: 1.1em;
}

.review-item-extended p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* 5. ПРОВАЙДЕРЫ */
.providers-guide {
    margin: 50px 0;
    padding: 40px;
    background: #1e1e1e;
    border-radius: 20px;
}

.providers-guide h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.provider-card h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.provider-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.games-count, .avg-rating {
    background: rgba(0, 102, 204, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #ffffff;
}

.provider-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popular-games h4 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.popular-games ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.popular-games li {
    margin-bottom: 5px;
}

.popular-games a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-games a:hover {
    color: #ffffff;
}

.view-all {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* 6. СТРАТЕГИИ ИГРЫ */
.gaming-strategies {
    margin: 50px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 20px;
}

.gaming-strategies h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.strategy-article {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-article h3 {
    color: #0066cc;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.strategy-article p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.strategy-tips {
    list-style: none;
    padding: 0;
}

.strategy-tips li {
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.strategy-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* 7. КАЛЬКУЛЯТОР БОНУСОВ */
.bonus-calculator {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border-radius: 20px;
    border: 1px solid #333;
}

.bonus-calculator h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.calculator-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.calculator-result {
    background: rgba(0, 102, 204, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #0066cc;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    color: #cccccc;
    font-weight: 500;
}

.result-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1em;
}

/* 8. ТАБЛИЦА УСЛОВИЙ ОТЫГРЫША */
.wagering-info {
    margin: 40px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 20px;
}

.wagering-info h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.table-responsive {
    overflow-x: auto;
}

.wagering-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.wagering-table th {
    background: #0066cc;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.wagering-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.wagering-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* 9. ПОХОЖИЕ ИГРЫ */
.similar-games {
    margin: 40px 0;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 15px;
}

.similar-games h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.5em;
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.similar-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.similar-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.similar-game-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.game-image {
    background: #333;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}

.game-info {
    padding: 15px;
}

.game-name {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.game-rating {
    color: #ffd700;
    font-size: 0.9em;
}

/* 10. ЗЕРКАЛА */
.mirror-info {
    margin: 40px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 20px;
}

.mirror-info h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.mirror-list {
    margin-bottom: 40px;
}

.mirror-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mirror-url {
    color: #0066cc;
    font-weight: 600;
    font-family: monospace;
}

.mirror-status.active {
    background: #28a745;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
}

.mirror-guide h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.mirror-guide ol {
    color: #cccccc;
    line-height: 1.8;
}

.mirror-guide li {
    margin-bottom: 10px;
}

/* 11. МОБИЛЬНАЯ ВЕРСИЯ */
.mobile-vs-desktop {
    margin: 40px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 20px;
}

.mobile-vs-desktop h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: #0066cc;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.installation-guide {
    margin: 40px 0;
    padding: 40px;
    background: #1e1e1e;
    border-radius: 20px;
}

.installation-guide h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

.installation-steps {
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background: #0066cc;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* 12. FOOTER ДОПОЛНЕНИЯ */
.footer-info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.info-block h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.info-block p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.security-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.badge {
    background: rgba(0, 102, 204, 0.2);
    color: #0066cc;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

/* 13. АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .casino-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info-blocks {
        grid-template-columns: 1fr;
    }
    
    .mirror-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .comparison-table,
    .wagering-table {
        font-size: 0.9em;
    }
    
    .faq-section,
    .why-choose-us,
    .detailed-casino-info,
    .bonus-calculator,
    .wagering-info,
    .gaming-strategies,
    .providers-guide {
        padding: 20px;
        margin: 30px 0;
    }
    
    .why-choose-us h2,
    .detailed-casino-info h2,
    .bonus-calculator h2,
    .wagering-info h2,
    .gaming-strategies h2,
    .providers-guide h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .similar-games-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px auto;
    }
}