.page-casino-games {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for internal content, body handles header offset */
}

.page-casino-games__section-title {
    color: #F2C14E;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem); /* Responsive font size */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-casino-games__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e5e5e5;
}

.page-casino-games__main-title {
    color: #F2C14E;
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
}

.page-casino-games__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
}

.page-casino-games__hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px; /* Space between image and content */
}

.page-casino-games__hero-content {
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}

.page-casino-games__hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e5e5e5;
}

.page-casino-games__hero-actions,
.page-casino-games__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.page-casino-games__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    min-width: 150px;
}

.page-casino-games__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-casino-games__btn--primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-casino-games__btn--secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-casino-games__btn--secondary:hover {
    transform: translateY(-2px);
    background-color: #F2C14E;
    color: #111111;
}

.page-casino-games__btn--small {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-casino-games__btn--small:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.page-casino-games__btn--play {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    display: block; /* Make it block to take full width of card */
    margin-top: 15px;
    font-size: 1rem;
}

.page-casino-games__btn--play:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-casino-games__games-categories,
.page-casino-games__featured-games,
.page-casino-games__why-choose,
.page-casino-games__responsible-gaming,
.page-casino-games__faq-section,
.page-casino-games__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-casino-games__category-grid,
.page-casino-games__game-grid,
.page-casino-games__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-casino-games__category-card,
.page-casino-games__game-card,
.page-casino-games__benefit-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-casino-games__category-card img,
.page-casino-games__benefit-card img {
    width: 100%;
    height: auto; /* Allow height to adjust based on aspect ratio */
    min-height: 200px; /* Ensure minimum height */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    min-width: 200px; /* Ensure minimum width */
}

.page-casino-games__game-card {
    overflow: hidden;
}

.page-casino-games__game-iframe {
    width: 100%;
    height: auto; /* Allow height to adjust */
    min-height: 200px; /* Ensure minimum height */
    border: none;
    border-radius: 8px;
    background-color: #0d0d0d;
    min-width: 200px; /* Ensure minimum width */
}

.page-casino-games__card-title,
.page-casino-games__game-title {
    color: #F2C14E;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-casino-games__card-text {
    color: #e5e5e5;
    font-size: 0.95rem;
    flex-grow: 1; /* Allow text to grow and push button down */
}

.page-casino-games__responsible-gaming .page-casino-games__btn {
    margin-top: 30px;
}

.page-casino-games__faq-section {
    margin-top: 40px;
}

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

.page-casino-games__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
}

.page-casino-games__faq-question {
    color: #F2C14E;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.page-casino-games__faq-answer {
    color: #e5e5e5;
    font-size: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-casino-games__hero-image {
        max-height: 400px;
    }

    .page-casino-games__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

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

    .page-casino-games__hero-actions,
    .page-casino-games__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-casino-games__btn {
        width: 80%;
        max-width: 300px;
    }

    .page-casino-games__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-casino-games__category-grid,
    .page-casino-games__game-grid,
    .page-casino-games__benefits-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-casino-games__category-card img,
    .page-casino-games__benefit-card img,
    .page-casino-games__game-iframe,
    .page-casino-games img {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
        /* min-height and min-width are already applied for >= 200px */
    }
}