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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Open Sans', Roboto, Arial, sans-serif;
    background: #F1F1F1;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .2s
}

a:hover {
    opacity: .85
}

ul {
    list-style: none
}

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

.rs-header {
    background: #B11018;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .25)
}

.rs-header__inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    height: 68px
}

.rs-header__logo img {
    width: 140px;
    height: 50px;
    object-fit: contain;
    display: block
}

.rs-header__logo img,
.rs-footer__logo img {
    filter: brightness(0) invert(1);
}

.rs-logo-link {
    display: inline-block
}

.rs-header__nav {
    display: flex;
    align-items: center
}

.rs-nav__list {
    display: flex;
    gap: 4px
}

.rs-nav__link {
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, opacity .2s;
    white-space: nowrap
}

.rs-nav__link:hover {
    background: rgba(255, 255, 255, .15);
    opacity: 1
}

.rs-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap
}

.rs-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    opacity: .9
}

.rs-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: rs-pulse 1.8s infinite
}

@keyframes rs-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .5)
    }
    50% {
        box-shadow: 0 0 0 5px rgba(74, 222, 128, 0)
    }
}

.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    border-radius: 8px;
    transition: transform .15s, box-shadow .15s, opacity .2s;
    text-decoration: none;
    white-space: nowrap
}

.rs-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

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

.rs-btn--login {
    background: #020102;
    color: #fff;
    font-size: .82rem;
    padding: 7px 16px
}

.rs-btn--signup {
    background: #010001;
    color: #fff;
    font-size: .82rem;
    padding: 7px 16px
}

.rs-btn--login:hover, .rs-btn--signup:hover {
    opacity: .9
}

.rs-btn--gold {
    background: linear-gradient(135deg, #e6a817, #c8861a);
    color: #fff;
    font-size: .9rem;
    padding: 11px 18px
}

.rs-btn--primary {
    background: #B11018;
    color: #fff
}

.rs-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .8);
    padding: 12px 28px;
    font-size: 1rem
}

.rs-btn--outline:hover {
    background: rgba(255, 255, 255, .12);
    opacity: 1
}

.rs-btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px
}

.rs-btn--sm {
    padding: 9px 16px;
    font-size: .82rem
}

.rs-btn--full {
    width: 100%
}

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

.rs-burger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.rs-burger.rs-burger--open .rs-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.rs-burger.rs-burger--open .rs-burger__bar:nth-child(2) {
    opacity: 0
}

.rs-burger.rs-burger--open .rs-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.rs-mobile-menu {
    display: none;
    background: #8c0d14;
    padding: 0
}

.rs-mobile-menu.rs-mobile-menu--open {
    display: block
}

.rs-mobile-nav__list {
    padding: 12px 20px
}

.rs-mobile-nav__link {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.rs-mobile-actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px
}

.rs-hero {
    background: #1a0005 url('/red-banner.jpg') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.rs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(177, 16, 24, .82) 0%, rgba(10, 0, 2, .6) 100%)
}

.rs-hero .rs-container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px
}

.rs-hero__content {
    max-width: 660px
}

.rs-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    margin-bottom: 20px;
    backdrop-filter: blur(4px)
}

.rs-hero__title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.02em
}

.rs-hero__title-accent {
    color: #f5c518
}

.rs-hero__subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: 1.08rem;
    margin-bottom: 28px;
    font-weight: 500
}

.rs-hero__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.rs-hero__btns .rs-btn--signup {
    background: #010001;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .4)
}

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

.rs-hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
    font-weight: 600
}

.rs-hero__feature-icon {
    color: #4ade80;
    font-weight: 900
}

.rs-section {
    padding: 72px 0
}

.rs-section--dark {
    background: #1a0005
}

.rs-section--gray {
    background: #e8e8e8
}

.rs-section__title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.rs-section__title--light {
    color: #fff
}

.rs-section__subtitle {
    text-align: center;
    color: #555;
    font-size: 1rem;
    margin-bottom: 48px
}

.rs-section__subtitle--light {
    color: rgba(255, 255, 255, .7)
}

.rs-advantages__grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.rs-advantage-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e0e0e0;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.rs-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B11018, #e63946)
}

.rs-advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(177, 16, 24, .12)
}

.rs-advantage-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block
}

.rs-advantage-card__title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px
}

.rs-advantage-card__text {
    color: #555;
    font-size: .9rem;
    line-height: 1.65
}

.rs-tournaments__wrap {
    overflow: hidden
}

.rs-tournaments__track {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.rs-tournament-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    padding: 28px 24px;
    color: #fff;
    position: relative;
    transition: transform .2s, box-shadow .2s
}

.rs-tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3)
}

.rs-tournament-card__badge {
    display: inline-block;
    background: rgba(245, 197, 24, .2);
    border: 1px solid rgba(245, 197, 24, .4);
    color: #f5c518;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 14px
}

.rs-tournament-card__title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff
}

.rs-tournament-card__desc {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.6;
    margin-bottom: 18px
}

.rs-tournament-card__prize {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px
}

.rs-tournament-card__prize-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 4px
}

.rs-tournament-card__prize-amount {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #f5c518
}

.rs-tournament-card__timer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 12px 14px
}

.rs-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 36px
}

.rs-timer-val {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.rs-timer-unit small {
    font-size: .62rem;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .04em
}

.rs-timer-sep {
    color: rgba(255, 255, 255, .4);
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px
}

.rs-slider-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px
}

.rs-slider-nav__btn {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.rs-slider-nav__btn:hover {
    background: rgba(255, 255, 255, .25)
}

.rs-slider-dots {
    display: flex;
    gap: 8px
}

.rs-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s
}

.rs-slider-dot--active {
    background: #f5c518;
    transform: scale(1.2)
}

.rs-slider-nav--slots .rs-slider-nav__btn {
    background: rgba(177, 16, 24, .12);
    border-color: rgba(177, 16, 24, .25);
    color: #B11018
}

.rs-slider-nav--slots .rs-slider-dot {
    background: rgba(177, 16, 24, .25)
}

.rs-slider-nav--slots .rs-slider-dot--active {
    background: #B11018
}

.rs-video-wrap {
    max-width: 860px;
    margin: 0 auto
}

.rs-video-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18)
}

.rs-video-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.rs-slots__wrap {
    overflow: hidden
}

.rs-slots__track {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 18px
}

.rs-slot-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform .2s, box-shadow .2s
}

.rs-slot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12)
}

.rs-slot-card__img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center
}

.rs-slot-card__ico {
    font-size: 2.4rem
}

.rs-slot-card__provider {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    padding: 10px 12px 2px
}

.rs-slot-card__name {
    font-family: Roboto, Arial, sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 12px 6px;
    line-height: 1.3
}

.rs-slot-card__rtp {
    font-size: .75rem;
    color: #888;
    padding: 0 12px 10px
}

.rs-slot-card__rtp span {
    color: #B11018;
    font-weight: 700
}

.rs-slot-card .rs-btn {
    margin: 0 12px 12px;
    width: calc(100% - 24px)
}

.rs-wheel-wrap {
    display: grid;
    grid-template-columns:360px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto
}

.rs-wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.rs-wheel-pointer {
    font-size: 2rem;
    color: #B11018;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(177, 16, 24, .4))
}

#rs-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18), 0 0 0 6px #fff, 0 0 0 8px #B11018;
    display: block;
    margin-top: 20px
}

.rs-wheel-controls {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.rs-wheel-hint {
    font-size: 1.05rem;
    color: #555
}

.rs-wheel-result {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid #B11018;
    text-align: center;
    animation: rs-fadein .4s ease
}

.rs-wheel-result__icon {
    font-size: 2.4rem;
    margin-bottom: 10px
}

.rs-wheel-result h3 {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1a1a1a
}

.rs-wheel-result p {
    color: #555;
    margin-bottom: 16px;
    font-size: .95rem
}

.rs-wheel-result__bonus {
    font-weight: 700;
    color: #B11018;
    font-size: 1.1rem
}

@keyframes rs-fadein {
    from {
        opacity: 0;
        transform: scale(.95)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.rs-review-section {
    border-top: 4px solid #B11018
}

.rs-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px
}

.rs-review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f9f0f1;
    border-radius: 12px;
    padding: 14px 20px;
    border: 1px solid #f0d0d2
}

.rs-review-author__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #B11018;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0
}

.rs-review-author__info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.rs-review-author__name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: .95rem
}

.rs-review-author__role {
    font-size: .78rem;
    color: #888
}

.rs-review-content h2, .rs-review-content h3, .rs-review-content h4 {
    font-family: Roboto, Arial, sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 12px
}

.rs-review-content h2 {
    font-size: 1.5rem
}

.rs-review-content h3 {
    font-size: 1.2rem
}

.rs-review-content p {
    margin-bottom: 16px;
    color: #333;
    line-height: 1.75
}

.rs-review-content ul, .rs-review-content ol {
    margin: 0 0 16px 24px;
    color: #333;
    line-height: 1.75
}

.rs-review-content li {
    margin-bottom: 6px
}

.rs-review-content ul {
    list-style: disc
}

.rs-review-content ol {
    list-style: decimal
}

.rs-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block
}

.rs-review-content table td, .rs-review-content table th {
    border: 2px solid #e0e0e0;
    padding: 10px 14px;
    text-align: left;
    font-size: .92rem
}

.rs-review-content table th {
    background: #B11018;
    color: #fff;
    font-weight: 700
}

.rs-review-content table tr:nth-child(even) {
    background: #f9f0f1
}

.rs-review-content a {
    color: #B11018;
    text-decoration: underline
}

.rs-review-content strong {
    font-weight: 700;
    color: #1a1a1a
}

.rs-review-content blockquote {
    border-left: 4px solid #B11018;
    padding: 12px 20px;
    background: #f9f0f1;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
    color: #444;
    font-style: italic
}

.rs-reviews__grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.rs-review-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e0e0e0;
    transition: box-shadow .2s
}

.rs-review-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1)
}

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

.rs-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #B11018;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .88rem;
    flex-shrink: 0
}

.rs-review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.rs-review-card__name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: .95rem
}

.rs-stars {
    display: flex;
    gap: 2px
}

.rs-review-card__text {
    color: #444;
    font-size: .9rem;
    line-height: 1.65
}

.rs-review-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07)
}

.rs-review-form__title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px
}

.rs-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px
}

.rs-form-label {
    font-size: .88rem;
    font-weight: 600;
    color: #333
}

.rs-form-input, .rs-form-textarea {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: .95rem;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.rs-form-input:focus, .rs-form-textarea:focus {
    border-color: #B11018;
    box-shadow: 0 0 0 3px rgba(177, 16, 24, .1);
    background: #fff
}

.rs-form-textarea {
    resize: vertical;
    min-height: 110px
}

.rs-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #f0fdf4;
    border: 2px solid #4ade80;
    border-radius: 12px;
    margin-top: 16px;
    text-align: center
}

.rs-form-success__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #4ade80;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700
}

.rs-form-success p {
    font-weight: 600;
    color: #166534;
    font-size: .95rem
}

.rs-footer {
    background: #B11018;
    color: #fff;
    padding: 48px 0 24px
}

.rs-footer__inner {
    display: grid;
    grid-template-columns:auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 28px
}

.rs-footer__logo img {
    width: 130px;
    height: auto
}

.rs-footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px
}

.rs-footer-nav__link {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
    font-weight: 600;
    transition: color .2s
}

.rs-footer-nav__link:hover {
    color: #fff;
    opacity: 1
}

.rs-footer__payments, .rs-footer__providers {
    margin-bottom: 20px
}

.rs-footer__label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 10px;
    font-weight: 700
}

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

.rs-payment-badge, .rs-provider-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 700;
    color: #fff
}

.rs-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65
}

.rs-footer__copy {
    margin-top: 8px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .5)
}

.rs-footer__copy-link {
    color: rgba(255, 255, 255, .75);
    text-decoration: underline
}

.rs-footer__copy-link:hover {
    color: #fff;
    opacity: 1
}

.rs-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #010001 0%, #1a0005 100%);
    border-top: 2px solid #B11018;
    padding: 12px 20px;
    transition: transform .3s
}

.rs-widget.rs-widget--hidden {
    transform: translateY(100%)
}

.rs-widget__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px
}

.rs-widget__text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.rs-widget__text strong {
    color: #f5c518;
    font-size: 1rem;
    font-weight: 800
}

.rs-widget__text span {
    color: rgba(255, 255, 255, .7);
    font-size: .78rem
}

.rs-widget__btn {
    background: #B11018;
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 16px rgba(177, 16, 24, .4);
    white-space: nowrap
}

.rs-widget__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(177, 16, 24, .5);
    opacity: 1
}

.rs-widget__close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color .2s
}

.rs-widget__close:hover {
    color: #fff
}

body {
    padding-bottom: 74px
}

.rs-q9z1k, .rs-p2m7n {
    display: none !important;
    position: absolute;
    left: -9999px
}

@media (max-width: 1024px) {
    .rs-advantages__grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .rs-slots__track {
        grid-template-columns:repeat(3, 1fr)
    }

    .rs-hero__title {
        font-size: 2.1rem
    }
}

@media (max-width: 768px) {
    .rs-header__inner {
        grid-template-columns:1fr auto;
        gap: 12px
    }

    .rs-header__nav {
        display: none
    }

    .rs-header__actions {
        gap: 8px
    }

    .rs-online-badge {
        display: none
    }

    .rs-burger {
        display: flex
    }

    .rs-hero__title {
        font-size: 1.65rem
    }

    .rs-hero {
        min-height: 400px
    }

    .rs-section {
        padding: 48px 0
    }

    .rs-section__title {
        font-size: 1.6rem
    }

    .rs-advantages__grid {
        grid-template-columns:1fr
    }

    .rs-tournaments__track {
        display: flex;
        transition: transform .35s ease
    }

    .rs-tournament-card {
        min-width: 100%;
        flex-shrink: 0
    }

    .rs-slider-nav {
        display: flex
    }

    .rs-slots__track {
        display: flex;
        transition: transform .35s ease
    }

    .rs-slot-card {
        min-width: calc(50% - 9px);
        flex-shrink: 0
    }

    .rs-slider-nav--slots {
        display: flex
    }

    .rs-wheel-wrap {
        grid-template-columns:1fr;
        gap: 28px;
        justify-items: center
    }

    #rs-wheel-canvas {
        width: 260px;
        height: 260px
    }

    .rs-reviews__grid {
        grid-template-columns:1fr
    }

    .rs-footer__inner {
        grid-template-columns:1fr
    }

    .rs-footer__logo {
        margin-bottom: 16px
    }

    .rs-widget__inner {
        gap: 14px;
        flex-wrap: wrap;
        padding: 0
    }

    .rs-hero__btns {
        flex-direction: column
    }

    .rs-review-header {
        flex-direction: column
    }
}

@media (max-width: 480px) {
    .rs-hero__title {
        font-size: 1.4rem
    }

    .rs-slot-card {
        min-width: calc(100% - 0px)
    }

    .rs-tournament-card {
        padding: 20px 16px
    }

    .rs-review-form-wrap {
        padding: 24px 16px
    }

    .rs-hero .rs-btn--signup, .rs-hero .rs-btn--outline {
        width: 100%;
        text-align: center;
        justify-content: center
    }
}

.rs-b3m7x1, .rs-b3m7x2, .rs-b3m7x3, .rs-b3m7x4, .rs-b3m7x5, .rs-b3m7x6 {
    animation: rs-cardfadein .5s ease both
}

@keyframes rs-cardfadein {
    from {
        opacity: 0;
        transform: translateY(16px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rs-b3m7x1 {
    animation-delay: .05s
}

.rs-b3m7x2 {
    animation-delay: .12s
}

.rs-b3m7x3 {
    animation-delay: .19s
}

.rs-b3m7x4 {
    animation-delay: .26s
}

.rs-b3m7x5 {
    animation-delay: .33s
}

.rs-b3m7x6 {
    animation-delay: .4s
}

.rs-h3d9j {
    display: none
}

.rs-p2x7k {
    visibility: hidden
}

.rs-q8m1n {
    position: absolute;
    left: -9999px
}

.rs-wp-menu-container {
    display: none
}

.rs-elementor-hidden {
    display: none
}

.tydfcd {
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.tydfcd * {
    max-width: 100%;
}

.tydfcd h1,
.tydfcd h2,
.tydfcd h3,
.tydfcd h4,
.tydfcd h5,
.tydfcd h6 {
    color: #1a1a1a;
    line-height: 1.3;
    margin: 24px 0 16px;
    overflow-wrap: break-word;
}

.tydfcd h1 {
    font-size: 2.2rem;
    margin-top: 0;
}

.tydfcd h2 {
    font-size: 1.7rem;
}

.tydfcd p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #333;
    overflow-wrap: break-word;
}

.tydfcd a {
    color: #B11018;
    text-decoration: underline;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.tydfcd ul,
.tydfcd ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.tydfcd li {
    margin-bottom: 8px;
}

.tydfcd img,
.tydfcd iframe,
.tydfcd video,
.tydfcd table {
    max-width: 100%;
}

.tydfcd table {
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

.tydfcd blockquote {
    padding: 16px 20px;
    border-left: 4px solid #B11018;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .tydfcd {
        margin: 24px 16px;
        padding: 24px;
    }

    .tydfcd h1 {
        font-size: 1.9rem;
    }

    .tydfcd h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tydfcd {
        margin: 16px 12px;
        padding: 20px;
        border-radius: 16px;
    }

    .tydfcd h1 {
        font-size: 1.7rem;
    }

    .tydfcd h2 {
        font-size: 1.35rem;
    }

    .tydfcd p,
    .tydfcd li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tydfcd {
        margin: 10px;
        padding: 16px;
        border-radius: 12px;
    }

    .tydfcd h1 {
        font-size: 1.5rem;
    }

    .tydfcd h2 {
        font-size: 1.25rem;
    }

    .tydfcd p,
    .tydfcd li {
        font-size: 14px;
        line-height: 1.7;
    }

    .tydfcd a {
        word-break: break-all;
    }
}

@media (max-width: 768px) {
    .rs-tournaments__wrap {
        overflow: hidden;
    }

    .rs-tournaments__track {
        display: flex;
        gap: 16px;
        transition: transform .35s ease;
        will-change: transform;
    }

    .rs-tournament-card {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        padding: 20px;
        border-radius: 14px;
    }

    .rs-tournament-card__title {
        font-size: 1.15rem;
        line-height: 1.3;
    }

    .rs-tournament-card__desc {
        font-size: .9rem;
        line-height: 1.6;
    }

    .rs-tournament-card__prize-amount {
        font-size: 1.5rem;
    }

    .rs-tournament-card__timer {
        justify-content: center;
        padding: 10px;
        gap: 4px;
        flex-wrap: nowrap;
    }

    .rs-timer-unit {
        min-width: 45px;
    }

    .rs-timer-val {
        font-size: 1.2rem;
    }

    .rs-timer-unit small {
        font-size: .55rem;
    }

    .rs-slider-nav--tournaments {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .rs-tournament-card {
        padding: 16px;
    }

    .rs-tournament-card__badge {
        font-size: .7rem;
    }

    .rs-tournament-card__title {
        font-size: 1rem;
    }

    .rs-tournament-card__desc {
        font-size: .85rem;
    }

    .rs-tournament-card__prize-label {
        font-size: .65rem;
    }

    .rs-tournament-card__prize-amount {
        font-size: 1.3rem;
    }

    .rs-tournament-card__timer {
        padding: 8px;
    }

    .rs-timer-unit {
        min-width: 38px;
    }

    .rs-timer-val {
        font-size: 1rem;
    }

    .rs-btn--gold {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 1024px) {
    .rs-header__actions {
        display: none !important;
    }
}