.page-casino {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-casino__hero-section {
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using main colors for hero background if needed, or stick to image */
    padding-bottom: 50px; /* Space below content */
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
}

.page-casino__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-casino__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-casino__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF; /* White for hero title */
    margin-bottom: 20px;
}

.page-casino__description {
    font-size: 1.1em;
    color: #E0EFFF; /* Lighter blue for description */
    margin-bottom: 30px;
}

.page-casino__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-casino__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Titles & Descriptions */
.page-casino__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 50px;
}

.page-casino__section-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Game Categories Section */
.page-casino__games-overview-section,
.page-casino__promotions-section,
.page-casino__why-choose-section,
.page-casino__final-cta-section {
    padding: 60px 0;
}

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

.page-casino__game-card,
.page-casino__promo-card {
    background-color: #FFFFFF; /* Card B G */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-casino__game-card:hover,
.page-casino__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__game-card-image,
.page-casino__promo-card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-casino__game-card-title,
.page-casino__promo-card-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    padding: 15px 20px 5px;
}

.page-casino__game-card-title a,
.page-casino__promo-card-title a {
    color: #000000; /* Custom Color_1776249996415 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino__game-card-title a:hover,
.page-casino__promo-card-title a:hover {
    color: #2F6BFF; /* Main color on hover */
}

.page-casino__game-card-description,
.page-casino__promo-card-description {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 15px;
}

.page-casino__read-more {
    display: inline-block;
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: bold;
    padding: 0 20px 20px;
    transition: color 0.3s ease;
}

.page-casino__read-more:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary color on hover */
}

/* Promotions Section */
.page-casino__cta-button--secondary {
    background: none;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
    margin-top: 40px;
}

.page-casino__cta-button--secondary:hover {
    background: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Why Choose Section */
.page-casino__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-casino__benefit-item {
    background-color: #FFFFFF; /* Card B G */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    border: 1px solid #D6E2FF; /* Border color */
    transition: transform 0.3s ease;
}

.page-casino__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-casino__benefit-title {
    font-size: 1.3em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-casino__benefit-description {
    color: #1F2D3D; /* Text Main */
    font-size: 0.95em;
}

/* Final CTA Section */
.page-casino__final-cta-section {
    text-align: center;
    background-color: #EBF2FF; /* A lighter shade for contrast */
    padding: 80px 20px;
    border-top: 1px solid #D6E2FF;
}

.page-casino__final-cta-section .page-casino__section-title {
    padding-top: 0;
}

.page-casino__final-cta-section .page-casino__cta-button {
    margin: 15px 10px;
}

.page-casino__cta-button--outline {
    background: none;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
}

.page-casino__cta-button--outline:hover {
    background: #2F6BFF;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .page-casino__main-title {
        font-size: 2.5em;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-casino__container {
        padding: 15px;
    }
    .page-casino__main-title {
        font-size: 2em; /* Clamp-like behavior */
    }
    .page-casino__description {
        font-size: 1em;
    }
    .page-casino__section-title {
        font-size: 1.5em;
        padding-top: 30px;
    }
    .page-casino__section-description {
        margin-bottom: 30px;
    }
    .page-casino__game-card-image,
    .page-casino__promo-card-image {
        height: 180px; /* Adjust height for smaller screens */
    }

    /* Enforce max-width for images to prevent overflow */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }

    .page-casino__cta-button {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-casino__final-cta-section .page-casino__cta-button {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-casino__main-title {
        font-size: 1.8em;
    }
    .page-casino__section-title {
        font-size: 1.3em;
    }
    .page-casino__game-categories,
    .page-casino__promo-cards,
    .page-casino__benefits-list {
        grid-template-columns: 1fr;
    }
}

/* Ensure all images within .page-casino are at least 200px and responsive */
.page-casino img {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%; /* Important for responsiveness */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Specific override for hero image to ensure it doesn't shrink below 200px visually, but max-width: 100% still applies */
.page-casino__hero-image {
    min-width: unset; /* Hero image can be wider than 200px */
    min-height: unset; /* Hero image can be taller than 200px */
}