/* style/slot-games.css */

/* Custom properties for colors */
:root {
    --bg-primary: #08160F; /* Background */
    --bg-card: #11271B; /* Card BG */
    --text-main: #F2FFF6; /* Text Main */
    --text-secondary: #A7D9B8; /* Text Secondary */
    --brand-primary: #11A84E; /* Main color */
    --brand-secondary: #22C768; /* Auxiliary color */
    --btn-gradient-start: #2AD16F;
    --btn-gradient-end: #13994A;
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */
}

.page-slot-games {
    background-color: var(--bg-primary); /* Apply background color */
    color: var(--text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
    background-color: var(--bg-primary);
    overflow: hidden; /* Ensure no overflow from images */
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and text */
}

.page-slot-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-slot-games__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-slot-games__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font size constraint */
    color: var(--gold-color); /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-slot-games__description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile button responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
}

.page-slot-games__btn-primary {
    background: linear-gradient(180deg, var(--btn-gradient-start) 0%, var(--btn-gradient-end) 100%);
    color: var(--text-main); /* White text on green gradient */
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.page-slot-games__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.page-slot-games__btn-secondary {
    background: transparent;
    color: var(--gold-color); /* Gold text */
    border: 2px solid var(--gold-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-slot-games__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--bg-primary); /* Dark text on gold hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* General Section Styling */
.page-slot-games__section {
    padding: 60px 20px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--divider-color);
}

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

.page-slot-games__container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px; /* Inner padding for desktop, ensures content isn't flush */
}

.page-slot-games__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.page-slot-games__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--brand-secondary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-slot-games__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

.page-slot-games__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

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

.page-slot-games__list-item::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--glow-color);
}

.page-slot-games__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-slot-games__ordered-list .page-slot-games__list-item {
    padding-left: 0;
}

.page-slot-games__ordered-list .page-slot-games__list-item::before {
    content: none; /* Remove checkmark for ordered list */
}

.page-slot-games__nested-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.page-slot-games__nested-list .page-slot-games__list-item::before {
    content: none;
}

/* Image Wrapper for Content Images */
.page-slot-games__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

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

/* FAQ Section */
.page-slot-games__faq-section {
    background-color: var(--bg-card); /* Card BG for FAQ section */
    padding: 60px 20px;
}

.page-slot-games__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-slot-games__faq-item {
    background-color: var(--deep-green); /* Darker green for FAQ item */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.page-slot-games__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

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

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

.page-slot-games__faq-question::marker {
    display: none; /* Hide default marker for other browsers */
}

.page-slot-games__faq-question:hover {
    background-color: var(--divider-color); /* Slightly lighter on hover */
}

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

.page-slot-games__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
    content: '−'; /* Change to minus when open */
}

.page-slot-games__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    background-color: var(--bg-card); /* Card BG for answer content */
    border-top: 1px solid var(--divider-color);
}

.page-slot-games__faq-answer p {
    margin-top: 20px;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-section {
        padding: 10px 15px 50px;
    }
    .page-slot-games__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-slot-games__description {
        font-size: 1.1rem;
    }
    .page-slot-games__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-slot-games__sub-title {
        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    }
    .page-slot-games__list-item,
    .page-slot-games__text-block,
    .page-slot-games__faq-question,
    .page-slot-games__faq-answer {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        padding: 10px 15px 40px;
    }
    .page-slot-games__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-slot-games__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}