.page-casino {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-casino__hero-section {
    position: relative;
    width: 100%;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background-color: #000000; /* Dark background for hero */
    overflow: hidden;
}

.page-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7;
}

.page-casino__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    width: 90%;
    padding: 20px;
    z-index: 10;
}

.page-casino__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

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

.page-casino__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-casino__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-casino__button--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-casino__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-casino__button--cta {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-casino__button--cta:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-casino__button--small {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.9em;
    border: 1px solid #000000;
}

.page-casino__button--small:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-casino__button--join-now {
    background-color: #FCBC45;
    color: #000000;
    padding: 20px 40px;
    font-size: 1.3em;
    border: 2px solid #FCBC45;
}

.page-casino__button--join-now:hover {
    background-color: transparent;
    color: #FCBC45;
    border-color: #FCBC45;
}

.page-casino__button--text {
    background: none;
    color: #000000;
    padding: 0;
    border: none;
    text-decoration: underline;
    font-size: 1em;
}

.page-casino__button--text:hover {
    color: #FCBC45;
}

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

.page-casino__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-casino__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-casino__section-paragraph {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.page-casino__about-section,
.page-casino__games-section,
.page-casino__promotions-section,
.page-casino__start-section,
.page-casino__detail-pages-section,
.page-casino__responsible-gaming-section,
.page-casino__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-casino__games-section,
.page-casino__start-section {
    background-color: #F8F8F8;
}

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

.page-casino__category-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-casino__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-casino__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-casino__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-casino__card-title a:hover {
    color: #FCBC45;
}

.page-casino__card-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-casino__promotions-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-casino__step-card:hover {
    transform: translateY(-5px);
}

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

.page-casino__step-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
}

.page-casino__detail-page-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.page-casino__detail-page-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-casino__detail-page-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-casino__detail-page-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-casino__detail-page-title a {
    text-decoration: none;
    color: inherit;
}

.page-casino__detail-page-title a:hover {
    color: #FCBC45;
}

.page-casino__detail-page-description {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 15px;
}

.page-casino__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-casino__cta-section .page-casino__section-title {
    color: #FFFFFF;
}

.page-casino__cta-section .page-casino__section-title::after {
    background-color: #FCBC45;
}

.page-casino__cta-section .page-casino__section-paragraph {
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-casino__hero-title {
        font-size: 2.8em;
    }
    .page-casino__hero-description {
        font-size: 1.1em;
    }
    .page-casino__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-casino__hero-section {
        padding-top: var(--header-offset, 80px);
        padding: 40px 15px;
    }
    .page-casino__hero-content {
        width: 95%;
        padding: 15px;
    }
    .page-casino__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-casino__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-casino__content-area {
        padding: 30px 15px;
    }
    .page-casino__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-casino__section-paragraph {
        font-size: 0.95em;
    }
    .page-casino__category-image,
    .page-casino__promotions-image {
        max-width: 100%;
        height: auto;
    }
    .page-casino__game-categories,
    .page-casino__steps {
        grid-template-columns: 1fr;
    }
    .page-casino__category-image {
        height: 250px; /* Ensure images are not too small */
    }
    .page-casino__category-card,
    .page-casino__step-card,
    .page-casino__detail-page-item {
        padding: 20px;
    }
    .page-casino__cta-section {
        padding: 60px 15px;
    }
    .page-casino__button--join-now {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-title {
        font-size: 1.5em;
    }
    .page-casino__hero-description {
        font-size: 0.9em;
    }
    .page-casino__section-title {
        font-size: 1.5em;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-casino__category-image,
.page-casino__promotions-image {
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule for img tags directly under page-casino context, to prevent small icons */
.page-casino img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure CSS width/height for images are consistent with HTML or responsive */
.page-casino__hero-image {
    width: 100%;
    height: auto;
}

.page-casino__category-image {
    max-width: 100%;
    height: auto;
}

.page-casino__promotions-image {
    max-width: 100%;
    height: auto;
}

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