/* style/slot-games.css */

/* Custom Color Variables */
:root {
    --page-slot-games-primary-color: #11A84E;
    --page-slot-games-secondary-color: #22C768;
    --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-color: #2E7A4E;
    --page-slot-games-glow-color: #57E38D;
    --page-slot-games-gold-color: #F2C14E;
    --page-slot-games-divider-color: #1E3A2A;
    --page-slot-games-deep-green: #0A4B2C;
}

/* Base styles for the page content area */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--page-slot-games-text-main); /* Default text color for the main content area */
    background-color: var(--page-slot-games-background); /* Default background color for the main content area */
}

.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px; /* Small top padding for hero section, body handles header offset */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow from image */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex; /* Added for image centering/sizing if needed */
    justify-content: center;
    align-items: center;
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image covers the area, cropping if necessary */
    min-height: 300px; /* Minimum height for hero image */
}

.page-slot-games__hero-content {
    max-width: 900px;
    margin-top: 40px; /* Space below the hero image */
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.page-slot-games__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    color: var(--page-slot-games-gold-color);
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Subtle glow */
}

.page-slot-games__hero-description {
    font-size: 1.2em;
    color: var(--page-slot-games-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--page-slot-games-button-gradient);
    color: var(--page-slot-games-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure button adapts to mobile */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-slot-games__cta-button--small {
    padding: 12px 25px;
    font-size: 1em;
}

.page-slot-games__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-slot-games__section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--page-slot-games-background);
    border-bottom: 1px solid var(--page-slot-games-divider-color);
}

.page-slot-games__section:last-of-type {
    border-bottom: none;
}

.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-gold-color);
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

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

.page-slot-games__text-block {
    font-size: 1.1em;
    color: var(--page-slot-games-text-secondary);
    margin-bottom: 20px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-slot-games__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 900px;
    text-align: left;
}

.page-slot-games__list-item {
    font-size: 1.1em;
    color: var(--page-slot-games-text-secondary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-slot-games__list-item::before {
    content: '•';
    color: var(--page-slot-games-gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-slot-games__ordered-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px auto;
    max-width: 900px;
    text-align: left;
    counter-reset: step-counter;
}

.page-slot-games__ordered-list .page-slot-games__list-item {
    counter-increment: step-counter;
    padding-left: 40px;
    margin-bottom: 25px;
}

.page-slot-games__ordered-list .page-slot-games__list-item::before {
    content: counter(step-counter);
    background-color: var(--page-slot-games-gold-color);
    color: var(--page-slot-games-deep-green);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1em;
    left: 0;
    top: 0;
}

.page-slot-games__ordered-list .page-slot-games__list-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.page-slot-games__image-wrapper {
    margin: 40px auto;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* FAQ section */
.page-slot-games__faq {
    background-color: var(--page-slot-games-card-bg);
}

.page-slot-games__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-slot-games__faq-item {
    background-color: var(--page-slot-games-deep-green);
    border: 1px solid var(--page-slot-games-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-slot-games__faq-item[open] {
    background-color: var(--page-slot-games-deep-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-slot-games-text-main);
    user-select: none;
    position: relative;
    list-style: none; /* For <summary> */
}

.page-slot-games__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for <summary> */
}

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--page-slot-games-gold-color);
    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: 0 25px 20px 25px;
    font-size: 1.05em;
    color: var(--page-slot-games-text-secondary);
    text-align: left;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-slot-games__main-title {
        font-size: clamp(1.8em, 6vw, 3em);
    }
    .page-slot-games__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__sub-title {
        font-size: 1.6em;
    }
    .page-slot-games__text-block,
    .page-slot-games__list-item,
    .page-slot-games__faq-question,
    .page-slot-games__faq-answer {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 10px 15px; /* Small top padding for hero section on mobile */
    }
    .page-slot-games__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.5em, 8vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-slot-games__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-slot-games__cta-button {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-slot-games__cta-button--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    .page-slot-games__section {
        padding: 40px 0;
    }
    .page-slot-games__container {
        padding: 0 15px;
        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.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-slot-games__text-block,
    .page-slot-games__list-item,
    .page-slot-games__faq-answer p {
        font-size: 0.95em;
    }
    .page-slot-games__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-slot-games__list-item {
        padding-left: 20px;
    }
    .page-slot-games__list-item::before {
        font-size: 1em;
        top: 2px;
    }
    .page-slot-games__ordered-list .page-slot-games__list-item {
        padding-left: 35px;
    }
    .page-slot-games__ordered-list .page-slot-games__list-item::before {
        width: 24px;
        height: 24px;
        font-size: 0.9em;
    }

    /* Images responsive */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-slot-games__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0; /* Remove border-radius on mobile for full width */
    }
    .page-slot-games__content-image {
        border-radius: 0;
    }

    /* Video responsive (if applicable, though not used in this page content) */
    .page-slot-games video,
    .page-slot-games__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-slot-games__video-section,
    .page-slot-games__video-container,
    .page-slot-games__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-slot-games__video-section {
      padding-top: 10px !important; /* body handles --header-offset, this is for aesthetic spacing */
    }
    .page-slot-games__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsive */
    .page-slot-games__cta-buttons,
    .page-slot-games__button-group,
    .page-slot-games__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px; /* If multiple buttons */
    }
    .page-slot-games__cta-buttons {
      display: flex;
      flex-direction: column; /* Stack buttons vertically on mobile */
    }
}

/* Contrast Fixes (as per prompt for safety) */
.page-slot-games__dark-bg {
  color: #ffffff; /* Deep Green/Card BG as dark background */
}

.page-slot-games__light-bg {
  color: #333333; /* Not explicitly used as main BG, but for any light cards */
}

.page-slot-games__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-slot-games__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}

/* Ensure no filter is used on images */
.page-slot-games img {
    filter: none !important;
}