/* style/live-casino-roulette-rules.css */
.page-live-casino-roulette-rules {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-live-casino-roulette-rules__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.page-live-casino-roulette-rules__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-casino-roulette-rules__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-live-casino-roulette-rules__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
}

.page-live-casino-roulette-rules__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.1);
}

.page-live-casino-roulette-rules__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-live-casino-roulette-rules__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-live-casino-roulette-rules__sub-section-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-live-casino-roulette-rules__content-block {
    margin-bottom: 40px;
}

.page-live-casino-roulette-rules__content-block-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

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

.page-live-casino-roulette-rules__card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-casino-roulette-rules__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-live-casino-roulette-rules__card-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-live-casino-roulette-rules__card-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 4px;
}

.page-live-casino-roulette-rules__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-live-casino-roulette-rules__list li {
    background: #ffffff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 1.1em;
}

.page-live-casino-roulette-rules__list--why-sbotop li {
    border-left-color: #003366;
}

.page-live-casino-roulette-rules__numbered-list {
    list-style: decimal;
    padding-left: 25px;
}

.page-live-casino-roulette-rules__numbered-list li {
    background: none;
    margin-bottom: 25px;
    padding: 0;
    border-left: none;
    box-shadow: none;
    border-radius: 0;
    font-size: 1.1em;
    position: relative;
    counter-increment: step-counter;
    padding-left: 40px; /* Space for custom number */
}

.page-live-casino-roulette-rules__numbered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #003366;
    color: #FFD700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-live-casino-roulette-rules__list-image {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-live-casino-roulette-rules__table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-live-casino-roulette-rules__table th,
.page-live-casino-roulette-rules__table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.page-live-casino-roulette-rules__table th {
    background-color: #003366;
    color: #FFD700;
    font-weight: bold;
    text-transform: uppercase;
}

.page-live-casino-roulette-rules__table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.page-live-casino-roulette-rules__table tr:hover {
    background-color: #e6e6e6;
}

.page-live-casino-roulette-rules__image-full-width {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-live-casino-roulette-rules__note {
    font-style: italic;
    color: #666666;
    margin-top: 20px;
    padding: 15px;
    background-color: #eef;
    border-left: 4px solid #003366;
    border-radius: 4px;
}

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

.page-live-casino-roulette-rules__btn--primary {
    background-color: #FFD700;
    color: #003366;
    border: 2px solid #FFD700;
}

.page-live-casino-roulette-rules__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-live-casino-roulette-rules__btn--secondary {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
}

.page-live-casino-roulette-rules__btn--secondary:hover {
    background-color: #003366;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-live-casino-roulette-rules__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-live-casino-roulette-rules__link-inline {
    color: #003366;
    font-weight: bold;
    text-decoration: none;
}

.page-live-casino-roulette-rules__link-inline:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-live-casino-roulette-rules__cta-section {
    background: url('[GALLERY:bg:roulette,chips,dark,sbotop,texture]') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.page-live-casino-roulette-rules__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.85); /* Dark overlay for text readability */
    z-index: 1;
}

.page-live-casino-roulette-rules__cta-content {
    position: relative;
    z-index: 2;
}

.page-live-casino-roulette-rules__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-live-casino-roulette-rules__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-live-casino-roulette-rules__hero-title {
        font-size: 2.8em;
    }
    .page-live-casino-roulette-rules__hero-subtitle {
        font-size: 1.1em;
    }
    .page-live-casino-roulette-rules__section-title {
        font-size: 2em;
    }
    .page-live-casino-roulette-rules__sub-section-title {
        font-size: 1.6em;
    }
    .page-live-casino-roulette-rules__card-title {
        font-size: 1.4em;
    }
    .page-live-casino-roulette-rules__cta-title {
        font-size: 2.5em;
    }
    .page-live-casino-roulette-rules__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-live-casino-roulette-rules__hero {
        padding: 60px 0;
    }
    .page-live-casino-roulette-rules__hero-title {
        font-size: 2.2em;
    }
    .page-live-casino-roulette-rules__hero-subtitle {
        font-size: 1em;
    }
    .page-live-casino-roulette-rules__section {
        padding: 40px 0;
    }
    .page-live-casino-roulette-rules__section-title {
        font-size: 1.8em;
    }
    .page-live-casino-roulette-rules__sub-section-title {
        font-size: 1.4em;
    }
    .page-live-casino-roulette-rules__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-live-casino-roulette-rules__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-live-casino-roulette-rules__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-live-casino-roulette-rules__cta-title {
        font-size: 2em;
    }
    .page-live-casino-roulette-rules__cta-description {
        font-size: 1em;
    }
    .page-live-casino-roulette-rules__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-live-casino-roulette-rules__hero-title {
        font-size: 1.8em;
    }
    .page-live-casino-roulette-rules__section-title {
        font-size: 1.5em;
    }
    .page-live-casino-roulette-rules__sub-section-title {
        font-size: 1.2em;
    }
    .page-live-casino-roulette-rules__list li,
    .page-live-casino-roulette-rules__numbered-list li {
        font-size: 0.95em;
    }
    .page-live-casino-roulette-rules__table th,
    .page-live-casino-roulette-rules__table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .page-live-casino-roulette-rules__btn {
        width: 100%;
        text-align: center;
    }
    .page-live-casino-roulette-rules__cta-title {
        font-size: 1.8em;
    }
}