/* style/slot-games.css */

/* Base styles for the page content */
.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0d0d0d; /* Matching body background */
}

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

/* Section styling */
.page-slot-games__hero-section,
.page-slot-games__introduction-section,
.page-slot-games__types-section,
.page-slot-games__benefits-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__security-section,
.page-slot-games__download-section,
.page-slot-games__video-section,
.page-slot-games__faq-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    text-align: center;
}

/* Fixed header offset */
.page-slot-games__hero-section {
    padding-top: var(--header-offset, 120px);
}

/* Background colors based on body background */
.page-slot-games__dark-bg {
    background-color: #0d0d0d;
    color: #ffffff;
}

.page-slot-games__light-bg {
    background-color: #ffffff;
    color: #333333;
}

/* Titles */
.page-slot-games__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #26A9E0; /* Brand color for section titles */
}

.page-slot-games__sub-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-slot-games__list-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-slot-games__card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #26A9E0;
}

/* Paragraphs */
.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-slot-games__text-block--small {
    font-size: 0.9em;
}

/* Links within text */
.page-slot-games__text-block a {
    color: #26A9E0;
    text-decoration: underline;
}
.page-slot-games__text-block a:hover {
    color: #1a7bb0;
}

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

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

.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;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box; /* Ensure padding doesn't push it out */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure it doesn't overflow */
}

.page-slot-games__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-slot-games__btn-primary:hover {
    background-color: #d16e06;
    border-color: #d16e06;
    transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Section */
.page-slot-games__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text readability */
    border-radius: 10px;
    margin-bottom: 40px;
}

.page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-slot-games__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken background image for text contrast */
}

/* Image Grid/Wrapper */
.page-slot-games__image-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-slot-games__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__list-item {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.page-slot-games__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #26A9E0;
    font-size: 1.2em;
    top: 0;
}

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

.page-slot-games__numbered-list .page-slot-games__list-item {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}

.page-slot-games__numbered-list .page-slot-games__list-item::before {
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    left: 0;
    color: #26A9E0;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

/* Cards */
.page-slot-games__benefits-grid,
.page-slot-games__promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-slot-games__card {
    background-color: #222222; /* Slightly lighter dark background for cards on dark sections */
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    height: 100%; /* Ensure cards in a grid have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-slot-games__card.page-slot-games__light-bg {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.page-slot-games__card:hover {
    transform: translateY(-5px);
}

.page-slot-games__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

/* Download Section */
.page-slot-games__download-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    max-width: 1000px;
    margin: 40px auto 0;
}

.page-slot-games__download-text {
    flex: 1;
}

.page-slot-games__download-image-wrapper {
    flex: 0 0 auto;
    width: 400px; /* Fixed width for desktop */
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.page-slot-games__download-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}