.page-slot-games {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default dark text on light body background */
    background-color: #ffffff;
}

.page-slot-games__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff; /* Light text on dark background */
    text-align: center;
    overflow: hidden;
    padding-bottom: 60px; /* Add some padding at the bottom */
}

.page-slot-games__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-slot-games__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-slot-games__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.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;
    opacity: 0.3; /* Subtle background image */
    display: block;
}

.page-slot-games__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on small 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;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't overflow */
}

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

.page-slot-games__btn-primary:hover {
    background-color: #d46f06;
    border-color: #d46f06;
}

.page-slot-games__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0; /* Primary brand color */
    border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

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

.page-slot-games__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Primary brand color */
}

.page-slot-games__intro-section,
.page-slot-games__registration-guide,
.page-slot-games__strategy-section,
.page-slot-games__faq-section {
    padding: 80px 0;
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text */
}

.page-slot-games__benefits-section,
.page-slot-games__game-types-section,
.page-slot-games__promotions-section,
.page-slot-games__conclusion-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-slot-games__benefits-section .page-slot-games__section-title,
.page-slot-games__game-types-section .page-slot-games__section-title,
.page-slot-games__promotions-section .page-slot-games__section-title,
.page-slot-games__conclusion-section .page-slot-games__section-title {
    color: #ffffff;
}

.page-slot-games__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-slot-games__grid--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-slot-games__card {
    background-color: #ffffff; /* Card background */
    color: #333333; /* Card text color */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px; /* Ensure cards have consistent height */
    box-sizing: border-box;
}

.page-slot-games__benefits-section .page-slot-games__card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
    color: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games__benefits-section .page-slot-games__card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);;
}

.page-slot-games__card-image {
    width: 100%;
    max-width: 400px; /* Max width for card images */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0; /* Primary brand color for titles */
}

.page-slot-games__benefits-section .page-slot-games__card-title {
    color: #ffffff;
}

.page-slot-games__card-text {
    font-size: 1em;
    text-align: justify;
    flex-grow: 1; /* Allow text to take available space */
}

.page-slot-games__list-item {
    background-color: #f9f9f9;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-slot-games__list-text {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-slot-games__registration-guide .page-slot-games__list-item {
    list-style: decimal;
    margin-left: 20px;
}

.page-slot-games__strategy-list .page-slot-games__list-item {
    list-style: disc;
    margin-left: 20px;
}

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

.page-slot-games__promotion-card {
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white on dark bg */
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.page-slot-games__promotion-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.25);
}

.page-slot-games__promotion-image {
    width: 100%;
    max-width: 500px;
    height: 280px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-slot-games__promotion-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-slot-games__promotion-text {
    font-size: 1em;
    text-align: justify;
    flex-grow: 1;
}

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

.page-slot-games__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.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: #26A9E0;
    cursor: pointer;
    background-color: #e0f7fa; /* Light background for question */
    border-bottom: 1px solid #c0e6ea;
    list-style: none; /* For details/summary */
}

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

.page-slot-games__faq-item[open] > .page-slot-games__faq-question {
    border-bottom: 1px solid #a0d8e2;
}

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

.page-slot-games__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    line-height: 1;
}

.page-slot-games__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-slot-games__conclusion-section {
    text-align: center;
}

.page-slot-games__conclusion-section .page-slot-games__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

/* General image styling to prevent small icons */
.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space */
}

/* Links in content */
.page-slot-games a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-slot-games a:hover {
    text-decoration: underline;
}

.page-slot-games__benefits-section a,
.page-slot-games__promotions-section a,
.page-slot-games__conclusion-section a {
    color: #ffffff;
}

.page-slot-games__benefits-section a:hover,
.page-slot-games__promotions-section a:hover,
.page-slot-games__conclusion-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-slot-games__hero-title {
        font-size: 3em;
    }
    .page-slot-games__hero-description {
        font-size: 1.2em;
    }
    .page-slot-games__section-title {
        font-size: 2em;
    }
    .page-slot-games__grid--two-columns {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-slot-games__hero-section {
        min-height: 500px;
        padding-bottom: 40px;
    }
    .page-slot-games__hero-title {
        font-size: 2.5em;
    }
    .page-slot-games__hero-description {
        font-size: 1.1em;
    }
    .page-slot-games__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}