﻿/* Slot Page Specific Styles */

.promo-banner {
    background: rgba(212, 165, 116, 0.12);
    border: 2px solid #8B6F47;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.promo-banner p {
    color: #D4A574;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
}

.content-section {
    margin: 60px 0;
}

.content-block {
    background: rgba(28, 18, 10, 0.4);
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

.content-block h2 {
    color: #D4A574;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-block p {
    color: #C4A580;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.content-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.advantage-card {
    background: rgba(28, 18, 10, 0.4);
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.7);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.advantage-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.advantage-card h3 {
    color: #D4A574;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #C4A580;
    font-size: 1em;
    line-height: 1.6;
}

.rtp-highlight {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 30px;
    background: rgba(28, 18, 10, 0.4);
    border: 2px solid #D4A574;
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    align-items: center;
}

.rtp-content h3 {
    color: #F0C159;
    font-size: 2em;
    margin-bottom: 15px;
}

.rtp-content p {
    color: #C4A580;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rtp-content ul {
    list-style: none;
    padding: 0;
}

.rtp-content li {
    color: #C4A580;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.3);
}

.rtp-badge {
    text-align: center;
    padding: 30px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
}

.badge-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.rtp-badge p {
    color: #D4A574;
    font-weight: bold;
    font-size: 1.1em;
}

.rtp-table-container {
    overflow-x: auto;
    margin-top: 30px;
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(28, 18, 10, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.rtp-table thead {
    background: rgba(212, 165, 116, 0.2);
}

.rtp-table th {
    color: #D4A574;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.rtp-table td {
    color: #C4A580;
    padding: 15px;
    border-bottom: 1px solid rgba(139, 111, 71, 0.3);
}

.rtp-table tbody tr:hover {
    background: rgba(212, 165, 116, 0.1);
}

.final-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 111, 71, 0.1));
    border: 2px solid #D4A574;
    border-radius: 12px;
}

.final-cta h2 {
    color: #D4A574;
    font-size: 2.2em;
    margin-bottom: 30px;
}

.cta-buttons-centered {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-xl {
    font-size: 1.3em;
    padding: 18px 40px;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 30px auto 0;
}

.faq-item {
    background: rgba(28, 18, 10, 0.4);
    border: 1px solid rgba(139, 111, 71, 0.3);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 20px;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(212, 165, 116, 0.5);
}

.faq-item.active {
    border-color: rgba(212, 165, 116, 0.7);
    background: rgba(28, 18, 10, 0.6);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #D4A574;
    font-size: 1.2em;
    font-weight: bold;
    padding: 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    line-height: 1.4;
}

.faq-question:hover {
    color: #F0C159;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: #D4A574;
    transition: all 0.3s;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
}

.faq-item.active .faq-icon {
    color: #F0C159;
    background: rgba(240, 193, 89, 0.2);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    padding-bottom: 20px;
}

.faq-answer {
    color: #C4A580;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 20px 25px 25px 25px;
}

.faq-answer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .content-block {
        padding: 25px;
    }
    
    .action-group {
        flex-direction: column;
        text-align: center;
    }
    
    .content-image {
        width: 100%;
        max-width: 300px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .rtp-highlight {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-centered {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1em;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
    
    .faq-answer {
        font-size: 0.95em;
        padding: 0 20px;
    }
    
    .faq-icon {
        font-size: 1.3em;
        width: 28px;
        height: 28px;
    }
}

