/* style/slot-games.css */

/* General Styles for the Page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light backgrounds */
    line-height: 1.6;
    background-color: #f8f8f8; /* Light background */
}

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

.page-slot-games .content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.page-slot-games .content-section:last-of-type {
    border-bottom: none;
}

.page-slot-games .bg-light {
    background-color: #f2f2f2;
}

.page-slot-games .bg-dark {
    background-color: var(--primary-color); /* Dark blue background */
    color: #ffffff; /* White text for dark background */
}

.page-slot-games .text-white {
    color: #ffffff;
}

.page-slot-games h1,
.page-slot-games h2,
.page-slot-games h3 {
    color: var(--primary-color); /* Dark blue for headings */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-slot-games h1 {
    font-size: 2.8em;
    color: var(--secondary-color); /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games h2 {
    font-size: 2.2em;
}

.page-slot-games h3 {
    font-size: 1.6em;
}

.page-slot-games p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-slot-games ul,
.page-slot-games ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-slot-games li {
    margin-bottom: 8px;
}

/* Variables for colors */
:root {
    --primary-color: #003366; /* Dark Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --button-bg-primary: var(--secondary-color);
    --button-text-primary: var(--primary-color);
    --button-bg-secondary: var(--primary-color);
    --button-text-secondary: var(--secondary-color);
}

/* Buttons */
.page-slot-games .cta-button,
.page-slot-games .btn-small,
.page-slot-games .download-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-bg-primary);
    color: var(--button-text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games .cta-button:hover,
.page-slot-games .btn-small:hover,
.page-slot-games .download-button:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games .secondary-button {
    background: var(--button-bg-secondary);
    color: var(--button-text-secondary);
}

.page-slot-games .secondary-button:hover {
    background: #004080; /* Slightly lighter dark blue */
    color: var(--secondary-color);
}

.page-slot-games .btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* 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: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d80 100%); /* Dark blue gradient */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.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;
    z-index: 1;
}

.page-slot-games .hero-image-main {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games .hero-content {
    color: #ffffff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    margin-top: -80px; /* Overlap with image slightly */
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-slot-games .hero-content h1 {
    color: var(--secondary-color); /* Gold for hero title */
    font-size: 3.5em;
    margin-bottom: 20px;
}

.page-slot-games .hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
}

/* Introduction Section */
.page-slot-games .introduction-section .content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How to Play Section */
.page-slot-games .how-to-play-section ol {
    list-style-type: decimal;
    color: var(--text-color-dark);
}

.page-slot-games .how-to-play-section ol li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-slot-games .how-to-play-section ol li strong {
    color: var(--primary-color);
}

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

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

.page-slot-games .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-slot-games .game-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.page-slot-games .game-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-slot-games .game-card h3 a:hover {
    color: var(--secondary-color);
}

.page-slot-games .game-card p {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.page-slot-games .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make icons circular if desired */
    background-color: var(--secondary-color); /* Gold background for icons */
    padding: 10px;
}

.page-slot-games .benefit-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3em;
}

.page-slot-games .benefit-item p {
    color: #555555;
    font-size: 0.95em;
    text-align: center;
}

/* Promotions Section */
.page-slot-games .promotions-section ul {
    list-style-type: disc;
    color: var(--text-color-dark);
}

.page-slot-games .promotions-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-slot-games .promotions-section ul li strong {
    color: var(--primary-color);
}

/* Download Section */
.page-slot-games .download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-slot-games .download-button {
    display: flex;
    align-items: center;
    padding: 15px 40px;
    font-size: 1.2em;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-slot-games .download-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-slot-games .download-button .download-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    object-fit: contain;
}

.page-slot-games .qr-code-image {
    width: 250px;
    height: 250px;
    margin-top: 40px;
    border: 5px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games .download-note {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Tips and Strategies Section */
.page-slot-games .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-slot-games .tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games .tip-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3em;
    text-align: left;
}

.page-slot-games .tip-item p {
    color: #555555;
    font-size: 0.95em;
    text-align: justify;
}

/* Why Choose Section */
.page-slot-games .why-choose-section ul {
    list-style-type: disc;
    color: var(--text-color-dark);
}

.page-slot-games .why-choose-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-slot-games .why-choose-section ul li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-slot-games .faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.page-slot-games .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--primary-color);
    text-align: left;
    flex-grow: 1;
}

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

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

.page-slot-games .faq-item.active .faq-answer {
    max-height: 500px; /* Enough height for content */
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

.page-slot-games .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.page-slot-games .faq-answer p {
    margin: 0;
    color: #555555;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games .hero-content h1 {
        font-size: 3em;
    }
    .page-slot-games h1 {
        font-size: 2.5em;
    }
    .page-slot-games h2 {
        font-size: 2em;
    }
    .page-slot-games h3 {
        font-size: 1.4em;
    }
    .page-slot-games .game-cards,
    .page-slot-games .benefits-grid,
    .page-slot-games .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-slot-games .hero-content {
        margin-top: -60px;
    }
}

@media (max-width: 768px) {
    .page-slot-games .content-section {
        padding: 40px 0;
    }
    .page-slot-games .container {
        padding: 0 15px;
    }
    .page-slot-games .hero-section {
        padding: 60px 15px;
    }
    .page-slot-games .hero-content h1 {
        font-size: 2.5em;
    }
    .page-slot-games .hero-content p {
        font-size: 1em;
    }
    .page-slot-games .hero-image-main {
        margin-bottom: 30px;
    }
    .page-slot-games .hero-content {
        margin-top: -40px;
        padding: 15px;
    }
    .page-slot-games h1 {
        font-size: 2em;
    }
    .page-slot-games h2 {
        font-size: 1.8em;
    }
    .page-slot-games h3 {
        font-size: 1.2em;
    }
    .page-slot-games .cta-button,
    .page-slot-games .download-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-slot-games .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .page-slot-games .download-button {
        width: 80%;
        max-width: 300px;
    }
    .page-slot-games .faq-question {
        padding: 15px 20px;
    }
    .page-slot-games .faq-question h3 {
        font-size: 1.1em;
    }
    .page-slot-games .faq-toggle {
        font-size: 20px;
    }
    .page-slot-games .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-slot-games .hero-content h1 {
        font-size: 2em;
    }
    .page-slot-games h1 {
        font-size: 1.8em;
    }
    .page-slot-games h2 {
        font-size: 1.6em;
    }
    .page-slot-games h3 {
        font-size: 1.1em;
    }
    .page-slot-games .cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
    .page-slot-games .game-cards,
    .page-slot-games .benefits-grid,
    .page-slot-games .tips-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games .hero-content {
        margin-top: -20px;
        padding: 10px;
    }
    .page-slot-games .hero-image-main {
        border-radius: 8px;
    }
    .page-slot-games .download-button .download-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .page-slot-games .qr-code-image {
        width: 200px;
        height: 200px;
    }
}