@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --c-bg: #171554;
    --c-header: #211E6B;
    --c-btn-login: #1B1C5F;
    --c-btn-reg: #F01CA2;
    --c-text: #e8e6ff;
    --c-text-muted: #a8a3d8;
    --c-accent: #F01CA2;
    --c-border: rgba(255, 255, 255, 0.1);
    --c-card: rgba(33, 30, 107, 0.7);
    --c-card-hover: rgba(33, 30, 107, 0.95);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

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

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

body {
    font-family: 'Inter', 'Montserrat', Arial, sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ff6ec7;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

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

.rs-site-header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.rs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.rs-nav a {
    color: var(--c-text);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

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

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

.rs-online-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--c-border);
}

.rs-online-dot {
    width: 7px;
    height: 7px;
    background: #2ecc71;
    border-radius: 50%;
    animation: blink 1.8s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.3
    }
}

.btn-rs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
}

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

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

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

.btn-login:hover {
    background: #2a2c8a;
    color: #fff;
}

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

.btn-reg:hover {
    background: #d41890;
    color: #fff;
    filter: brightness(1.08);
}

.btn-bonus {
    background: linear-gradient(135deg, #F01CA2, #a0188a);
    color: #fff;
}

.btn-bonus:hover {
    filter: brightness(1.12);
    color: #fff;
}

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

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

.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-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--c-header);
    padding: 12px 16px 16px;
    border-top: 1px solid var(--c-border);
}

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

.rs-mobile-menu a {
    color: var(--c-text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.rs-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
}

.rs-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.rs-slider {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.rs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
}

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

.rs-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
}

.rs-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 48px;
}

.rs-slide-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.rs-slide-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
    line-height: 1.6;
}

.rs-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.rs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.rs-dot.active {
    background: var(--c-accent);
    transform: scale(1.3);
}

.rs-breadcrumb {
    padding: 12px 0;
    background: rgba(27, 28, 95, 0.5);
    border-bottom: 1px solid var(--c-border);
}

.rs-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

.rs-breadcrumb-list li::after {
    content: '/';
    margin-left: 6px;
    color: rgba(255, 255, 255, 0.25);
}

.rs-breadcrumb-list li:last-child::after {
    display: none;
}

.rs-breadcrumb-list a {
    color: var(--c-text-muted);
}

.rs-breadcrumb-list a:hover {
    color: var(--c-accent);
}

.rs-breadcrumb-list li:last-child {
    color: var(--c-accent);
    font-weight: 500;
}

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

.rs-section-title {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    margin-bottom: 28px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.rs-section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
    margin-top: 10px;
}

.rs-block {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.rs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.rs-info-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table.rs-info-table th,
table.rs-info-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    vertical-align: top;
}

table.rs-info-table th {
    background: rgba(27, 28, 95, 0.8);
    color: var(--c-text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    width: 38%;
}

table.rs-info-table td {
    color: #fff;
}

table.rs-info-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

table.rs-info-table tr:hover td {
    background: rgba(240, 28, 162, 0.07);
}

.rs-rating-stars {
    color: #f4c430;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rs-jackpots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rs-jackpot-card {
    flex: 1 1 220px;
    background: linear-gradient(135deg, #1B1C5F 0%, #2a1060 100%);
    border: 1px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(240, 28, 162, 0.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.rs-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(240, 28, 162, 0.35);
}

.rs-jackpot-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.rs-jackpot-name {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rs-jackpot-amount {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #f4c430;
    font-family: 'Montserrat', sans-serif;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0.75
    }
}

.rs-jackpot-label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-top: 4px;
}

.rs-tournaments-grid {
    display: flex;
    gap: 20px;
}

.rs-tournament-card {
    flex: 1 1 0;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.rs-tournament-header {
    background: linear-gradient(135deg, #1B1C5F, #2e1a80);
    padding: 18px 20px;
    border-bottom: 2px solid var(--c-accent);
}

.rs-tournament-header h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.rs-tournament-body {
    padding: 18px 20px;
}

.rs-tournament-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    line-height: 1.55;
}

.rs-tournament-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.rs-meta-label {
    color: var(--c-text-muted);
}

.rs-meta-value {
    font-weight: 600;
    color: #fff;
}

.rs-timer {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.rs-prize {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4c430;
}

.rs-app-table-wrap {
    overflow-x: auto;
}

table.rs-app-table {
    width: 100%;
    min-width: 360px;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

table.rs-app-table th,
table.rs-app-table td {
    padding: 11px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

table.rs-app-table th {
    background: rgba(27, 28, 95, 0.8);
    color: var(--c-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

table.rs-app-table td {
    color: #fff;
}

table.rs-app-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.rs-download-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--c-border);
    background: rgba(27, 28, 95, 0.8);
    color: #fff;
    transition: all var(--transition);
}

.btn-download:hover {
    background: var(--c-btn-login);
    border-color: var(--c-accent);
    transform: translateY(-2px);
    color: #fff;
}

.btn-download svg {
    flex-shrink: 0;
}

.rs-wheel-section {
    text-align: center;
}

.rs-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.rs-canvas-wrap {
    position: relative;
    display: inline-block;
}

#rs-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(240, 28, 162, 0.3), 0 0 32px rgba(240, 28, 162, 0.2);
}

.rs-wheel-pointer {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 24px solid #F01CA2;
    filter: drop-shadow(0 0 6px rgba(240, 28, 162, 0.7));
}

#rs-spin-btn {
    padding: 14px 48px;
    font-size: 1.1rem;
    border-radius: 40px;
    background: linear-gradient(135deg, #F01CA2, #a0188a);
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(240, 28, 162, 0.4);
}

#rs-spin-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(240, 28, 162, 0.55);
}

#rs-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rs-wheel-result {
    display: none;
    background: linear-gradient(135deg, rgba(27, 28, 95, 0.95), rgba(33, 30, 107, 0.95));
    border: 2px solid var(--c-accent);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    animation: fadeInUp 0.4s ease;
    max-width: 380px;
}

.rs-wheel-result.show {
    display: block;
}

.rs-wheel-result h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}

.rs-wheel-result .rs-bonus-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f4c430;
    margin: 12px 0;
}

.rs-wheel-result p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.rs-content-block {
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--c-text);
}

.rs-content-block h1, .rs-content-block h2, .rs-content-block h3, .rs-content-block h4, .rs-content-block h5, .rs-content-block h6 {
    color: #fff;
    margin: 24px 0 12px;
    font-family: 'Montserrat', sans-serif;
}

.rs-content-block h2 {
    font-size: 1.4rem;
}

.rs-content-block h3 {
    font-size: 1.15rem;
}

.rs-content-block p {
    margin-bottom: 14px;
}

.rs-content-block ul, .rs-content-block ol {
    margin: 12px 0 16px 20px;
}

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

.rs-content-block strong {
    color: #fff;
    font-weight: 600;
}

.rs-content-block a {
    color: var(--c-accent);
}

.rs-content-block blockquote {
    border-left: 3px solid var(--c-accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: rgba(240, 28, 162, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text-muted);
    font-style: italic;
}

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

.rs-content-block table th, .rs-content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: left;
}

.rs-content-block table th {
    background: rgba(27, 28, 95, 0.8);
    color: var(--c-text-muted);
    text-transform: uppercase;
    font-size: 0.78rem;
}

.rs-author-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(27, 28, 95, 0.5);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 28px;
}

.rs-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-accent);
}

.rs-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.rs-author-meta {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-top: 2px;
    line-height: 1.5;
}

.rs-author-meta a {
    color: var(--c-accent);
}

.rs-faq {
}

.rs-faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--c-card);
    transition: border-color var(--transition);
}

.rs-faq-item.open {
    border-color: rgba(240, 28, 162, 0.4);
}

.rs-faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.rs-faq-q:hover {
    background: rgba(255, 255, 255, 0.04);
}

.rs-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(240, 28, 162, 0.15);
    border: 1px solid rgba(240, 28, 162, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--c-accent);
    transition: transform var(--transition);
}

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

.rs-faq-a {
    display: none;
    padding: 0 20px 18px;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.rs-faq-item.open .rs-faq-a {
    display: block;
}

.rs-site-footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 48px 0 24px;
    margin-top: 32px;
}

.rs-footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.rs-footer-col {
    flex: 1 1 200px;
}

.rs-footer-col h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.rs-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rs-footer-links a {
    color: var(--c-text-muted);
    font-size: 0.875rem;
    transition: color var(--transition);
}

.rs-footer-links a:hover {
    color: var(--c-accent);
}

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

.rs-pay-logo, .rs-prov-logo {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rs-footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 20px;
    text-align: center;
}

.rs-footer-copyright {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}

.rs-footer-legal {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.rs-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1B1C5F 0%, #2e1a80 50%, #1B1C5F 100%);
    border-top: 2px solid var(--c-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.rs-widget-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
}

.rs-widget-text span {
    color: #f4c430;
    font-weight: 800;
}

.rs-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.rs-widget-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.rs-spinner-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(23, 21, 84, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--c-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.rs-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rs-badge-green {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.rs-badge-pink {
    background: rgba(240, 28, 162, 0.15);
    color: #F01CA2;
    border: 1px solid rgba(240, 28, 162, 0.3);
}

.rs-badge-gold {
    background: rgba(244, 196, 48, 0.15);
    color: #f4c430;
    border: 1px solid rgba(244, 196, 48, 0.3);
}

.rs-divider {
    height: 1px;
    background: var(--c-border);
    margin: 32px 0;
}

.rs-sep-wave {
    height: 40px;
    overflow: hidden;
    line-height: 0;
}

.rs-sep-wave svg {
    width: 100%;
    height: 100%;
}

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

.rs-sr-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.wp-block-group {
}

.wp-block-columns {
    display: flex;
    gap: 20px;
}

.wp-has-text-align-center {
    text-align: center;
}

.elementor-widget-wrap {
}

.entry-content {
}

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

    .rs-burger {
        display: flex;
    }

    .rs-tournaments-grid {
        flex-direction: column;
    }

    .rs-slide-content {
        padding: 40px 24px;
    }

    .rs-footer-grid {
        gap: 24px;
    }

    .rs-jackpots-grid {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .rs-header-inner {
        padding: 10px 12px;
    }

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

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

    .rs-block {
        padding: 18px;
    }

    .rs-slide-content {
        padding: 32px 16px;
    }

    .rs-jackpot-card {
        flex: 1 1 140px;
    }

    .rs-sticky-widget {
        flex-direction: column;
        gap: 8px;
        padding: 10px 40px 10px 16px;
    }

    .rs-widget-text {
        font-size: 0.8rem;
        text-align: center;
    }

    .rs-download-btns {
        flex-direction: column;
    }
}

.rs-c4f2a {
    display: block;
}

.rs-d8b3e {
    opacity: 1;
}

.rs-e7a91 {
    pointer-events: auto;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.rs-animate-in {
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 768px) {
    .rs-tournaments-grid {
        display: flex;
        flex-direction: column;
        overflow: visible;
        gap: 16px;
        padding-bottom: 0;
    }

    .rs-tournament-card {
        display: block;
        width: 100%;
        min-width: 0;
        flex: none;
        opacity: 1;
        visibility: visible;
        background: rgba(33, 30, 107, .95);
        border: 1px solid rgba(255, 255, 255, .14);
    }

    .rs-tournament-header,
    .rs-tournament-body {
        display: block;
    }

    .rs-tournament-header {
        padding: 16px;
    }

    .rs-tournament-body {
        padding: 16px;
    }

    .rs-tournament-header h3,
    .rs-tournament-desc,
    .rs-meta-row,
    .rs-timer,
    .rs-prize {
        opacity: 1;
        visibility: visible;
    }
}
