.page-casino {
    color: #333333; /* Dark text for default light body background */
}

.page-casino__hero-section {
    position: relative;
    width: 100%;
    min-height: 550px; /* Minimum height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
    overflow: hidden;
}

.page-casino__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken image for better text readability */
}

.page-casino__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.page-casino__hero-content {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFB300; /* Gold for title */
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-casino__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-casino__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
}

.page-casino__button--primary {
    background-color: #E44D26; /* Main color */
    color: #ffffff;
    border: 2px solid #E44D26;
}

.page-casino__button--primary:hover {
    background-color: #c93a1c;
    border-color: #c93a1c;
    transform: translateY(-2px);
}

.page-casino__button--secondary {
    background-color: transparent;
    color: #FFB300; /* Auxiliary color */
    border: 2px solid #FFB300;
}

.page-casino__button--secondary:hover {
    background-color: #FFB300;
    color: #333333;
    transform: translateY(-2px);
}

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

.page-casino__section-title {
    font-size: 2.8em;
    color: #E44D26; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-casino__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFB300; /* Auxiliary color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-casino__section-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #555555;
}

.page-casino__about-section {
    background-color: #f8f8f8;
}

.page-casino__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-casino__feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-casino__feature-title {
    font-size: 1.8em;
    color: #E44D26;
    margin-bottom: 15px;
}

.page-casino__feature-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.page-casino__feature-link {
    color: #FFB300;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-casino__feature-link:hover {
    color: #e69a00;
    text-decoration: underline;
}

.page-casino__games-section {
    background-color: #ffffff;
}

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

.page-casino__category-card {
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.page-casino__category-card h3 {
    font-size: 1.6em;
    color: #E44D26;
    margin: 20px 15px 10px;
}

.page-casino__category-description {
    font-size: 0.95em;
    color: #777777;
    line-height: 1.5;
    padding: 0 20px 20px;
}

.page-casino__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.page-casino__more-games {
    text-align: center;
    margin-top: 40px;
    background-color: #fefefe;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.page-casino__subtitle {
    font-size: 2em;
    color: #E44D26;
    margin-bottom: 20px;
}

.page-casino__text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-casino__game-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    max-width: 700px;
}

.page-casino__game-list li {
    font-size: 1.1em;
}

.page-casino__list-link {
    color: #FFB300;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-casino__list-link:hover {
    color: #e69a00;
    text-decoration: underline;
}

.page-casino__getting-started-section {
    background-color: #f2f2f2;
    padding: 80px 0;
}

.page-casino__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-casino__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__step-title {
    font-size: 1.8em;
    color: #E44D26;
    margin-bottom: 15px;
}

.page-casino__step-text {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.page-casino__responsible-gaming-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-casino__responsible-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-casino__responsible-image {
    flex: 1 1 400px;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-casino__responsible-text-content {
    flex: 1 1 400px;
}

.page-casino__responsible-text-content .page-casino__subtitle {
    text-align: left;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.page-casino__responsible-text-content .page-casino__text {
    text-align: left;
    margin: 0 0 30px;
}

.page-casino__faq-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.page-casino__faq-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.page-casino__faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-casino__faq-question {
    font-size: 1.4em;
    color: #E44D26;
    margin-bottom: 10px;
}

.page-casino__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-casino__contact-prompt {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #666666;
}

.page-casino__link {
    color: #FFB300;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-casino__link:hover {
    color: #e69a00;
    text-decoration: underline;
}

.page-casino__cta-section {
    background-color: #E44D26; /* Main color background */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-casino__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFB300; /* Auxiliary color for title */
}

.page-casino__cta-description {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-casino__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-color: #FFB300;
    background-color: #FFB300;
    color: #E44D26;
}

.page-casino__button--large:hover {
    background-color: #e69a00;
    border-color: #e69a00;
    color: #E44D26;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-casino__hero-title {
        font-size: 3em;
    }
    .page-casino__section-title {
        font-size: 2.2em;
    }
    .page-casino__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-casino__hero-section {
        min-height: 450px;
    }
    .page-casino__hero-title {
        font-size: 2.5em;
    }
    .page-casino__hero-description {
        font-size: 1.1em;
    }
    .page-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-casino__section-title {
        font-size: 2em;
    }
    .page-casino__section-intro {
        font-size: 1em;
    }
    .page-casino__features-grid, .page-casino__game-categories, .page-casino__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-casino__responsible-content {
        flex-direction: column;
    }
    .page-casino__responsible-text-content .page-casino__subtitle {
        text-align: center;
    }
    .page-casino__responsible-text-content .page-casino__text {
        text-align: center;
    }
    .page-casino__responsible-image {
        max-width: 100%;
        width: 100%;
    }
    .page-casino__cta-title {
        font-size: 2em;
    }
    .page-casino__cta-description {
        font-size: 1.2em;
    }
    /* Ensure content images do not overflow */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
    .page-casino {
        overflow-x: hidden;
    }
    .page-casino__game-list {
        flex-direction: column;
        align-items: center;
    }
    .page-casino__game-list li {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-section {
        min-height: 400px;
        padding: 40px 15px;
    }
    .page-casino__hero-title {
        font-size: 2em;
    }
    .page-casino__hero-description {
        font-size: 0.95em;
    }
    .page-casino__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-casino__section-title {
        font-size: 1.8em;
    }
    .page-casino__feature-title, .page-casino__step-title, .page-casino__category-card h3 {
        font-size: 1.5em;
    }
    .page-casino__cta-title {
        font-size: 1.8em;
    }
    .page-casino__cta-description {
        font-size: 1em;
    }
    .page-casino__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* All images within .page-casino must be at least 200px wide/high */
.page-casino img:not(.shared-logo, .shared-icon) {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensure images fill their space without distorting */
}

/* Override specific image sizes if they were set smaller than 200px, ensure minimum */
.page-casino__category-image {
    height: 250px; /* Example, ensure it's >= 200px */
}

.page-casino__responsible-image {
    min-width: 300px;
    min-height: 225px;
}

/* No filter properties to change image colors */
.page-casino img {
    filter: none; /* Explicitly ensure no color-altering filters */
}