body {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.page-casino {
    padding-top: 10px; /* Small top padding to avoid header overlap */
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.page-casino__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 30px;
}

.page-casino__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.page-casino__main-title {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.page-casino__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF1E8; /* Text Main */
}

.page-casino__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #FFF1E8; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-casino__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 176, 74, 0.6);
}

.page-casino__cta-button--large {
    font-size: 1.2em;
    padding: 15px 35px;
}

.page-casino__section-title {
    font-size: 2em;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-casino__games-section,
.page-casino__features-section,
.page-casino__promotions-section,
.page-casino__cta-section {
    margin-bottom: 60px;
    padding: 20px;
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    border: 1px solid #6A1E1E; /* Border */
}

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

.page-casino__game-card {
    background-color: #140C0C; /* Background */
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #7E0D0D; /* Deep Red */
    padding-bottom: 20px;
}

.page-casino__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-casino__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #6A1E1E; /* Border */
}

.page-casino__game-title {
    font-size: 1.4em;
    color: #FFB04A; /* From Button gradient start */
    margin: 20px 10px 10px;
    font-weight: bold;
}

.page-casino__game-description {
    font-size: 0.95em;
    color: #FFF1E8; /* Text Main */
    margin: 0 15px 20px;
}

.page-casino__play-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #FFF1E8; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-casino__play-button:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

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

.page-casino__feature-item {
    background-color: #140C0C; /* Background */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E; /* Border */
}

.page-casino__feature-item img {
    width: 200px;
    
    object-fit: contain;
    margin-bottom: 15px;
}

.page-casino__feature-title {
    font-size: 1.3em;
    color: #FFB04A; /* From Button gradient start */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-casino__feature-description {
    font-size: 0.95em;
    color: #FFF1E8; /* Text Main */
}

.page-casino__promotions-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-casino__promo-card {
    background-color: #140C0C; /* Background */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #7E0D0D; /* Deep Red */
}

.page-casino__promo-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-casino__promo-content {
    padding: 25px;
    text-align: center;
}

.page-casino__promo-title {
    font-size: 1.5em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-casino__promo-description {
    font-size: 1em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 20px;
}

.page-casino__promo-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E53030; /* Auxiliary Color */
    color: #FFF1E8; /* Text Main */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-casino__promo-button:hover {
    background-color: #C61F1F; /* Main Color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-casino__main-title {
        font-size: 2em;
    }

    .page-casino__description {
        font-size: 1em;
    }

    .page-casino__section-title {
        font-size: 1.7em;
    }

    .page-casino__game-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .page-casino__feature-list {
        grid-template-columns: 1fr;
    }

    .page-casino__hero-section,
    .page-casino__games-section,
    .page-casino__features-section,
    .page-casino__promotions-section,
    .page-casino__cta-section {
        margin-bottom: 40px;
        padding: 15px;
    }

    .page-casino__game-card img,
    .page-casino__feature-item img,
    .page-casino__promo-card img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images don't cause overflow */
    .page-casino img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-casino__main-title {
        font-size: 1.8em;
    }

    .page-casino__section-title {
        font-size: 1.5em;
    }

    .page-casino__cta-button--large {
        font-size: 1em;
        padding: 12px 25px;
    }
}