.page-casino {
    padding-top: 10px; /* Minimal top padding, body handles header offset */
    background-color: #140C0C; /* Background color */
    color: #FFF1E8; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

.page-casino__hero-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Image then text */
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.page-casino__hero-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: none; /* Ensure no filter */
}

.page-casino__hero-content {
    text-align: center;
    max-width: 800px;
}

.page-casino__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Adjusted H1 font size */
    font-weight: 700;
    color: #F3C54D; /* Gold color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-casino__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
}

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

.page-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    min-width: 150px;
}

.page-casino__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #140C0C; /* Dark text for gold button */
    border: none;
}

.page-casino__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 176, 74, 0.4);
}

.page-casino__btn--secondary {
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-casino__btn--secondary:hover {
    background-color: #C61F1F; /* Main color on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(126, 13, 13, 0.4);
}

.page-casino__btn--small {
    padding: 8px 15px;
    font-size: 0.9rem;
    min-width: unset;
}

.page-casino__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #F3C54D; /* Gold color */
    text-align: center;
    margin: 60px auto 20px auto;
    max-width: 900px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-casino__section-description {
    font-size: 1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #FFF1E8;
}

.page-casino__games-overview,
.page-casino__features,
.page-casino__promotions,
.page-casino__faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

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

.page-casino__game-card,
.page-casino__promotion-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

.page-casino__game-card:hover,
.page-casino__promotion-card:hover {
    transform: translateY(-5px);
}

.page-casino__game-card img,
.page-casino__promotion-card img {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    filter: none; /* Ensure no filter */
    min-height: 200px; /* Ensure min size */
}

.page-casino__card-title {
    font-size: 1.3rem;
    color: #F3C54D; /* Gold color */
    margin: 0 15px 10px 15px;
}

.page-casino__card-title a {
    color: #F3C54D; /* Gold color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-casino__card-title a:hover {
    color: #FFB04A; /* Lighter gold on hover */
}

.page-casino__card-text {
    font-size: 0.95rem;
    color: #FFF1E8;
    margin: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-casino__features {
    padding-top: 60px;
}

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

.page-casino__feature-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-casino__feature-title {
    font-size: 1.25rem;
    color: #FFB04A; /* Gold gradient start color */
    margin-bottom: 10px;
}

.page-casino__feature-description {
    font-size: 0.95rem;
    color: #FFF1E8;
}

.page-casino__promotions {
    padding-top: 60px;
}

.page-casino__promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-casino__cta-full-width {
    text-align: center;
    margin-top: 40px;
}

.page-casino__faq {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-casino__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.page-casino__faq-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E; /* Border color */
}

.page-casino__faq-question {
    font-size: 1.15rem;
    color: #FFB04A; /* Gold gradient start color */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-casino__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #E53030; /* Auxiliary color */
    transition: transform 0.3s ease;
}

.page-casino__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-casino__faq-answer {
    font-size: 0.95rem;
    color: #FFF1E8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-casino__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-casino__hero-section {
        padding: 15px;
        gap: 15px;
    }

    .page-casino__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem); /* More aggressive clamp for mobile H1 */
    }

    .page-casino__hero-description {
        font-size: 1rem;
    }

    .page-casino__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-casino__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-casino__section-title {
        font-size: clamp(1.3rem, 6vw, 2rem);
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .page-casino__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .page-casino__game-cards,
    .page-casino__feature-list,
    .page-casino__promotion-cards {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 20px;
    }

    .page-casino__game-card img,
    .page-casino__promotion-card img {
        height: 200px; /* Adjust height for smaller screens */
        min-height: 200px; /* Ensure min size */
    }

    .page-casino__card-title {
        font-size: 1.2rem;
    }

    .page-casino__card-text {
        font-size: 0.9rem;
    }

    .page-casino__feature-item {
        padding: 25px;
    }

    .page-casino__faq-question {
        font-size: 1.05rem;
    }

    /* Ensure images in content sections are responsive and don't overflow */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
}

/* Specific rule for content images to ensure min-width, overriding any smaller defaults */
.page-casino img:not(.page-casino__hero-image-wrapper img) {
    min-width: 200px;
    min-height: 200px;
}