/* style/slot-games.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #E0B048;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f7f6;
    --bg-dark: #0A2463;
    --border-color: #e0e0e0;
}

.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-slot-games h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-slot-games h3 {
    font-size: 1.6em;
    margin-top: 20px;
}

.page-slot-games p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.page-slot-games .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-slot-games .text-center {
    text-align: center;
}

.page-slot-games .mt-5 {
    margin-top: 3rem;
}

/* Hero Section */
.page-slot-games .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a70 100%); /* Slightly darker gradient */
    color: var(--text-light);
    overflow: hidden;
}

.page-slot-games .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-slot-games .hero-image {
    width: 100%;
    margin-bottom: 30px;
    z-index: 1;
}

.page-slot-games .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-games .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 8px;
}

.page-slot-games .hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 3.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games .hero-content p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* CTA Button */
.page-slot-games .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-slot-games .cta-button:hover {
    background: #f0c260; /* Slightly lighter gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games .cta-button.small {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
}

.page-slot-games .cta-button.large {
    padding: 22px 60px;
    font-size: 1.5em;
}

/* Why Choose Section */
.page-slot-games .section-why-choose {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-slot-games .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games .feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-slot-games .feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Game Types Section */
.page-slot-games .section-game-types {
    background-color: #eaf0f6;
    padding: 80px 0;
}

.page-slot-games .game-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games .game-type-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games .game-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-slot-games .game-type-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-slot-games .game-type-card h3 {
    font-size: 1.3em;
    margin: 20px 15px 10px 15px;
    color: var(--primary-color);
}

.page-slot-games .game-type-card p {
    font-size: 0.95em;
    padding: 0 15px 20px 15px;
    color: #555555;
}

.page-slot-games .learn-more-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-slot-games .learn-more-button:hover {
    background-color: #071c4a; /* Darker primary */
}

/* How to Play Section */
.page-slot-games .section-how-to-play {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.page-slot-games .step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 40px;
}

.page-slot-games .step-list li {
    background: #ffffff;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 80px;
}

.page-slot-games .step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-slot-games .step-list li h3 {
    margin-top: 0;
    color: var(--primary-color);
}

/* Strategies Section */
.page-slot-games .section-strategies {
    background-color: #eaf0f6;
    padding: 80px 0;
}

.page-slot-games .checklist {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-slot-games .checklist li {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    position: relative;
    padding-left: 60px;
}

.page-slot-games .checklist li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 25px;
    color: var(--secondary-color);
    font-size: 1.8em;
    font-weight: bold;
}

.page-slot-games .checklist li h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3em;
}

/* Security and Support Section */
.page-slot-games .section-security-support {
    background-color: var(--bg-dark);
    padding: 80px 0;
    color: var(--text-light);
}

.page-slot-games .section-security-support h2, .page-slot-games .section-security-support h3 {
    color: var(--secondary-color);
}

.page-slot-games .section-security-support p {
    color: #cccccc;
}

.page-slot-games .security-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games .security-item, .page-slot-games .support-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games .security-item img, .page-slot-games .support-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Allowed for icons to be visible on dark background */
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--secondary-color);
    padding: 10px;
}

/* FAQ Section */
.page-slot-games .section-faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.page-slot-games .faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fdfdfd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: #444444;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px 25px;
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
}

/* Final CTA Section */
.page-slot-games .section-cta-final {
    background: linear-gradient(90deg, var(--primary-color), #1a3a70);
    padding: 60px 0;
    color: var(--text-light);
}

.page-slot-games .section-cta-final h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
}

.page-slot-games .section-cta-final p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 40px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-slot-games h1 {
        font-size: 2.5em;
    }
    .page-slot-games h2 {
        font-size: 1.8em;
    }
    .page-slot-games h3 {
        font-size: 1.4em;
    }
    .page-slot-games .hero-content h1 {
        font-size: 2.8em;
    }
    .page-slot-games .hero-content p {
        font-size: 1.1em;
    }
    .page-slot-games .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-slot-games .cta-button.large {
        padding: 18px 45px;
        font-size: 1.3em;
    }
    .page-slot-games .features-grid, .page-slot-games .game-type-grid, .page-slot-games .security-support-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games h1 {
        font-size: 2em;
    }
    .page-slot-games h2 {
        font-size: 1.6em;
    }
    .page-slot-games h3 {
        font-size: 1.2em;
    }
    .page-slot-games .hero-section {
        padding: 40px 15px;
    }
    .page-slot-games .hero-content h1 {
        font-size: 2.2em;
    }
    .page-slot-games .hero-content p {
        font-size: 1em;
    }
    .page-slot-games .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slot-games .cta-button.large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-slot-games .step-list li {
        padding-left: 60px;
    }
    .page-slot-games .step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 15px;
    }
    .page-slot-games .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .page-slot-games .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-slot-games h1 {
        font-size: 1.8em;
    }
    .page-slot-games h2 {
        font-size: 1.4em;
    }
    .page-slot-games .hero-content h1 {
        font-size: 1.8em;
    }
    .page-slot-games .hero-content p {
        font-size: 0.95em;
    }
    .page-slot-games .cta-button {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-slot-games .features-grid, .page-slot-games .game-type-grid, .page-slot-games .security-support-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games .security-item img, .page-slot-games .support-item img {
        width: 60px;
        height: 60px;
    }
}