/* style/live-roulette.css */

/* Base styles for the page content */
.page-live-roulette {
    color: #333333; /* Dark text for light background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Section styling */
.page-live-roulette__section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Default light background */
}

.page-live-roulette__section:nth-of-type(even) {
    background-color: #f8f8f8; /* Slightly different background for alternating sections */
}

/* Headings */
.page-live-roulette__heading {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-live-roulette__sub-heading {
    font-size: 2em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-live-roulette__mini-heading {
    font-size: 1.4em;
    color: #000000;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Text */
.page-live-roulette__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-live-roulette__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    margin: 10px;
    border: 2px solid transparent; /* Default border */
}

.page-live-roulette__button--register {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.page-live-roulette__button--register:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-live-roulette__button--play,
.page-live-roulette__button--claim-bonus,
.page-live-roulette__button--deposit,
.page-live-roulette__button--download-app,
.page-live-roulette__button--register-free,
.page-live-roulette__button--cta {
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Dark text for FCBC45 background */
    border-color: #FCBC45;
}

.page-live-roulette__button--play:hover,
.page-live-roulette__button--claim-bonus:hover,
.page-live-roulette__button--deposit:hover,
.page-live-roulette__button--download-app:hover,
.page-live-roulette__button--register-free:hover,
.page-live-roulette__button--cta:hover {
    background-color: #e0a33c;
    border-color: #e0a33c;
}

.page-live-roulette__button--support {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.page-live-roulette__button--support:hover {
    background-color: #333333;
    border-color: #333333;
}

/* Hero Section */
.page-live-roulette__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    overflow: hidden; /* To contain the image */
    display: flex; /* Use flex to center content over image */
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero section */
}

.page-live-roulette__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-live-roulette__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
    opacity: 0.4; /* Make image darker to ensure text contrast */
    display: block;
}

.page-live-roulette__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-live-roulette__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-live-roulette__hero-description {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-live-roulette__hero-actions {
    margin-top: 30px;
}

/* Feature Grid */
.page-live-roulette__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-live-roulette__feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-live-roulette__feature-card:hover {
    transform: translateY(-5px);
}

.page-live-roulette__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-live-roulette__feature-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 15px;
}

.page-live-roulette__feature-list {
    list-style: disc inside;
    margin-left: 20px;
    color: #555555;
    font-size: 1em;
}

.page-live-roulette__list-item {
    margin-bottom: 8px;
}

/* Images within content sections */
.page-live-roulette__image {
    display: block;
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-live-roulette__image--centered {
    margin-left: auto;
    margin-right: auto;
}

/* Table styling */
.page-live-roulette__table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.page-live-roulette__table-head {
    background-color: #000000;
    color: #FFFFFF;
}

.page-live-roulette__table-header {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1em;
}

.page-live-roulette__table-data {
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 1em;
}

.page-live-roulette__table-row:nth-child(even) {
    background-color: #f9f9f9;
}

/* FAQ Section */
.page-live-roulette__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-live-roulette__faq-question {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-roulette__faq-answer {
    font-size: 1em;
    color: #555555;
}

/* Conclusion Section */
.page-live-roulette__section--conclusion {
    text-align: center;
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-live-roulette__section--conclusion .page-live-roulette__heading {
    color: #FFFFFF;
}

.page-live-roulette__section--conclusion .page-live-roulette__text {
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live-roulette__hero-title {
        font-size: 3em;
    }
    .page-live-roulette__hero-description {
        font-size: 1.2em;
    }
    .page-live-roulette__heading {
        font-size: 2.4em;
    }
    .page-live-roulette__sub-heading {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-live-roulette {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-live-roulette__hero-section {
        padding: 60px 15px;
        min-height: 450px; /* Adjust min height for mobile hero */
    }
    .page-live-roulette__hero-title {
        font-size: 2.2em;
    }
    .page-live-roulette__hero-description {
        font-size: 1em;
    }
    .page-live-roulette__hero-actions .page-live-roulette__button {
        display: block;
        margin: 15px auto;
    }
    .page-live-roulette__heading {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-live-roulette__sub-heading {
        font-size: 1.6em;
    }
    .page-live-roulette__text {
        font-size: 0.95em;
    }
    .page-live-roulette__section {
        padding: 40px 0;
    }
    .page-live-roulette__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-live-roulette__table-header,
    .page-live-roulette__table-data {
        padding: 10px;
        font-size: 0.9em;
    }

    /* Mobile content area image rules - MUST be present */
    .page-live-roulette img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px; /* Ensure images are not too small */
    }
}

@media (max-width: 480px) {
    .page-live-roulette__hero-title {
        font-size: 1.8em;
    }
    .page-live-roulette__heading {
        font-size: 1.8em;
    }
    .page-live-roulette__sub-heading {
        font-size: 1.4em;
    }
    .page-live-roulette__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}