.page-casino {
    padding-top: 10px; /* Small top padding for the main content */
    background-color: #100224; /* Deep purple-black background */
    color: #FFFFFF; /* White text for contrast */
    font-family: 'Roboto', sans-serif;
}

.page-casino__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-casino__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

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

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

.page-casino__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

.page-casino__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.page-casino__button--primary {
    background: linear-gradient(90deg, #ff9500, #ff5e3a); /* Orange-red gradient */
    color: #FFFFFF;
    border: none;
}

.page-casino__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 94, 58, 0.4);
}

.page-casino__button--secondary {
    background-color: #26A9E0; /* Light blue from primary palette */
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-casino__button--secondary:hover {
    background-color: #1a8cc4;
    border-color: #1a8cc4;
    transform: translateY(-2px);
}

.page-casino__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    color: #FFFFFF;
}

.page-casino__section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #E0E0E0;
}

.page-casino__about-section,
.page-casino__games-section,
.page-casino__features-section,
.page-casino__promotions-section,
.page-casino__cta-section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #1a0a38; /* Slightly lighter dark purple for sections */
    border-radius: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-casino__game-card,
.page-casino__promo-card {
    background-color: #240f47; /* Darker card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-casino__game-title,
.page-casino__promo-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 15px 15px 10px;
    line-height: 1.3;
}

.page-casino__game-title a,
.page-casino__promo-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-casino__game-title a:hover,
.page-casino__promo-title a:hover {
    text-decoration: underline;
}

.page-casino__game-description,
.page-casino__promo-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #CCCCCC;
    padding: 0 15px;
    flex-grow: 1;
}

.page-casino__button--small {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin: 15px;
    align-self: flex-start;
}

.page-casino__button--link {
    background: none;
    border: none;
    color: #26A9E0;
    text-decoration: underline;
    padding: 0;
    margin: 10px 15px 15px;
    font-weight: 500;
    text-align: left;
}

.page-casino__button--link:hover {
    color: #FFFFFF;
    background: none;
    transform: none;
    box-shadow: none;
}

.page-casino__feature-item {
    text-align: center;
    background-color: #240f47;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-casino__feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-casino__feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #CCCCCC;
}

.page-casino__promo-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-casino__promo-date {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 10px;
}

.page-casino__view-all-promos {
    text-align: center;
    margin-top: 40px;
}

.page-casino__cta-section {
    text-align: center;
    padding: 80px 20px;
}

.page-casino__cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-casino__cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-casino__button--large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-casino__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-casino__hero-description {
        font-size: 1rem;
    }
    .page-casino__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-casino__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-casino__section-title {
        font-size: 2rem;
    }
    .page-casino__section-description {
        font-size: 0.95rem;
    }
    .page-casino__games-grid,
    .page-casino__features-grid,
    .page-casino__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-casino__game-image,
    .page-casino__promo-image {
        height: 180px;
    }
    .page-casino__cta-title {
        font-size: 2.5rem;
    }
    .page-casino__cta-description {
        font-size: 1rem;
    }
    /* Ensure all images within .page-casino are responsive */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
    /* Content area images must not display smaller than 200px */
    .page-casino__game-image, .page-casino__promo-image, .page-casino__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
    /* Override specific image sizes if they fall below 200px, ensure they're at least 200px */
    .page-casino__feature-icon {
        width: 200px;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-casino__hero-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }
    .page-casino__section-title {
        font-size: 1.8rem;
    }
    .page-casino__cta-title {
        font-size: 2rem;
    }
}