/* style/slot-games.css */

/* General styles for the slot games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #0F1217; /* Very dark background */
    line-height: 1.6;
}

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

/* 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, #1A202C 0%, #0F1217 100%); /* Dark gradient background */
    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;
}

.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.5);
}

.page-slot-games .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-slot-games .hero-content h1 {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    line-height: 1.2;
}

.page-slot-games .hero-content p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

/* CTA Buttons */
.page-slot-games .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text for gold button */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
}

.page-slot-games .cta-button:hover {
    background: #E0B800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-slot-games .cta-button.secondary {
    background: #2D3748; /* Darker background for secondary button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games .cta-button.secondary:hover {
    background: #3A475C;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


/* Section Styling */
.page-slot-games section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games section:nth-of-type(even) {
    background-color: #1A202C; /* Primary dark color for even sections */
}

.page-slot-games h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-slot-games h3 {
    font-size: 1.8em;
    color: #F0F0F0;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-slot-games p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-slot-games ul,
.page-slot-games ol {
    list-style-position: inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    color: #E0E0E0;
}

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

.page-slot-games ul li::marker {
    color: #FFD700;
    font-weight: bold;
}

.page-slot-games ol li::marker {
    color: #FFD700;
    font-weight: bold;
}

.page-slot-games strong {
    color: #FFD700;
}

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

.page-slot-games .feature-item {
    background-color: #2D3748; /* Darker background for feature cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-slot-games .feature-image {
    width: 100%;
    max-width: 300px; /* Adjust max-width for feature images */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games .feature-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
}

.page-slot-games .feature-item p {
    font-size: 1em;
    color: #C0C0C0;
    flex-grow: 1; /* Allow paragraph to take available space */
}

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

.page-slot-games .promo-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-slot-games .promo-image {
    width: 100%;
    max-width: 350px; /* Adjust max-width for promo images */
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games .promo-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
}

.page-slot-games .promo-item p {
    font-size: 1em;
    color: #C0C0C0;
    flex-grow: 1;
}

.page-slot-games .promo-button {
    display: inline-block;
    padding: 12px 25px;
    background: #FFD700;
    color: #1A202C;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-slot-games .promo-button:hover {
    background: #E0B800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

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

.page-slot-games .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #2D3748; /* Darker background for question */
    border: 1px solid #3A475C;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.page-slot-games .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: #F0F0F0;
}

.page-slot-games .faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    line-height: 1;
}

.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: #1A202C; /* Primary dark color for answer background */
    color: #C0C0C0;
    font-size: 1.05em;
    border-radius: 0 0 8px 8px;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-slot-games .hero-content h1 {
        font-size: 3em;
    }
    .page-slot-games h2 {
        font-size: 2em;
    }
    .page-slot-games h3 {
        font-size: 1.5em;
    }
    .page-slot-games .feature-image,
    .page-slot-games .promo-image {
        max-width: 100%;
        height: auto; /* Allow height to adjust */
    }
}

@media (max-width: 768px) {
    .page-slot-games .hero-section {
        padding: 40px 15px;
    }
    .page-slot-games .hero-content h1 {
        font-size: 2.5em;
    }
    .page-slot-games .hero-content p {
        font-size: 1em;
    }
    .page-slot-games .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-slot-games section {
        padding: 40px 0;
    }
    .page-slot-games h2 {
        font-size: 1.8em;
    }
    .page-slot-games h3 {
        font-size: 1.3em;
    }
    .page-slot-games p,
    .page-slot-games ul li,
    .page-slot-games ol li {
        font-size: 0.95em;
    }
    .page-slot-games .feature-grid,
    .page-slot-games .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-slot-games .faq-question {
        padding: 15px 20px;
        flex-direction: row; /* Keep flex-direction row for question */
        align-items: center;
    }
    .page-slot-games .faq-question h3 {
        font-size: 1.1em;
        margin-right: 10px; /* Add some space */
    }
    .page-slot-games .faq-toggle {
        font-size: 1.8em;
        margin-top: 0; /* Reset margin */
    }
    .page-slot-games .faq-answer {
        padding: 0 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 h2 {
        font-size: 1.6em;
    }
    .page-slot-games .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}