/* style/slot-games.css */

/* Custom Colors */
:root {
    --page-slot-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-slot-games-card-bg: #11271B;
    --page-slot-games-background: #08160F;
    --page-slot-games-text-main: #F2FFF6;
    --page-slot-games-text-secondary: #A7D9B8;
    --page-slot-games-border: #2E7A4E;
    --page-slot-games-glow: #57E38D;
    --page-slot-games-gold: #F2C14E;
    --page-slot-games-divider: #1E3A2A;
    --page-slot-games-deep-green: #0A4B2C;
}

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

.page-slot-games__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(8, 22, 15, 0.8);
    border-radius: 10px;
    margin-top: -80px; /* Pull up slightly over the image for visual flow */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-slot-games__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    color: var(--page-slot-games-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-slot-games__btn-primary {
    background: var(--page-slot-games-button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-slot-games__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

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

.page-slot-games__btn-secondary:hover {
    background: var(--page-slot-games-border);
    color: var(--page-slot-games-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-slot-games__btn-primary--center,
.page-slot-games__btn-secondary--center {
    display: block;
    margin: 30px auto;
    max-width: 300px;
}

.page-slot-games__section {
    padding: 60px 0;
}

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

.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: var(--page-slot-games-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-slot-games__sub-title {
    font-size: 1.8em;
    color: var(--page-slot-games-text-main);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    color: var(--page-slot-games-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-slot-games__text-block a:hover {
    color: var(--page-slot-games-gold);
}

.page-slot-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-slot-games__content-image--center {
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__image-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-slot-games__image-content-wrapper .page-slot-games__content-image {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.page-slot-games__text-content {
    flex: 1;
}

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

.page-slot-games__card {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: var(--page-slot-games-text-main);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-slot-games__card-description {
    font-size: 1em;
    line-height: 1.6;
    flex-grow: 1;
}

.page-slot-games__card--promo .page-slot-games__btn-primary {
    margin-top: 20px;
    width: auto;
    align-self: center;
}

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

.page-slot-games__step-item {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-slot-games__step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--page-slot-games-button-gradient);
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-slot-games__step-title {
    font-size: 1.6em;
    color: var(--page-slot-games-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-slot-games__step-item p {
    color: var(--page-slot-games-text-secondary);
    font-size: 1em;
    line-height: 1.6;
}

.page-slot-games__step-item a {
    color: var(--page-slot-games-glow);
    text-decoration: underline;
}

.page-slot-games__step-item a:hover {
    color: var(--page-slot-games-gold);
}

.page-slot-games__list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: var(--page-slot-games-text-secondary);
}

.page-slot-games__list li {
    background-color: var(--page-slot-games-card-bg);
    border-left: 5px solid var(--page-slot-games-glow);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.1em;
    line-height: 1.7;
}

.page-slot-games__list li strong {
    color: var(--page-slot-games-text-main);
}

.page-slot-games__list--two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 769px) {
    .page-slot-games__list--two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.page-slot-games__section--faq {
    padding-bottom: 80px;
}

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

.page-slot-games__faq-item {
    background-color: var(--page-slot-games-card-bg);
    border: 1px solid var(--page-slot-games-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--page-slot-games-deep-green);
    color: var(--page-slot-games-text-main);
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 1px solid var(--page-slot-games-divider);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none; /* For details/summary */
}

.page-slot-games__faq-question:hover {
    background-color: #114d2e;
}

.page-slot-games__faq-qtext {
    flex-grow: 1;
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--page-slot-games-glow);
}

.page-slot-games__faq-answer {
    padding: 20px 25px;
    background-color: var(--page-slot-games-card-bg);
    color: var(--page-slot-games-text-secondary);
    font-size: 1em;
    line-height: 1.7;
}

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

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

.page-slot-games__faq-answer a:hover {
    color: var(--page-slot-games-gold);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__hero-content {
        margin-top: -50px;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__sub-title {
        font-size: 1.5em;
    }
    .page-slot-games__image-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-slot-games__image-content-wrapper .page-slot-games__content-image {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-slot-games__hero-section {
        padding-top: 10px !important;
    }
    .page-slot-games__hero-content {
        padding: 30px 15px;
        margin-top: -30px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-slot-games__hero-description {
        font-size: 1em;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-slot-games__section {
        padding: 40px 0;
    }
    .page-slot-games__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-slot-games__sub-title {
        font-size: 1.3em;
    }
    .page-slot-games__text-block,
    .page-slot-games__list li,
    .page-slot-games__card-description,
    .page-slot-games__step-item p,
    .page-slot-games__faq-answer p {
        font-size: 0.95em;
    }
    .page-slot-games__card {
        padding: 20px;
    }
    .page-slot-games__card-image {
        height: 180px;
    }
    .page-slot-games__card-title {
        font-size: 1.3em;
    }
    .page-slot-games__step-title {
        font-size: 1.4em;
    }
    .page-slot-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    /* Image responsiveness for mobile */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Ensure containers for images/content also adapt */
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__hero-image-wrapper,
    .page-slot-games__image-content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-slot-games__hero-section {
        overflow: hidden !important;
    }
    .page-slot-games__cta-buttons--center {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-slot-games__hero-content {
        margin-top: -20px;
        padding: 20px 10px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-slot-games__section-title {
        font-size: 1.5em;
    }
    .page-slot-games__cta-buttons {
        gap: 10px;
    }
    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        font-size: 0.95em;
        padding: 10px 15px;
    }
    .page-slot-games__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-slot-games__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-slot-games__faq-toggle {
        font-size: 1.2em;
    }
    .page-slot-games__faq-answer {
        padding: 15px;
    }
}