/* style/live-casino-roulette-deep-dive.css */

:root {
    --page-primary-color: #0A192F;
    --page-accent-color: #E0B400;
    --page-text-light: #F0F0F0; /* Light grey for text on dark backgrounds */
    --page-text-dark: #1a1a1a; /* Dark text for light backgrounds */
    --page-background-dark: var(--page-primary-color);
    --page-background-light: #f8f8f8;
    --page-border-color: #334155;
}

.page-live-casino-roulette-deep-dive {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-light);
    background-color: var(--page-background-dark);
}

.page-live-casino-roulette-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-live-casino-roulette-deep-dive__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #1c2e4a 50%, var(--page-accent-color) 100%);
    color: var(--page-text-light);
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

.page-live-casino-roulette-deep-dive__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-live-casino-roulette-deep-dive__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-text-light);
}

.page-live-casino-roulette-deep-dive__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--page-text-light);
}

.page-live-casino-roulette-deep-dive__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}

.page-live-casino-roulette-deep-dive__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

.page-live-casino-roulette-deep-dive__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-border-color);
}

.page-live-casino-roulette-deep-dive__section:last-of-type {
    border-bottom: none;
}

.page-live-casino-roulette-deep-dive__section--alt-bg {
    background-color: #1A2A40; /* Slightly lighter dark blue for contrast */
}

.page-live-casino-roulette-deep-dive__section--intro {
    background-color: #1A2A40; /* Slightly lighter dark blue */
}

.page-live-casino-roulette-deep-dive__section--cta {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    text-align: center;
}

.page-live-casino-roulette-deep-dive__section--cta .page-live-casino-roulette-deep-dive__section-title,
.page-live-casino-roulette-deep-dive__section--cta .page-live-casino-roulette-deep-dive__text,
.page-live-casino-roulette-deep-dive__section--cta .page-live-casino-roulette-deep-dive__small-text {
    color: var(--page-primary-color); /* Ensure dark text on accent background */
}

.page-live-casino-roulette-deep-dive__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-accent-color);
    font-weight: bold;
}

.page-live-casino-roulette-deep-dive__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--page-accent-color);
    font-weight: bold;
}

.page-live-casino-roulette-deep-dive__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--page-text-light);
}

.page-live-casino-roulette-deep-dive__text .highlight {
    color: var(--page-accent-color);
    font-weight: bold;
}

.page-live-casino-roulette-deep-dive__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-live-casino-roulette-deep-dive__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-live-casino-roulette-deep-dive__list li strong {
    color: var(--page-accent-color);
}

.page-live-casino-roulette-deep-dive__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    margin-top: 20px;
}

.page-live-casino-roulette-deep-dive__btn--primary {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-accent-color);
}

.page-live-casino-roulette-deep-dive__btn--primary:hover {
    background-color: #ffc800; /* Slightly brighter gold */
    color: var(--page-primary-color);
}

.page-live-casino-roulette-deep-dive__btn--secondary {
    background-color: var(--page-primary-color);
    color: var(--page-accent-color);
    border: 2px solid var(--page-accent-color);
}

.page-live-casino-roulette-deep-dive__btn--secondary:hover {
    background-color: var(--page-accent-color);
    color: var(--page-primary-color);
}

.page-live-casino-roulette-deep-dive__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-live-casino-roulette-deep-dive__image--left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}

.page-live-casino-roulette-deep-dive__image--right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-live-casino-roulette-deep-dive__image--responsive {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-live-casino-roulette-deep-dive__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.page-live-casino-roulette-deep-dive__grid-item {
    clear: both; /* Clear floats for image-left/right */
}

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

.page-live-casino-roulette-deep-dive__strategy-item {
    background-color: #1A2A40; /* Slightly lighter dark blue */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--page-accent-color);
}

.page-live-casino-roulette-deep-dive__image-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live-casino-roulette-deep-dive__image--half {
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
}

.page-live-casino-roulette-deep-dive__faq-item {
    background-color: #1A2A40; /* Slightly lighter dark blue */
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-live-casino-roulette-deep-dive__faq-question {
    font-size: 1.3em;
    color: var(--page-accent-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-live-casino-roulette-deep-dive__faq-answer {
    font-size: 1.05em;
    color: var(--page-text-light);
}

.page-live-casino-roulette-deep-dive__centered-content {
    text-align: center;
}

.page-live-casino-roulette-deep-dive__small-text {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-casino-roulette-deep-dive__hero-title {
        font-size: 2.8em;
    }
    .page-live-casino-roulette-deep-dive__hero-subtitle {
        font-size: 1.3em;
    }
    .page-live-casino-roulette-deep-dive__section-title {
        font-size: 2em;
    }
    .page-live-casino-roulette-deep-dive__sub-title {
        font-size: 1.5em;
    }
    .page-live-casino-roulette-deep-dive__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-live-casino-roulette-deep-dive__image--left,
    .page-live-casino-roulette-deep-dive__image--right {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-live-casino-roulette-deep-dive__hero-section {
        min-height: 500px;
    }
    .page-live-casino-roulette-deep-dive__hero-title {
        font-size: 2.2em;
    }
    .page-live-casino-roulette-deep-dive__hero-subtitle {
        font-size: 1.1em;
    }
    .page-live-casino-roulette-deep-dive__section-title {
        font-size: 1.8em;
    }
    .page-live-casino-roulette-deep-dive__sub-title {
        font-size: 1.3em;
    }
    .page-live-casino-roulette-deep-dive__text,
    .page-live-casino-roulette-deep-dive__list li,
    .page-live-casino-roulette-deep-dive__faq-answer {
        font-size: 1em;
    }
    .page-live-casino-roulette-deep-dive__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-casino-roulette-deep-dive__image-row {
        flex-direction: column;
        align-items: center;
    }
    .page-live-casino-roulette-deep-dive__image--half {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .page-live-casino-roulette-deep-dive__hero-section {
        min-height: 400px;
        padding: 60px 15px;
    }
    .page-live-casino-roulette-deep-dive__hero-title {
        font-size: 1.8em;
    }
    .page-live-casino-roulette-deep-dive__hero-subtitle {
        font-size: 0.9em;
    }
    .page-live-casino-roulette-deep-dive__section-title {
        font-size: 1.5em;
    }
    .page-live-casino-roulette-deep-dive__sub-title {
        font-size: 1.1em;
    }
    .page-live-casino-roulette-deep-dive__container {
        padding: 15px;
    }
    .page-live-casino-roulette-deep-dive__list {
        margin-left: 10px;
    }
}