*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --c-header: #211E6B;
    --c-bg: #171554;
    --c-btn-login: #1B1C5F;
    --c-btn-reg: #F01CA2;
    --c-text: #e8e8ff;
    --c-text-muted: #a0a0cc;
    --c-card: #1e1b6e;
    --c-gold: #f5c842;
    --c-green: #2ecc71;
    --c-red: #e74c3c;
    --radius: 12px;
    --font: 'Montserrat', 'Inter', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
    padding-bottom: 80px;
}

a {
    color: var(--c-btn-reg);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: var(--c-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: opacity .2s, transform .15s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.2;
}

.btn:hover {
    opacity: .88;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn:active {
    transform: none;
}

.btn-login {
    background: var(--c-btn-login);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}

.btn-reg {
    background: var(--c-btn-reg);
    color: #fff;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}

.btn-outline:hover {
    border-color: var(--c-btn-reg);
    color: var(--c-btn-reg);
}

.rs-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.rs-section-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 60%;
    background: var(--c-btn-reg);
    border-radius: 2px;
    margin-top: 6px;
}

.rs-section-sub {
    color: var(--c-text-muted);
    margin-bottom: 32px;
    font-size: 14px;
}

.rs-tag-badge {
    display: inline-block;
    background: rgba(240, 28, 162, .18);
    color: var(--c-btn-reg);
    border-radius: 20px;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 600;
}

.stars {
    color: var(--c-gold);
    letter-spacing: 2px;
    font-size: 18px;
}

.rs-section-c2a8d {
    padding: 64px 0;
}

.rs-header-main-b7d2e {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-header);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s;
}

.rs-header-main-b7d2e.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.rs-hdr-a4f2b {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.rs-logo-b7c1d {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.rs-logo-txt-3d8e {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: .5px;
}

.rs-logo-accent {
    color: var(--c-btn-reg);
}

.rs-nav-d9a3c {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-nav-link {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.rs-nav-link:hover {
    color: var(--c-btn-reg);
    text-decoration: none;
}

.rs-hdr-right-f2a1b {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs-hdr-btns-c5d8a {
    display: flex;
    gap: 8px;
}

.rs-online-count-7e3f2 {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
}

.rs-online-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-green);
    margin-right: 5px;
    vertical-align: middle;
    box-shadow: 0 0 6px var(--c-green);
}

.rs-burger-9b2e7 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.rs-burger-9b2e7 span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

.rs-mobile-nav-a3f7c {
    background: var(--c-header);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.rs-hero-b2d8c {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.rs-slide {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.rs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23, 21, 84, .92) 40%, rgba(33, 30, 107, .7));
}

.rs-slide-content {
    position: relative;
    z-index: 2;
    padding: 100px 20px 80px;
    text-align: center;
}

.rs-hero-h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 16px 0;
}

.rs-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.rs-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-slide-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
}

.rs-dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: all .3s;
}

.rs-dot.active {
    width: 28px;
    background: var(--c-btn-reg);
}

.rs-proscons-grid-f7b3e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.rs-pros-card {
    border-top: 3px solid var(--c-green);
}

.rs-cons-card {
    border-top: 3px solid var(--c-red);
}

.rs-pros-title {
    color: var(--c-green);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 16px;
}

.rs-cons-title {
    color: var(--c-red);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 16px;
}

.rs-pros-card ul, .rs-cons-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rs-pros-card li::before {
    content: "✓ ";
    color: var(--c-green);
}

.rs-cons-card li::before {
    content: "✗ ";
    color: var(--c-red);
}

.rs-pros-card li, .rs-cons-card li {
    font-size: 14px;
    line-height: 1.5;
}

.rs-mirrors-header-a3f8c {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--c-text-muted);
}

.rs-status-badge {
    background: rgba(46, 204, 113, .15);
    color: var(--c-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(46, 204, 113, .3);
}

.rs-active {
    color: var(--c-green);
    font-weight: 600;
}

.rs-table-b7e2d {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.rs-table-b7e2d th {
    padding: 10px 14px;
    text-align: left;
    color: var(--c-text-muted);
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    white-space: nowrap;
}

.rs-table-b7e2d td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.rs-table-b7e2d tr:hover td {
    background: rgba(255, 255, 255, .04);
}

.rs-win-gold {
    color: var(--c-gold);
    font-weight: 700;
}

.rs-win-pink {
    color: var(--c-btn-reg);
    font-weight: 700;
}

.rs-slot-wrap-e8a3f {
    max-width: 500px;
    text-align: center;
}

.rs-slot-info-b2c7d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.rs-bet-btns {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rs-bet-btn {
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: var(--c-text-muted);
    cursor: pointer;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 600;
    transition: all .2s;
}

.rs-bet-btn.active {
    border-color: var(--c-btn-reg);
    background: rgba(240, 28, 162, .15);
    color: var(--c-btn-reg);
}

.rs-reels-c9f4a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: rgba(0, 0, 0, .35);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, .08);
}

.rs-reel {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rs-sym {
    line-height: 1;
    border-radius: 8px;
    padding: 2px 0;
    text-align: center;
}

.rs-sym-mid {
    font-size: 40px;
    padding: 8px 0;
    background: rgba(255, 255, 255, .07);
    opacity: 1;
}

.rs-sym-top, .rs-sym-bot {
    font-size: 28px;
    opacity: 0.5;
}

.rs-spin-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 0;
}

.rs-slot-result-f3b8d {
    background: linear-gradient(135deg, rgba(46, 204, 113, .15), rgba(240, 28, 162, .1));
    border: 1px solid rgba(46, 204, 113, .4);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.rs-slot-result-f3b8d p {
    margin: 0;
}

.rs-author-block-c5a2f {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rs-author-avatar {
    border-radius: 50%;
    border: 2px solid var(--c-btn-reg);
    object-fit: cover;
}

.rs-author-name {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.rs-author-title {
    font-size: 11px;
    color: var(--c-text-muted);
}

.rs-author-link {
    font-size: 11px;
    color: var(--c-btn-reg);
}

.rs-content-block-7d3e8 {
    line-height: 1.8;
}

.rs-content-block-7d3e8 h1, .rs-content-block-7d3e8 h2, .rs-content-block-7d3e8 h3, .rs-content-block-7d3e8 h4 {
    color: #fff;
    margin: 20px 0 10px;
}

.rs-content-block-7d3e8 p {
    margin-bottom: 14px;
    color: var(--c-text);
}

.rs-content-block-7d3e8 ul, .rs-content-block-7d3e8 ol {
    padding-left: 20px;
    margin-bottom: 14px;
    color: var(--c-text);
}

.rs-content-block-7d3e8 li {
    margin-bottom: 6px;
}

.rs-content-block-7d3e8 a {
    color: var(--c-btn-reg);
}

.rs-content-block-7d3e8 table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.rs-content-block-7d3e8 th, .rs-content-block-7d3e8 td {
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 10px 14px;
    text-align: left;
}

.rs-content-block-7d3e8 th {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 600;
}

.rs-content-block-7d3e8 strong {
    color: #fff;
}

.rs-content-block-7d3e8 img {
    border-radius: 8px;
    max-width: 100%;
}

.rs-reviews-grid-a4c7b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.rs-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rs-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.rs-reviews-grid-a4c7b .card p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.65;
}

.rs-review-form-wrap-c3a8d h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

.rs-field-c7b2a {
    margin-bottom: 16px;
}

.rs-field-c7b2a label {
    display: block;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.rs-field-c7b2a input, .rs-field-c7b2a textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color .2s;
}

.rs-field-c7b2a input:focus, .rs-field-c7b2a textarea:focus {
    border-color: var(--c-btn-reg);
}

.rs-field-c7b2a textarea {
    resize: vertical;
}

.rs-field-err {
    color: var(--c-red);
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.rs-form-success-b5d9a {
    text-align: center;
    padding: 32px 20px;
    background: rgba(46, 204, 113, .1);
    border-radius: 10px;
    border: 1px solid rgba(46, 204, 113, .3);
}

.rs-form-success-b5d9a p {
    color: var(--c-text-muted);
    font-size: 13px;
}

.rs-form-success-b5d9a strong {
    color: var(--c-green);
}

footer {
    background: var(--c-header);
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

footer .container {
    padding: 48px 20px 24px;
}

.rs-footer-grid-c8b2a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.rs-footer-brand-9f3e1 p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    max-width: 240px;
    margin-top: 12px;
}

.rs-footer-email {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
}

.rs-footer-title-a2d8b {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer nav a {
    color: rgba(255, 255, 255, .45);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

footer nav a:hover {
    color: #fff;
}

.rs-payments-c7f3a, .rs-providers-b8d2c {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rs-payments-c7f3a span {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .12);
}

.rs-providers-b8d2c span {
    background: rgba(240, 28, 162, .12);
    color: var(--c-btn-reg);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(240, 28, 162, .2);
}

.rs-footer-bottom-d4e9b {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
}

.rs-warning-box {
    background: rgba(255, 165, 0, .08);
    border: 1px solid rgba(255, 165, 0, .2);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.rs-warning-box strong {
    color: rgba(255, 165, 0, .8);
}

.rs-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    text-align: center;
}

.rs-widget-c4f8b {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1B1C5F, #211E6B);
    border: 1px solid rgba(240, 28, 162, .4);
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    max-width: calc(100vw - 40px);
}

.rs-widget-icon {
    font-size: 24px;
}

.rs-widget-title {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.rs-widget-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

.rs-widget-btn {
    background: var(--c-btn-reg);
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    display: inline-block;
}

.rs-widget-btn:hover {
    text-decoration: none;
    opacity: .88;
}

.rs-widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, .4);
    font-size: 20px;
    padding: 0 2px;
    line-height: 1;
}

@media (max-width: 768px) {
    .rs-nav-d9a3c {
        display: none;
    }

    .rs-burger-9b2e7 {
        display: flex;
    }

    .rs-hdr-a4f2b {
        grid-template-columns: auto auto;
    }

    .rs-hdr-right-f2a1b {
        gap: 6px;
    }

    .rs-hdr-btns-c5d8a {
        display: flex;
    }

    .rs-online-count-7e3f2 {
        display: none;
    }

    .rs-slot-wrap-e8a3f {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .rs-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
    }

    .rs-widget-c4f8b {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 16px;
    }
}

.rs-header-main-b7d2e {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #211E6B;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

body {
    padding-top: 72px;
}

.rs-hdr-a4f2b {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rs-logo-b7c1d img {
    width: auto;
    height: 42px;
}

.rs-nav-d9a3c {
    display: flex;
    align-items: center;
    gap: 28px;
}

.rs-nav-link {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.rs-nav-link:hover {
    color: #F01CA2;
}

.rs-hdr-right-f2a1b {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rs-mobile-nav-a3f7c {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #211E6B;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.rs-mobile-nav-a3f7c.active {
    display: flex;
}

.rs-mobile-nav-a3f7c a {
    color: #fff;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
}

.rs-mobile-nav-a3f7c a:hover {
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 768px) {

    .rs-nav-d9a3c,
    .rs-online-count-7e3f2 {
        display: none;
    }

    .rs-burger-9b2e7 {
        display: flex;
    }

    .rs-hdr-btns-c5d8a {
        gap: 8px;
    }

    .btn-login,
    .btn-reg {
        padding: 9px 14px;
        font-size: 13px;
    }

    .rs-logo-b7c1d img {
        height: 36px;
    }
}

@media (max-width: 560px) {


    .rs-hdr-a4f2b {
        height: 64px;
        padding: 0 14px;
    }

    .rs-mobile-nav-a3f7c {
        top: 64px;
    }

    body {
        padding-top: 64px;
    }

    .rs-logo-b7c1d img {
        height: 32px;
    }
}

.rs-slide,
.rs-slide.rs-slide--active,
.rs-slide.active {
    background-image: url('/hero-roy.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.rs-slide.active,
.rs-slide.rs-slide--active {
    opacity: 1;
    position: relative;
}