/* style/game-reviews-roulette-game-h.css */
.page-game-reviews-roulette-game-h {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f9fa;
    font-size: 16px;
}

.page-game-reviews-roulette-game-h__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-game-reviews-roulette-game-h__hero {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-game-reviews-roulette-game-h__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-game-reviews-roulette-game-h__hero > div {
    position: relative;
    z-index: 1;
}

.page-game-reviews-roulette-game-h__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-roulette-game-h__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-game-reviews-roulette-game-h__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-game-reviews-roulette-game-h__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-game-reviews-roulette-game-h__btn--primary {
    background-color: #007bff;
    color: #ffffff;
}

.page-game-reviews-roulette-game-h__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-game-reviews-roulette-game-h__btn--secondary {
    background-color: #28a745;
    color: #ffffff;
}

.page-game-reviews-roulette-game-h__btn--secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
}

.page-game-reviews-roulette-game-h__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.page-game-reviews-roulette-game-h__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-game-reviews-roulette-game-h__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-game-reviews-roulette-game-h__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-game-reviews-roulette-game-h__subsection-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-game-reviews-roulette-game-h__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-game-reviews-roulette-game-h__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-game-reviews-roulette-game-h__list li {
    margin-bottom: 10px;
}

.page-game-reviews-roulette-game-h__variant-grid,
.page-game-reviews-roulette-game-h__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-game-reviews-roulette-game-h__variant-item,
.page-game-reviews-roulette-game-h__strategy-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-game-reviews-roulette-game-h__variant-item:hover,
.page-game-reviews-roulette-game-h__strategy-item:hover {
    transform: translateY(-5px);
}

.page-game-reviews-roulette-game-h__variant-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-game-reviews-roulette-game-h__variant-image,
.page-game-reviews-roulette-game-h__strategy-image {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-game-reviews-roulette-game-h__bet-types {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.page-game-reviews-roulette-game-h__bet-category {
    flex: 1;
    min-width: 300px;
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-game-reviews-roulette-game-h__category-title {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 15px;
    text-align: center;
}

.page-game-reviews-roulette-game-h__bet-category ul {
    list-style: none;
    padding: 0;
}

.page-game-reviews-roulette-game-h__bet-category li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.page-game-reviews-roulette-game-h__bet-category li::before {
    content: '•';
    color: #28a745;
    position: absolute;
    left: 0;
}

.page-game-reviews-roulette-game-h__table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-game-reviews-roulette-game-h__payout-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.page-game-reviews-roulette-game-h__payout-table th,
.page-game-reviews-roulette-game-h__payout-table td {
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    text-align: left;
}

.page-game-reviews-roulette-game-h__payout-table th {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.page-game-reviews-roulette-game-h__payout-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-game-reviews-roulette-game-h__payout-table tr:hover {
    background-color: #e9ecef;
}

.page-game-reviews-roulette-game-h__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.page-game-reviews-roulette-game-h__benefits-list li {
    background-color: #e6f7ff;
    padding: 20px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-weight: 500;
}

.page-game-reviews-roulette-game-h__center-btn {
    text-align: center;
    margin-top: 40px;
}

.page-game-reviews-roulette-game-h__cta-content {
    text-align: center;
    background-color: #007bff;
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin: 40px auto;
}

.page-game-reviews-roulette-game-h__cta-content .page-game-reviews-roulette-game-h__section-title {
    color: #ffffff;
}

.page-game-reviews-roulette-game-h__cta-content .page-game-reviews-roulette-game-h__section-title::after {
    background-color: #28a745;
}

.page-game-reviews-roulette-game-h__cta-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-game-reviews-roulette-game-h__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-game-reviews-roulette-game-h__faq-item {
    background-color: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.page-game-reviews-roulette-game-h__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-reviews-roulette-game-h__faq-answer {
    color: #555555;
    margin-bottom: 0;
}

.page-game-reviews-roulette-game-h__faq-answer a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

.page-game-reviews-roulette-game-h__faq-answer a:hover {
    text-decoration: underline;
}

/* Floating Promotion */
.page-game-reviews-roulette-game-h__floating-promo {
    position: sticky;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #007bff;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 1000;
    margin-left: auto;
    margin-right: 20px;
    align-self: flex-end; /* Align to the end of main content */
}

.page-game-reviews-roulette-game-h__floating-promo-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
}

.page-game-reviews-roulette-game-h__floating-promo p {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-game-reviews-roulette-game-h__btn--floating {
    background-color: #28a745;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.page-game-reviews-roulette-game-h__btn--floating:hover {
    background-color: #1e7e34;
}

.page-game-reviews-roulette-game-h__btn--floating-download {
    background-color: #ffffff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #007bff;
}

.page-game-reviews-roulette-game-h__btn--floating-download:hover {
    background-color: #e6f7ff;
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-game-reviews-roulette-game-h__title {
        font-size: 2.8em;
    }
    .page-game-reviews-roulette-game-h__subtitle {
        font-size: 1.2em;
    }
    .page-game-reviews-roulette-game-h__section-title {
        font-size: 2em;
    }
    .page-game-reviews-roulette-game-h__floating-promo {
        width: 250px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    .page-game-reviews-roulette-game-h__hero {
        padding: 80px 0;
    }
    .page-game-reviews-roulette-game-h__title {
        font-size: 2.2em;
    }
    .page-game-reviews-roulette-game-h__subtitle {
        font-size: 1em;
    }
    .page-game-reviews-roulette-game-h__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-reviews-roulette-game-h__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-game-reviews-roulette-game-h__section {
        padding: 40px 0;
    }
}