@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

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

:root {
    --clr-primary: #B11018;
    --clr-primary-dark: #8c0c13;
    --clr-btn-dark: #020102;
    --clr-btn-reg: #010001;
    --clr-bg: #F1F1F1;
    --clr-white: #ffffff;
    --clr-text: #1a1a1a;
    --clr-text-muted: #555;
    --clr-border: #ddd;
    --clr-card: #ffffff;
    --clr-gold: #f5a623;
    --radius: 10px;
    --shadow: 0 4px 18px rgba(0, 0, 0, .10);
    --transition: .22s ease;
}

html {
    scroll-behavior: smooth;
    background: var(--clr-bg);
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-primary-dark);
}

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

.xb7f2 {
    display: none;
}

.wp-placeholder {
    visibility: hidden;
    height: 0;
    width: 0;
    overflow: hidden;
}

.elementor-hidden-el {
    display: none !important;
}

.rs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}

.rs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .18);
}

.rs-btn:active {
    transform: translateY(0);
}

.rs-btn--login {
    background: var(--clr-btn-dark);
    color: var(--clr-white);
}

.rs-btn--login:hover {
    background: #222;
    color: var(--clr-white);
}

.rs-btn--signup {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.rs-btn--signup:hover {
    background: var(--clr-primary-dark);
    color: var(--clr-white);
}

.rs-btn--bonus {
    background: var(--clr-gold);
    color: #111;
}

.rs-btn--bonus:hover {
    background: #e09610;
    color: #111;
}

.rs-btn--lg {
    padding: 15px 36px;
    font-size: 17px;
    border-radius: 8px;
}

.rs-btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

header.rs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .22);
}

.rs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 16px;
}

.rs-header__logo {
    flex-shrink: 0;
}

.rs-header__logo img {
    height: 44px;
    width: auto;
}

.rs-header__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.rs-header__nav a {
    color: #ffe0e0;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    transition: background var(--transition), color var(--transition);
}

.rs-header__nav a:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.rs-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rs-online-counter {
    font-size: 12px;
    color: #ffd0d0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rs-online-counter__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4cff72;
    animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

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

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

.rs-burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rs-burger.active span:nth-child(2) {
    opacity: 0;
}

.rs-burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rs-mobile-nav {
    display: none;
    background: #900d14;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

.rs-mobile-nav.open {
    display: flex;
}

.rs-mobile-nav a {
    color: #ffe0e0;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
}

.rs-mobile-nav a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.rs-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/star-hero.png') center/cover no-repeat;
    overflow: hidden;
}

.rs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(120, 6, 13, .82) 0%, rgba(20, 0, 2, .45) 100%);
}

.rs-hero__inner {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.rs-hero__badge {
    display: inline-block;
    background: var(--clr-gold);
    color: #111;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.rs-hero__title {
    font-family: 'Roboto', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.rs-hero__sub {
    font-size: 18px;
    color: #ffd0d0;
    margin-bottom: 32px;
    line-height: 1.5;
}

.rs-hero__btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.rs-section {
    padding: 60px 0;
}

.rs-section--alt {
    background: #e8e8e8;
}

.rs-section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 28px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--clr-primary);
    display: inline-block;
}

.rs-toc {
    background: var(--clr-card);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    max-width: 700px;
}

.rs-toc ol {
    padding-left: 22px;
}

.rs-toc li {
    margin-bottom: 8px;
}

.rs-toc a {
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
}

.rs-toc a:hover {
    color: var(--clr-primary-dark);
}

.rs-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.rs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-card);
    font-size: 15px;
}

.rs-table th {
    background: var(--clr-primary);
    color: #fff;
    text-align: left;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
}

.rs-table td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: top;
}

.rs-table tr:last-child td {
    border-bottom: none;
}

.rs-table tr:nth-child(even) td {
    background: #fafafa;
}

.rs-table tr:hover td {
    background: #fff5f5;
}

.rs-table .rs-table__param {
    font-weight: 600;
    color: #333;
    width: 42%;
}

.rs-table .rs-table__val {
    color: var(--clr-text-muted);
}

.rs-winners {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.rs-winners__header {
    background: var(--clr-primary);
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-winners-list {
    list-style: none;
}

.rs-winners-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background var(--transition);
}

.rs-winners-list li:last-child {
    border-bottom: none;
}

.rs-winners-list li:hover {
    background: #fff5f5;
}

.rs-winners-list__rank {
    font-weight: 700;
    color: var(--clr-primary);
    width: 30px;
    font-size: 15px;
}

.rs-winners-list__nick {
    flex: 1;
    font-weight: 600;
    color: #222;
    margin-left: 8px;
}

.rs-winners-list__amount {
    font-weight: 700;
    color: #1a7a2e;
    font-size: 15px;
}

.rs-winners-list li:nth-child(1) .rs-winners-list__rank {
    color: #f0a500;
}

.rs-winners-list li:nth-child(2) .rs-winners-list__rank {
    color: #888;
}

.rs-winners-list li:nth-child(3) .rs-winners-list__rank {
    color: #b96f2f;
}

.rs-app-block {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rs-app-info {
    flex: 1 1 320px;
}

.rs-app-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.rs-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    background: var(--clr-btn-dark);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.rs-app-btn:hover {
    background: #222;
    color: #fff;
    transform: translateX(4px);
}

.rs-app-btn svg {
    flex-shrink: 0;
}

.rs-app-btn__sub {
    font-size: 11px;
    font-weight: 400;
    opacity: .7;
}

.rs-app-btn__main {
    font-size: 15px;
    line-height: 1.1;
}

.rs-bonuses {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rs-bonus-card {
    flex: 1 1 280px;
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.rs-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.rs-bonus-card__head {
    background: var(--clr-primary);
    color: #fff;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
}

.rs-bonus-card__body {
    padding: 20px;
    flex: 1;
}

.rs-bonus-card__amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 8px;
}

.rs-bonus-card__desc {
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.rs-bonus-card__foot {
    padding: 0 20px 20px;
}

.rs-slot {
    background: #1a0002;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.rs-slot__reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.rs-slot__reel {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    background: #555555;
    border: 2px solid #B11018;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all .15s;
    box-shadow: 0 0 12px rgba(177, 16, 24, .4);
}

.rs-slot__reel.spinning {
    animation: reelSpin .08s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: scaleY(1)
    }
    50% {
        transform: scaleY(.85)
    }
    100% {
        transform: scaleY(1)
    }
}

.rs-slot__spin-btn {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    width: 100%;
}

.rs-slot__spin-btn:hover:not(:disabled) {
    background: var(--clr-primary-dark);
    transform: scale(1.02);
}

.rs-slot__spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.rs-slot__result {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
    min-height: 56px;
}

.rs-slot__win {
    color: #4cff72;
    animation: winPulse .6s ease-in-out 3;
}

.rs-slot__lose {
    color: #ff6060;
}

@keyframes winPulse {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.06)
    }
}

.rs-slot__win-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--clr-gold);
    color: #111;
    padding: 11px 28px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition);
}

.rs-slot__win-btn:hover {
    background: #e09610;
    color: #111;
}

.rs-slot__credit {
    color: #ff9898;
    font-size: 13px;
    margin-top: 6px;
}

.rs-content-block {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 36px;
}

.rs-content-block h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 24px 0 12px;
}

.rs-content-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 20px 0 10px;
}

.rs-content-block h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.rs-content-block p {
    color: var(--clr-text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
}

.rs-content-block ul, .rs-content-block ol {
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--clr-text-muted);
}

.rs-content-block li {
    margin-bottom: 7px;
    line-height: 1.65;
}

.rs-content-block table {
    border-collapse: collapse;
    width: 100%;
    margin: 16px 0;
    font-size: 14px;
}

.rs-content-block table th {
    background: var(--clr-primary);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
}

.rs-content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--clr-border);
}

.rs-content-block a {
    color: var(--clr-primary);
    text-decoration: underline;
}

.rs-content-block strong {
    color: #111;
}

.rs-content-block blockquote {
    border-left: 4px solid var(--clr-primary);
    padding-left: 16px;
    color: var(--clr-text-muted);
    font-style: italic;
    margin: 14px 0;
}

.rs-author {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
    background: #fff9f9;
    border: 1px solid #f0dada;
    border-radius: var(--radius);
    padding: 18px 22px;
}

.rs-author__avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.rs-author__name {
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

.rs-author__desc {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-top: 3px;
}

.rs-author__link {
    font-size: 13px;
    color: var(--clr-primary);
    text-decoration: underline;
}

.rs-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rs-faq-item {
    background: var(--clr-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.rs-faq-item__q {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--clr-text);
    transition: color var(--transition);
}

.rs-faq-item__q:hover {
    color: var(--clr-primary);
}

.rs-faq-item__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    transition: transform var(--transition);
}

.rs-faq-item.open .rs-faq-item__icon {
    transform: rotate(45deg);
}

.rs-faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 22px;
    color: var(--clr-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.rs-faq-item.open .rs-faq-item__a {
    max-height: 400px;
    padding: 0 22px 18px;
}

footer.rs-footer {
    background: var(--clr-primary);
    color: #ffd0d0;
    padding: 48px 0 24px;
}

.rs-footer__top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.rs-footer__logo img {
    height: 40px;
    margin-bottom: 12px;
}

.rs-footer__desc {
    font-size: 13px;
    color: #ffc0c0;
    max-width: 280px;
    line-height: 1.6;
}

.rs-footer__col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rs-footer__col a {
    color: #ffd0d0;
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
    text-decoration: none;
}

.rs-footer__col a:hover {
    color: #fff;
}

.rs-footer__logos {
    margin-bottom: 24px;
}

.rs-footer__logos-title {
    color: #ffc0c0;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 600;
}

.rs-footer__logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.rs-footer__logo-chip {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
}

.rs-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
}

.rs-footer__legal {
    font-size: 12px;
    color: #ffaaaa;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rs-footer__copyright {
    text-align: center;
    color: #ffd0d0;
    font-size: 13px;
    margin-bottom: 10px;
}

.rs-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--clr-primary);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 14px;
}

.rs-widget__text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.rs-widget__bonus {
    color: var(--clr-gold);
    font-weight: 700;
}

.rs-widget__close {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.rs-widget__close:hover {
    background: rgba(255, 255, 255, .35);
}

.rs-widget a {
    text-decoration: none;
}

.rs-slot-wrap {
    padding: 32px 16px;
}

.rs-slot-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.rs-slot-sub {
    color: #ff9898;
    font-size: 14px;
    margin-bottom: 24px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rs-fade {
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    transform: translateY(18px);
}

.rs-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.rs-divider {
    border: none;
    border-top: 2px solid #ddd;
    margin: 40px 0;
}

.rs-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.rs-badge {
    background: #fff5f5;
    border: 1px solid #f0c0c0;
    color: var(--clr-primary);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
}

body {
    padding-bottom: 72px;
}

@media (max-width: 900px) {
    .rs-header__nav {
        display: none;
    }

    .rs-burger {
        display: flex;
    }

    .rs-hero__title {
        font-size: 30px;
    }

    .rs-bonuses {
        flex-direction: column;
    }

    .rs-app-block {
        flex-direction: column;
    }

    .rs-footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .rs-content-block {
        padding: 20px 16px;
    }
}

@media (max-width: 600px) {
    .rs-hero__title {
        font-size: 24px;
    }

    .rs-hero__sub {
        font-size: 15px;
    }

    .rs-section {
        padding: 40px 0;
    }

    .rs-toc {
        padding: 18px 16px;
    }

    .rs-widget {
        flex-wrap: wrap;
        padding: 12px 14px;
    }

    .rs-widget__text {
        font-size: 13px;
    }

    .rs-slot__reel {
        width: 74px;
        height: 74px;
        font-size: 38px;
    }

    .rs-section-title {
        font-size: 22px;
    }
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
}

.wp-block-group {
    display: block;
}

.entry-meta {
    display: none;
}

.wp-post-image {
    max-width: 100%;
}

.elementor-widget-container {
    padding: 0;
}

#wpadminbar {
    display: none !important;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute;
}
