/* style/slot-games.css */

/* General page styling */
.page-slot-games {
    font-family: Arial, sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
}

/* Container for content sections */
.page-slot-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles */
.page-slot-games__section-title {
    font-size: clamp(2em, 5vw, 2.8em);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
    padding-top: 20px; /* Small top padding */
}

/* Highlighted text */
.page-slot-games__highlight {
    color: #57E38D; /* Glow */
}

/* Text blocks */
.page-slot-games__text-block {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__small-text {
    font-size: 0.9em;
    text-align: center;
    color: #A7D9B8;
}

.page-slot-games__small-text a {
    color: #57E38D;
    text-decoration: underline;
}

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

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-slot-games__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow effect */
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D; /* Glow */
}

.page-slot-games__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1); /* Slight background on hover */
    color: #F2FFF6;
}

.page-slot-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-slot-games__cta-center {
    text-align: center;
    margin-top: 40px;
}

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

.page-slot-games__hero-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.page-slot-games__main-title {
    font-size: clamp(2.5em, 6vw, 3.5em);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-slot-games__description {
    font-size: clamp(1.1em, 2.5vw, 1.3em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Introduction Section */
.page-slot-games__introduction-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E; /* Border */
    border-bottom: 1px solid #2E7A4E; /* Border */
}

/* Game Types Section */
.page-slot-games__game-types-section {
    padding: 60px 0;
}

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

.page-slot-games__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #2E7A4E;
}

.page-slot-games__card-title {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-slot-games__card-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
    flex-grow: 1;
}

/* Guide Section */
.page-slot-games__guide-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E;
    border-bottom: 1px solid #2E7A4E;
}

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

.page-slot-games__step-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #2E7A4E;
}

.page-slot-games__step-icon {
    width: 200px; /* Minimum 200px */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-slot-games__step-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-slot-games__step-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
}

.page-slot-games__step-title a:hover {
    color: #57E38D; /* Glow */
}

.page-slot-games__step-description {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

/* Strategy Section */
.page-slot-games__strategy-section {
    padding: 60px 0;
}

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

.page-slot-games__strategy-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.8;
    position: relative;
    padding-left: 40px;
}

.page-slot-games__strategy-list li strong {
    color: #F2FFF6; /* Text Main */
}

.page-slot-games__strategy-list li::before {
    content: '✓';
    color: #57E38D; /* Glow */
    font-weight: bold;
    position: absolute;
    left: 15px;
    top: 20px;
    font-size: 1.2em;
}


/* Promotions Section */
.page-slot-games__promotions-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E;
    border-bottom: 1px solid #2E7A4E;
}

.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-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #2E7A4E;
}

.page-slot-games__promo-card .page-slot-games__card-image {
    height: 200px; /* Adjusted height for promo images, min 200px */
}

/* Join Us Section */
.page-slot-games__join-us-section {
    padding: 60px 0;
    text-align: center;
}

.page-slot-games__join-us-section .page-slot-games__cta-buttons {
    margin-bottom: 30px;
}

/* FAQ Section */
.page-slot-games__faq-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E;
}

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

.page-slot-games__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #A7D9B8;
}

.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: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B;
    transition: background-color 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-slot-games__faq-question:hover {
    background-color: #1E3A2A; /* Divider */
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
}

.page-slot-games__faq-answer p {
    margin-bottom: 10px;
}

.page-slot-games__faq-answer strong {
    color: #F2FFF6;
}

.page-slot-games__faq-answer a {
    color: #57E38D;
    text-decoration: underline;
}

/* Images and video responsive */
.page-slot-games img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default object-fit for content images */
    filter: none !important; /* Ensure no filter is applied */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-slot-games {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-slot-games__container {
        padding: 0 15px;
    }

    .page-slot-games__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-slot-games__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-slot-games__description {
        font-size: 1em;
    }

    .page-slot-games__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-slot-games__hero-image {
        margin-bottom: 20px;
    }

    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-slot-games__btn-primary,
    .page-slot-games__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-slot-games__game-cards-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-slot-games__game-card,
    .page-slot-games__step-card,
    .page-slot-games__promo-card {
        padding: 20px;
    }

    .page-slot-games__card-image,
    .page-slot-games__step-icon {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }

    .page-slot-games__card-image {
        object-fit: cover;
    }

    .page-slot-games__strategy-list li {
        padding: 15px 15px 15px 40px;
        font-size: 1em;
    }

    .page-slot-games__strategy-list li::before {
        top: 15px;
    }

    .page-slot-games__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-slot-games__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95em;
    }

    /* Universal image responsive for content area */
    .page-slot-games img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* All containing elements for images/videos/buttons on mobile */
    .page-slot-games__section,
    .page-slot-games__card,
    .page-slot-games__container,
    .page-slot-games__hero-section,
    .page-slot-games__introduction-section,
    .page-slot-games__game-types-section,
    .page-slot-games__guide-section,
    .page-slot-games__strategy-section,
    .page-slot-games__promotions-section,
    .page-slot-games__join-us-section,
    .page-slot-games__faq-section,
    .page-slot-games__game-cards-grid,
    .page-slot-games__steps-grid,
    .page-slot-games__promo-grid,
    .page-slot-games__cta-buttons,
    .page-slot-games__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}