/* style/slot-games.css */
/* Base styles for the slot games page */
.page-slot-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: var(--dark-bg-1); /* Inherited from shared.css, typically dark */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-slot-games__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    font-weight: bold;
}

.page-slot-games__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
}

.page-slot-games__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
    border-radius: 10px;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #26A9E0;
    line-height: 1.2;
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-slot-games__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-promo {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    text-align: center;
}

.page-slot-games__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-slot-games__btn-promo {
    background-color: #EA7C07; /* Login color for promo buttons */
    color: #ffffff;
    border: 2px solid #EA7C07;
    padding: 10px 20px;
    font-size: 1em;
}

.page-slot-games__btn-promo:hover {
    background-color: #c76706;
    border-color: #c76706;
}

/* Introduction Section */
.page-slot-games__introduction-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

.page-slot-games__dark-section {
    background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent primary color for dark background contrast */
    color: #ffffff;
}

.page-slot-games__dark-section .page-slot-games__section-title {
    color: #26A9E0;
}

.page-slot-games__dark-section .page-slot-games__section-description {
    color: #f0f0f0;
}

/* Game Types Section */
.page-slot-games__game-types-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #1a1a1a; /* Darker background for variety */
}

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

.page-slot-games__game-card {
    background-color: rgba(255, 255, 255, 0.05); /* Light background for cards on dark section */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__game-card:hover {
    transform: translateY(-10px);
}

.page-slot-games__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__card-text {
    font-size: 1em;
    color: #f0f0f0;
}

/* Guide Section */
.page-slot-games__guide-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.page-slot-games__guide-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__guide-item-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__guide-item-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-slot-games__guide-item-text a {
    color: #EA7C07; /* Link color for action */
    text-decoration: underline;
}

.page-slot-games__guide-item-text a:hover {
    color: #c76706;
}

/* Tips and Strategies Section */
.page-slot-games__tips-strategies-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #1a1a1a;
}

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

.page-slot-games__tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__tip-item-title {
    font-size: 1.6em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.page-slot-games__tip-item-text {
    font-size: 1em;
    color: #f0f0f0;
    text-align: center;
}

.page-slot-games__tip-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.page-slot-games__promo-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__promo-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__promo-text {
    font-size: 0.95em;
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-slot-games__promotions-section .page-slot-games__section-description a {
    color: #EA7C07;
    text-decoration: underline;
}

.page-slot-games__promotions-section .page-slot-games__section-description a:hover {
    color: #c76706;
}

/* Safety Section */
.page-slot-games__safety-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #1a1a1a;
}

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

.page-slot-games__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__feature-icon {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.2); /* Slight brightness adjustment to make icons pop on dark background, not changing hue */
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-slot-games__feature-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__feature-text {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-slot-games__safety-section .page-slot-games__section-description a {
    color: #EA7C07;
    text-decoration: underline;
}

.page-slot-games__safety-section .page-slot-games__section-description a:hover {
    color: #c76706;
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 60px 0;
    margin-bottom: 60px;
}

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

.page-slot-games__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    overflow: hidden;
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    background-color: rgba(38, 169, 224, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__faq-question:hover {
    background-color: rgba(38, 169, 224, 0.2);
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none;
}

.page-slot-games__faq-question::marker {
    display: none;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-slot-games__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1em;
    color: #f0f0f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__faq-answer-text {
    margin: 0;
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin-bottom: 0; /* No margin-bottom for the last section */
    background-color: #0d0d0d; /* Darker background */
}

.page-slot-games__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Make background image subtle */
    z-index: 1;
}

.page-slot-games__cta-final-section .page-slot-games__container {
    position: relative;
    z-index: 2;
}

.page-slot-games__cta-final-section .page-slot-games__section-title {
    font-size: 3em;
    color: #26A9E0;
    margin-bottom: 20px;
}

.page-slot-games__cta-final-section .page-slot-games__section-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Links within content */
.page-slot-games p a,
.page-slot-games li a {
    color: #26A9E0; /* Primary color for general links */
    text-decoration: underline;
}

.page-slot-games p a:hover,
.page-slot-games li a:hover {
    color: #1e87b6;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-slot-games__hero-section {
        height: 500px;
    }
    .page-slot-games__hero-title {
        font-size: 3em;
    }
    .page-slot-games__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__section-description {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset is applied */
    }

    .page-slot-games__hero-section {
        height: 400px;
        margin-bottom: 40px;
    }
    .page-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-slot-games__hero-description {
        font-size: 1em;
    }
    .page-slot-games__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}