/* style/slot-games.css */

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

.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color for the page content */
    background-color: var(--bg-primary); /* Assuming body background is dark */
}

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

.page-slot-games__section-title {
    font-size: clamp(2em, 4vw, 2.8em); /* H1 font size constraint */
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-slot-games__sub-title {
    font-size: clamp(1.5em, 3vw, 2em);
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.page-slot-games__paragraph .highlight {
    color: var(--gold-color);
    font-weight: bold;
}

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

.page-slot-games__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-slot-games__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--glow-color);
}

/* Buttons */
.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: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 100%;
}

.page-slot-games__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff; /* White text for primary button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-slot-games__btn-secondary:hover {
    background: var(--glow-color);
    color: var(--bg-primary); /* Dark text on glow background */
}

.page-slot-games__large-btn {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

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

/* Sections */
.page-slot-games__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-primary); /* Consistent with theme */
    overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

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

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

.page-slot-games__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-slot-games__introduction-section,
.page-slot-games__guide-section,
.page-slot-games__mobile-section {
    background-color: var(--bg-primary); /* Ensuring dark background */
    padding: 80px 0;
}

.page-slot-games__types-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
    background-color: var(--bg-card); /* Darker card background */
    padding: 80px 0;
}

.page-slot-games__deep-green-bg {
    background-color: var(--deep-green);
    padding: 80px 0;
}

/* Image + Text Block */
.page-slot-games__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-slot-games__image-text-block img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    display: block;
}

.page-slot-games__text-content {
    flex: 1;
    min-width: 300px;
}

.page-slot-games__reverse-layout {
    flex-direction: row-reverse; /* For mobile section */
}

/* Game Grid / Promo Grid */
.page-slot-games__game-grid,
.page-slot-games__promo-grid,
.page-slot-games__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__game-card,
.page-slot-games__promo-card,
.page-slot-games__step-card {
    background-color: var(--bg-card); /* Card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    color: var(--text-main);
    border: 1px solid var(--border-color); /* Added border */
}

.page-slot-games__game-card .page-slot-games__card-image,
.page-slot-games__promo-card .page-slot-games__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.page-slot-games__step-card {
    padding: 30px;
    background-color: var(--deep-green); /* Different bg for steps */
}

.page-slot-games__card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    padding: 0 15px;
}

.page-slot-games__card-description {
    font-size: 1em;
    color: var(--text-secondary);
    padding: 0 15px 20px;
    flex-grow: 1; /* Push button to bottom */
}

.page-slot-games__game-card .page-slot-games__btn-secondary,
.page-slot-games__promo-card .page-slot-games__btn-secondary {
    margin: 0 auto;
    width: fit-content;
    padding: 10px 25px;
}

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