/* style/slot-games.css */

:root {
    --page-slot-games-primary-color: #26A9E0;
    --page-slot-games-secondary-color: #FFFFFF;
    --page-slot-games-dark-text-color: #333333;
    --page-slot-games-light-text-color: #FFFFFF;
    --page-slot-games-login-button-color: #EA7C07;
    --page-slot-games-background-color: #FFFFFF;
    --page-slot-games-black-color: #000000;
}

.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-slot-games-light-text-color); /* Body background is dark #0a0a0a, so default text is light */
}

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

/* Sections */
.page-slot-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--page-slot-games-primary-color);
    color: var(--page-slot-games-light-text-color);
    overflow: hidden;
}

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

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-slot-games-light-text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-slot-games-light-text-color);
}

.page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-slot-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-slot-games__btn-primary {
    background-color: var(--page-slot-games-primary-color);
    color: var(--page-slot-games-light-text-color);
    border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__btn-primary:hover {
    background-color: darken(var(--page-slot-games-primary-color), 10%);
    border-color: darken(var(--page-slot-games-primary-color), 10%);
}

.page-slot-games__btn-secondary {
    background-color: var(--page-slot-games-secondary-color);
    color: var(--page-slot-games-primary-color);
    border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__btn-secondary:hover {
    background-color: lighten(var(--page-slot-games-primary-color), 50%);
    color: var(--page-slot-games-light-text-color);
    border-color: lighten(var(--page-slot-games-primary-color), 50%);
}

.page-slot-games__intro-section,
.page-slot-games__guide-section,
.page-slot-games__tips-section,
.page-slot-games__support-section,
.page-slot-games__conclusion-section {
    background-color: var(--page-slot-games-background-color);
    color: var(--page-slot-games-dark-text-color);
    padding: 60px 0;
}

.page-slot-games__dark-bg {
    background-color: var(--page-slot-games-black-color); /* Using black for sections on dark body background */
    color: var(--page-slot-games-light-text-color);
    padding: 60px 0;
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit;
}

.page-slot-games__dark-bg .page-slot-games__section-title {
    color: var(--page-slot-games-light-text-color);
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-slot-games__text-block a {
    color: var(--page-slot-games-primary-color);
    text-decoration: underline;
}

.page-slot-games__text-block a:hover {
    color: darken(var(--page-slot-games-primary-color), 10%);
}

.page-slot-games__keyword {
    font-weight: bold;
    color: var(--page-slot-games-primary-color);
}

.page-slot-games__dark-bg .page-slot-games__keyword {
    color: lighten(var(--page-slot-games-primary-color), 20%);
}

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

.page-slot-games__feature-card,
.page-slot-games__type-card,
.page-slot-games__step-card,
.page-slot-games__channel-card,
.page-slot-games__security-item {
    background-color: 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);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-slot-games-light-text-color);
}

.page-slot-games__light-bg .page-slot-games__feature-card,
.page-slot-games__light-bg .page-slot-games__type-card,
.page-slot-games__light-bg .page-slot-games__step-card,
.page-slot-games__light-bg .page-slot-games__channel-card {
    background-color: var(--page-slot-games-secondary-color);
    color: var(--page-slot-games-dark-text-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-slot-games__feature-card:hover,
.page-slot-games__type-card:hover,
.page-slot-games__step-card:hover,
.page-slot-games__channel-card:hover,
.page-slot-games__security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.page-slot-games__feature-image,
.page-slot-games__type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-slot-games__feature-title,
.page-slot-games__type-title,
.page-slot-games__step-title,
.page-slot-games__channel-title,
.page-slot-games__security-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: inherit;
}

.page-slot-games__feature-description,
.page-slot-games__type-description,
.page-slot-games__step-description,
.page-slot-games__channel-description,
.page-slot-games__security-description {
    font-size: 1em;
    color: inherit;
}

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

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

.page-slot-games__tips-list li {
    background-color: var(--page-slot-games-secondary-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    color: var(--page-slot-games-dark-text-color);
}

.page-slot-games__dark-bg .page-slot-games__tips-list li {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--page-slot-games-light-text-color);
}

.page-slot-games__tip-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: inherit;
}

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

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

/* FAQ Section */
.page-slot-games__faq-list {
    margin-top: 40px;
}

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

.page-slot-games__light-bg .page-slot-games__faq-item {
    background-color: var(--page-slot-games-secondary-color);
    color: var(--page-slot-games-dark-text-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.page-slot-games__light-bg .page-slot-games__faq-question {
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-slot-games__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-slot-games__light-bg .page-slot-games__faq-question:hover {
    background-color: #f0f0f0;
}

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

.page-slot-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.5;
    color: inherit;
}

.page-slot-games__faq-answer p {
    margin-top: 15px;
    color: inherit;
}

.page-slot-games__faq-answer a {
    color: var(--page-slot-games-primary-color);
    text-decoration: underline;
}

/* Details element specific styling */
details.page-slot-games__faq-item > summary {
    list-style: none;
}
details.page-slot-games__faq-item > summary::-webkit-details-marker {
    display: none;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 3em;
    }
    .page-slot-games__hero-description {
        font-size: 1.2em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-slot-games__container {
        padding: 0 15px;
    }
    .page-slot-games__hero-section {
        padding-bottom: 40px;
    }
    .page-slot-games__hero-content {
        padding: 15px;
    }
    .page-slot-games__hero-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-slot-games__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        padding: 12px 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-slot-games__intro-section,
    .page-slot-games__features-section,
    .page-slot-games__guide-section,
    .page-slot-games__types-section,
    .page-slot-games__tips-section,
    .page-slot-games__security-section,
    .page-slot-games__support-section,
    .page-slot-games__faq-section,
    .page-slot-games__conclusion-section {
        padding: 40px 0;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games__text-block {
        font-size: 0.95em;
    }

    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__feature-card,
    .page-slot-games__type-card,
    .page-slot-games__step-card,
    .page-slot-games__channel-card,
    .page-slot-games__security-item,
    .page-slot-games__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__feature-image,
    .page-slot-games__type-image {
        height: auto;
        min-height: 200px;
    }
    .page-slot-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-slot-games__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-title {
        font-size: 1.8em;
    }
    .page-slot-games__hero-description {
        font-size: 0.9em;
    }
    .page-slot-games__section-title {
        font-size: 1.5em;
    }
}