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

:root {
    --clr-bg: #11111B;
    --clr-header: #1B1B2C;
    --clr-primary: #F5C453;
    --clr-secondary: #1B1B2C;
    --clr-text: #E8E8F0;
    --clr-text-muted: #9898B0;
    --clr-border: rgba(245, 196, 83, 0.18);
    --clr-card: #181828;
    --clr-card2: #1e1e32;
    --radius: 12px;
    --radius-lg: 18px;
    --transition: 0.22s ease;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.38);
}

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

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a:hover {
    color: #ffd97a;
}

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

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

.rx-skip-link {
    position: absolute;
    left: -9999px;
    top: 4px;
    background: var(--clr-primary);
    color: #111;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    z-index: 9999;
}

.rx-skip-link:focus {
    left: 4px;
}

/* ===== HEADER ===== */
.rx-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.rx-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    flex-wrap: nowrap;
}

.rx-logo img {
    height: 46px;
    width: auto;
    display: block;
}

.rx-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.rx-nav a {
    color: var(--clr-text);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 7px;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.rx-nav a:hover {
    background: rgba(245, 196, 83, 0.12);
    color: var(--clr-primary);
}

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

.rx-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--clr-text-muted);
    white-space: nowrap;
    margin-right: 6px;
}

.rx-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4cef7a;
    animation: rx-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes rx-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.35);
    }
}

.rx-online-count {
    font-weight: 700;
    color: var(--clr-text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

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

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

.btn-login {
    background: var(--clr-secondary);
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
    padding: 8px 18px;
}

.btn-login:hover {
    background: rgba(245, 196, 83, 0.1);
    color: var(--clr-primary);
}

.btn-signup {
    background: var(--clr-primary);
    color: #111118;
    padding: 8px 18px;
}

.btn-signup:hover {
    background: #ffd55a;
    color: #111118;
}

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

.btn-xl {
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 11px;
}

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

.rx-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.rx-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--clr-header);
    padding: 18px 20px;
    border-top: 1px solid var(--clr-border);
    gap: 6px;
    animation: rx-fadeDown 0.2s ease;
}

@keyframes rx-fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.rx-mobile-nav a {
    color: var(--clr-text);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background var(--transition);
}

.rx-mobile-nav a:hover {
    background: rgba(245, 196, 83, 0.1);
    color: var(--clr-primary);
}

/* =====  ===== */
.rx-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

.rx-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero-footer.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.rx-hero:hover .rx-hero-bg {
    transform: scale(1);
}

.rx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 17, 27, 0.93) 42%, rgba(17, 17, 27, 0.55) 80%, rgba(17, 17, 27, 0.18) 100%);
    z-index: 1;
}

.rx-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 580px;
}

.rx-hero-eyebrow {
    display: inline-block;
    background: rgba(245, 196, 83, 0.18);
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.rx-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.rx-hero-title span {
    color: var(--clr-primary);
}

.rx-hero-sub {
    font-size: 17px;
    color: #c8c8dc;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 480px;
}

.rx-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.rx-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 196, 83, 0.08);
    border: 1px solid rgba(245, 196, 83, 0.25);
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 26px;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.rx-hero-badge strong {
    color: var(--clr-primary);
}

/* ===== SECTIONS ===== */
.rx-section {
    padding: 64px 0;
}

.rx-section-sm {
    padding: 40px 0;
}

.rx-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.rx-section-sub {
    color: var(--clr-text-muted);
    font-size: 15px;
    margin-bottom: 36px;
}

.rx-divider {
    width: 48px;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 3px;
    margin: 10px 0 28px;
}

/* ===== PROS/CONS ===== */
.rx-procon-grid {
    display: flex;
    gap: 24px;
}

.rx-procon-col {
    flex: 1;
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--clr-border);
}

.rx-procon-col--pros {
    border-top: 3px solid #4cef7a;
}

.rx-procon-col--cons {
    border-top: 3px solid #ef4c5e;
}

.rx-procon-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--clr-border);
}

.rx-procon-head .icon-pros {
    color: #4cef7a;
    font-size: 20px;
}

.rx-procon-head .icon-cons {
    color: #ef4c5e;
    font-size: 20px;
}

.rx-procon-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.rx-procon-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--clr-text);
}

.rx-procon-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.rx-procon-col--pros .rx-procon-list li::before {
    background-color: rgba(76, 239, 122, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234cef7a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.rx-procon-col--cons .rx-procon-list li::before {
    background-color: rgba(239, 76, 94, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23ef4c5e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===== JACKPOTS ===== */
.rx-jackpots-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.rx-jackpot-card {
    flex: 1;
    min-width: 200px;
    background: var(--clr-card2);
    border-radius: var(--radius-lg);
    padding: 26px 20px 22px;
    border: 1px solid var(--clr-border);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.rx-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(245, 196, 83, 0.18);
}

.rx-jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), #ff9d3a);
}

.rx-jackpot-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.rx-jackpot-amount {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--clr-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
}

.rx-jackpot-game {
    font-size: 13px;
    color: var(--clr-text-muted);
}

/* ===== MIRRORS TABLE ===== */
.rx-mirrors-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 28px;
    overflow-x: auto;
}

.rx-mirrors-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.rx-mirrors-meta .rx-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 239, 122, 0.1);
    border: 1px solid rgba(76, 239, 122, 0.3);
    color: #4cef7a;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.rx-mirrors-meta p {
    font-size: 13px;
    color: var(--clr-text-muted);
}

table.rx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

table.rx-table thead tr {
    background: rgba(245, 196, 83, 0.08);
    border-bottom: 2px solid var(--clr-primary);
}

table.rx-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clr-primary);
}

table.rx-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition);
}

table.rx-table tbody tr:hover {
    background: rgba(245, 196, 83, 0.04);
}

table.rx-table tbody td {
    padding: 13px 16px;
    text-align: left;
    color: var(--clr-text);
}

.rx-table-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #4cef7a;
}

.rx-table-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4cef7a;
}

/* ===== BONUSES ===== */
.rx-bonuses-grid {
    display: flex;
    gap: 22px;
}

.rx-bonus-card {
    flex: 1;
    background: var(--clr-card2);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.rx-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.rx-bonus-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--clr-primary);
    color: #111118;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rx-bonus-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 2px;
}

.rx-bonus-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.rx-bonus-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1.1;
}

.rx-bonus-desc {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.rx-bonus-terms {
    font-size: 11.5px;
    color: rgba(152, 152, 176, 0.7);
}

/* ===== MOBILE SLIDER ===== */
.rx-slider-wrap {
    overflow: hidden;
}

.rx-slider-track {
    display: flex;
    gap: 22px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.rx-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.rx-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 196, 83, 0.3);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
}

.rx-slider-dot.active {
    background: var(--clr-primary);
    transform: scale(1.3);
}

/* ===== DEMO GAME ===== */
.rx-demo-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
}

.rx-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--clr-border);
    gap: 12px;
    flex-wrap: wrap;
}

.rx-demo-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.rx-demo-frame-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #0a0a14;
}

.rx-demo-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.rx-demo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #0a0a14;
    color: var(--clr-text-muted);
    font-size: 14px;
}

.rx-demo-placeholder-icon {
    font-size: 56px;
    opacity: 0.4;
}

/* ===== CONTENT REVIEW ===== */
.rx-content-wrap {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 36px 32px;
}

.rx-content-wrap h1,
.rx-content-wrap h2,
.rx-content-wrap h3,
.rx-content-wrap h4,
.rx-content-wrap h5,
.rx-content-wrap h6 {
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px;
}

.rx-content-wrap h1 {
    font-size: 1.9rem;
}

.rx-content-wrap h2 {
    font-size: 1.55rem;
}

.rx-content-wrap h3 {
    font-size: 1.25rem;
}

.rx-content-wrap h4 {
    font-size: 1.1rem;
}

.rx-content-wrap p {
    color: var(--clr-text);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.rx-content-wrap ul,
.rx-content-wrap ol {
    margin: 0 0 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rx-content-wrap li {
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.6;
}

.rx-content-wrap ul li::marker {
    color: var(--clr-primary);
}

.rx-content-wrap ol li::marker {
    color: var(--clr-primary);
    font-weight: 700;
}

.rx-content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.rx-content-wrap table th,
.rx-content-wrap table td {
    padding: 11px 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rx-content-wrap table th {
    background: rgba(245, 196, 83, 0.1);
    color: var(--clr-primary);
    font-weight: 700;
}

.rx-content-wrap table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.rx-content-wrap a {
    color: var(--clr-primary);
    font-weight: 500;
}

.rx-content-wrap strong {
    color: #fff;
    font-weight: 700;
}

.rx-content-wrap em {
    color: #c0c0d8;
}

.rx-content-wrap blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 14px 18px;
    margin: 20px 0;
    background: rgba(245, 196, 83, 0.07);
    border-radius: 0 8px 8px 0;
    color: #c8c8dc;
    font-style: italic;
}

/* ===== AUTHOR ===== */
.rx-author-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--clr-card2);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    padding: 22px 24px;
    margin-top: 32px;
}

.rx-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-primary);
    flex-shrink: 0;
}

.rx-author-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.rx-author-title {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.rx-author-bio {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.rx-author-link {
    font-size: 13px;
    color: var(--clr-primary);
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

/* ===== FAQ ===== */
.rx-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rx-faq-item {
    background: var(--clr-card);
    border-radius: var(--radius);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: border-color var(--transition);
}

.rx-faq-item.open {
    border-color: rgba(245, 196, 83, 0.4);
}

.rx-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    transition: color var(--transition);
}

.rx-faq-question:hover {
    color: var(--clr-primary);
}

.rx-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1.5px solid rgba(245, 196, 83, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), background var(--transition);
    color: var(--clr-primary);
    font-size: 15px;
    line-height: 1;
}

.rx-faq-item.open .rx-faq-icon {
    transform: rotate(45deg);
    background: rgba(245, 196, 83, 0.15);
}

.rx-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 22px;
}

.rx-faq-answer-inner {
    padding-bottom: 18px;
    font-size: 14.5px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.rx-faq-item.open .rx-faq-answer {
    max-height: 600px;
}

/* ===== FOOTER ===== */
.rx-footer {
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    margin-top: auto;
}

.rx-footer-main {
    padding: 56px 0 36px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.rx-footer-col {
    flex: 1;
    min-width: 180px;
}

.rx-footer-col-logo {
    flex: 0 0 220px;
}

.rx-footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.rx-footer-tagline {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 200px;
}

.rx-footer-heading {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 14px;
}

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

.rx-footer-links li a {
    font-size: 13.5px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.rx-footer-links li a:hover {
    color: var(--clr-primary);
}

.rx-footer-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.rx-footer-logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition);
}

.rx-footer-logo-badge:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.rx-footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 22px 0;
}

.rx-footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.rx-footer-legal {
    font-size: 12px;
    color: rgba(152, 152, 176, 0.6);
    line-height: 1.7;
    max-width: 680px;
}

.rx-footer-legal strong {
    color: var(--clr-text-muted);
}

.rx-age-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ef4c5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #ef4c5e;
}

/* ===== STICKY WIDGET ===== */
.rx-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #1a1a2e 0%, #1B1B2C 100%);
    border-top: 2px solid var(--clr-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.55);
    animation: rx-slideUp 0.5s 1.5s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes rx-slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.rx-widget-text {
    flex: 1;
}

.rx-widget-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.rx-widget-bonus {
    font-size: 17px;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1.2;
}

.rx-widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
    transition: color var(--transition);
}

.rx-widget-close:hover {
    color: #fff;
}

.rx-widget.hidden {
    display: none;
}

/* ===== INFO PAGES ===== */
.rx-info-content {
    padding: 56px 0 80px;
}

.rx-info-content h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.rx-info-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
}

.rx-info-content p {
    color: var(--clr-text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

.rx-info-content ul {
    margin: 0 0 16px 22px;
}

.rx-info-content ul li {
    color: var(--clr-text);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 6px;
}

.rx-info-content a {
    color: var(--clr-primary);
}

/* ===== BREADCRUMB ===== */
.rx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
}

.rx-breadcrumb a {
    color: var(--clr-text-muted);
}

.rx-breadcrumb a:hover {
    color: var(--clr-primary);
}

.rx-breadcrumb-sep {
    color: rgba(152, 152, 176, 0.5);
}

/* ===== ANIMATIONS ===== */
.rx-fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ===== UNUSED WORDPRESS CLASSES (uniqueness layer) ===== */
.wp-block-cover {
    display: block;
}

.wp-block-image figure {
    display: block;
}

.elementor-widget-wrap {
    display: block;
}

.post-thumbnail {
    display: block;
}

.entry-content {
    display: block;
}

.site-branding {
    display: block;
}

.widget-area {
    display: block;
}

.hentry {
    display: block;
}

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

.rx9f4a {
    display: block;
}

.f7b2d9 {
    visibility: visible;
}

.b3e1c8 {
    opacity: 1;
}

.d5a7f2 {
    position: static;
}

.k8m3x1 {
    font-style: normal;
}

.q2w9r5 {
    letter-spacing: normal;
}

.j4n6p0 {
    word-spacing: normal;
}

.m1p8z3 {
    text-transform: none;
}

.h2c5n7 {
    border-spacing: 0;
}

.v6x4k9 {
    outline: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rx-procon-grid {
        flex-direction: column;
    }

    .rx-footer-main {
        gap: 32px;
    }
}

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

    .rx-burger {
        display: flex;
    }

    .rx-online-badge {
        display: none;
    }

    .rx-hero-content {
        padding: 60px 0;
    }

    .rx-hero-overlay {
        background: linear-gradient(180deg, rgba(17, 17, 27, 0.88) 0%, rgba(17, 17, 27, 0.72) 100%);
    }

    .rx-bonuses-grid {
        display: none;
    }

    .rx-slider-wrap {
        display: block !important;
    }

    .rx-jackpots-grid {
        flex-wrap: wrap;
    }

    .rx-jackpot-card {
        min-width: calc(50% - 9px);
    }

    .rx-demo-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rx-widget {
        flex-wrap: wrap;
    }

    .rx-widget-bonus {
        font-size: 15px;
    }

    .rx-footer-main {
        flex-direction: column;
        gap: 28px;
    }

    .rx-footer-col-logo {
        flex: unset;
    }

    .rx-content-wrap {
        padding: 22px 18px;
    }

    .rx-author-box {
        flex-direction: column;
    }

    .rx-section {
        padding: 44px 0;
    }
}

@media (max-width: 480px) {
    .rx-jackpot-card {
        min-width: 100%;
    }

    .rx-hero-actions {
        flex-direction: column;
    }

    .btn-xl {
        font-size: 15px;
        padding: 13px 26px;
    }

    .rx-widget .btn-signup {
        font-size: 13px;
        padding: 9px 16px;
    }
}

.rx-demo-frame-wrap {
    width: 100%;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.rx-demo-frame {
    display: block;
    width: 100%;
    height: 720px;
    border: 0;
    background: #000;
}

@media (max-width: 992px) {
    .rx-demo-frame {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .rx-demo-frame-wrap {
        margin: 0 -14px;
        border-radius: 0;
    }

    .rx-demo-frame {
        height: 520px;
    }
}

@media (max-width: 480px) {
    .rx-demo-frame {
        height: 430px;
    }
}