.page-live-casino {
    background-color: #0A0A0A; /* Main background color */
    color: #FFF6D6; /* Main text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom of the main content */
}

.page-live-casino__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-live-casino__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-live-casino__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px; /* Space between image and content */
}

.page-live-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.page-live-casino__main-title {
    color: #F2C14E; /* Primary color for H1 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-live-casino__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Buttons */
.page-live-casino__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-live-casino__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
}

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

.page-live-casino__button--secondary {
    background-color: #111111; /* Card BG */
    color: #F2C14E; /* Primary color for text */
    border: 1px solid #3A2A12; /* Border color */
}

.page-live-casino__button--secondary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(58, 42, 18, 0.4);
}

.page-live-casino__button--small {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: unset;
}

/* Section Titles & Descriptions */
.page-live-casino__section-title {
    color: #F2C14E;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 2.2em; /* Ensure H2 is not too big, but larger than H3 */
    font-weight: bold;
}

.page-live-casino__section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    font-size: 1.05em;
    color: #E5E5E5;
}

/* About Section */
.page-live-casino__about-section {
    padding: 50px 0;
}

/* Games Section */
.page-live-casino__games-section {
    padding: 50px 0;
    background-color: #111111; /* Card BG for this section */
}

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

.page-live-casino__game-card {
    background-color: #0A0A0A; /* Background color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-live-casino__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-live-casino__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-live-casino__game-title {
    color: #F2C14E;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-casino__game-description {
    color: #E5E5E5;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows description to take up available space */
}

.page-live-casino__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Why Choose Section */
.page-live-casino__why-choose-section {
    padding: 50px 0;
}

.page-live-casino__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-live-casino__benefit-item {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-live-casino__benefit-title {
    color: #F2C14E;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-casino__benefit-description {
    color: #E5E5E5;
    font-size: 1em;
}

/* Promotions Section */
.page-live-casino__promotions-section {
    padding: 50px 0;
    background-color: #111111; /* Card BG for this section */
}

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

.page-live-casino__promo-card {
    background-color: #0A0A0A; /* Background color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-live-casino__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-live-casino__promo-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-live-casino__promo-title {
    color: #F2C14E;
    font-size: 1.4em;
    margin-bottom: 10px;
    padding: 0 15px;
    font-weight: bold;
}

.page-live-casino__promo-text {
    color: #E5E5E5;
    font-size: 0.95em;
    margin-bottom: 20px;
    padding: 0 15px;
    flex-grow: 1;
}

/* Getting Started Section */
.page-live-casino__getting-started-section {
    padding: 50px 0;
}

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

.page-live-casino__step-card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live-casino__step-icon {
    background-color: #F2C14E;
    color: #111111;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-live-casino__step-title {
    color: #F2C14E;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-casino__step-description {
    color: #E5E5E5;
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Security Section */
.page-live-casino__security-section {
    padding: 50px 0;
    background-color: #111111; /* Card BG for this section */
}

/* FAQ Section */
.page-live-casino__faq-section {
    padding: 50px 0;
}

.page-live-casino__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-live-casino__faq-question {
    color: #F2C14E;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer; /* Indicate it's clickable, though JS is not implemented here */
}

.page-live-casino__faq-answer {
    color: #E5E5E5;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-live-casino__hero-section {
        padding-bottom: 30px;
    }

    .page-live-casino__main-title {
        font-size: 1.8em;
    }

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

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

    .page-live-casino__button {
        width: 80%;
        max-width: 300px;
        padding: 10px 20px;
    }

    .page-live-casino__section-title {
        font-size: 1.8em;
        margin-top: 40px;
    }

    .page-live-casino__game-grid,
    .page-live-casino__benefits-list,
    .page-live-casino__promotion-cards,
    .page-live-casino__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-live-casino__game-image,
    .page-live-casino__promo-image {
        height: auto; /* Allow height to adjust */
        max-width: 100% !important; /* Ensure content images don't overflow */
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
    }

    /* Important: Mobile content area images must be constrained */
    .page-live-casino img {
        max-width: 100% !important;
        height: auto !important;
    }
}

/* Ensure all content images are at least 200x200px on larger screens */
.page-live-casino img:not(.page-live-casino__hero-image) {
    min-width: 200px;
    min-height: 200px;
}