/* Riobet Mirror Site — style.css?ver=1.7 */
/* WP compatibility stubs */
.wp-block-group, .wp-block-columns, .elementor-section {
    display: block
}

.entry-content, .post-content, .page-content {
    display: block
}

/* unused placeholder classes for uniqualization */
.xq7r2a {
    display: none
}

.f9k1mb {
    visibility: hidden
}

.z3p8wq {
    opacity: 0
}

.u4t6lp {
    pointer-events: none
}

.j2x9nd {
    user-select: none
}

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

:root {
    --clr-header: #0d2f56;
    --clr-footer: #091e38;
    --clr-btn-login: #5B695F;
    --clr-btn-login-h: #4a5750;
    --clr-btn-reg: #2F8637;
    --clr-btn-reg-h: #256b2c;
    --clr-bg: #0C220E;
    --clr-bg2: #0f2910;
    --clr-accent: #e8b84b;
    --clr-text: #e8ede9;
    --clr-text-muted: #9eb09f;
    --clr-border: rgba(232, 184, 75, 0.2);
    --clr-card: rgba(255, 255, 255, 0.04);
    --clr-plus: #2F8637;
    --clr-minus: #c0392b;
    --radius: 10px;
    --radius-lg: 16px;
}

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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: #f5cf7a
}

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

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

.section-pad {
    padding: 64px 0
}

.section-pad-sm {
    padding: 40px 0
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    border-radius: var(--radius);
    padding: 10px 22px;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn-login {
    background: var(--clr-btn-login);
    color: #fff
}

.btn-login:hover {
    background: var(--clr-btn-login-h);
    color: #fff
}

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

.btn-reg:hover {
    background: var(--clr-btn-reg-h);
    color: #fff
}

.btn-gold {
    background: var(--clr-accent);
    color: #0C220E;
    font-weight: 700
}

.btn-gold:hover {
    background: #f5cf7a;
    color: #0C220E
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1rem;
    border-radius: 12px
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.125rem;
    border-radius: 14px
}

/* ===== HEADER ===== */
#rb-header {
    background: var(--clr-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.header-inner {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.header-nav a {
    color: #c8dff0;
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

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

.header-online {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: #9eb09f;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2F8637;
    box-shadow: 0 0 6px #2F8637;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .4
    }
}

.header-btns {
    display: flex;
    gap: 8px;
    align-items: center
}

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

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #c8dff0;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

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

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

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

.mobile-nav {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    color: #c8dff0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .9rem;
    transition: background .2s;
}

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

/* ===== HERO ===== */
#rb-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/rio-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 34, 14, .92) 0%, rgba(12, 34, 14, .6) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 184, 75, .15);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--clr-accent)
}

.hero-desc {
    font-size: 1rem;
    color: #b8ccba;
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* ===== SECTION HEADINGS ===== */
.section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.section-sub {
    color: var(--clr-text-muted);
    font-size: .9rem;
    margin-bottom: 32px;
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* ===== PROS/CONS ===== */
#rb-proscons {
    background: var(--clr-bg2)
}

.proscons-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 24px;
}

.proscons-col {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(4px);
}

.proscons-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proscons-col-title.pros {
    color: #4ecb71
}

.proscons-col-title.cons {
    color: #e05a4e
}

.proscons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

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

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

.pros-list li::before {
    background-color: #2F8637;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1.5 6l3 3 6-6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
}

.cons-list li::before {
    background-color: #c0392b;
    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='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
}

/* ===== MIRRORS TABLE ===== */
#rb-mirrors {
    background: var(--clr-bg)
}

.mirrors-timestamp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(47, 134, 55, .12);
    border: 1px solid rgba(47, 134, 55, .3);
    color: #4ecb71;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border)
}

.rb-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: var(--clr-card);
}

.rb-table thead tr {
    background: rgba(13, 47, 86, .6)
}

.rb-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: .82rem;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--clr-border);
}

.rb-table td {
    padding: 13px 16px;
    font-size: .88rem;
    color: var(--clr-text);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    vertical-align: middle;
}

.rb-table tbody tr:last-child td {
    border-bottom: none
}

.rb-table tbody tr:hover {
    background: rgba(232, 184, 75, .05)
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    color: #4ecb71;
}

.mirror-status::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ecb71;
    box-shadow: 0 0 5px #4ecb71;
}

.mirror-link {
    color: var(--clr-accent);
    font-weight: 500
}

.mirror-link:hover {
    color: #f5cf7a;
    text-decoration: underline
}

/* ===== APP INFO ===== */
#rb-app {
    background: var(--clr-bg2)
}

.app-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 32px;
    align-items: start
}

.app-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border)
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 14px 20px;
    color: var(--clr-text);
    font-size: .9rem;
    transition: background .2s, border-color .2s;
    text-decoration: none;
}

.app-store-btn:hover {
    background: rgba(232, 184, 75, .08);
    border-color: var(--clr-accent);
    color: var(--clr-text)
}

.app-store-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px
}

.app-store-btn strong {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    color: #fff
}

.app-store-btn small {
    font-size: .75rem;
    color: var(--clr-text-muted)
}

/* ===== VIDEO ===== */
#rb-video {
    background: var(--clr-bg)
}

.video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

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

/* ===== SLOT GAME ===== */
#rb-slot {
    background: var(--clr-bg2)
}

.slot-machine {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(13, 47, 86, .45);
    border: 2px solid var(--clr-accent);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: 0 0 40px rgba(232, 184, 75, .12);
}

.slot-title-inner {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, .4);
    border: 2px solid rgba(232, 184, 75, .3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    transition: transform .1s;
}

.slot-reel.spinning {
    animation: reel-spin .15s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: scaleY(1)
    }
    50% {
        transform: scaleY(.1)
    }
    100% {
        transform: scaleY(1)
    }
}

.slot-result {
    text-align: center;
    min-height: 56px;
    margin-bottom: 20px;
    font-size: .95rem;
}

.slot-win {
    color: #4ecb71;
    font-weight: 700;
    font-size: 1.05rem;
    animation: fade-in .4s ease
}

.slot-lose {
    color: #e05a4e;
    font-size: .92rem
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slot-spin-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: var(--clr-btn-reg);
    color: #fff;
    transition: background .2s, transform .15s;
}

.slot-spin-btn:hover:not(:disabled) {
    background: var(--clr-btn-reg-h);
    transform: translateY(-2px)
}

.slot-spin-btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.slot-bonus-btn {
    display: none;
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    font-size: .95rem;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: var(--clr-accent);
    color: #0C220E;
    transition: background .2s, transform .15s;
    text-decoration: none;
    text-align: center;
}

.slot-bonus-btn.show {
    display: block;
    animation: fade-in .4s ease
}

.slot-bonus-btn:hover {
    background: #f5cf7a;
    transform: translateY(-2px)
}

/* ===== AUTHOR ===== */
#rb-author {
    background: var(--clr-bg)
}

.author-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 760px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--clr-accent);
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.author-role {
    font-size: .82rem;
    color: var(--clr-accent);
    font-weight: 500;
    margin-bottom: 12px
}

.author-bio {
    font-size: .88rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 16px
}

.author-socials {
    display: flex;
    gap: 10px
}

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 6px 12px;
    border-radius: 20px;
    transition: color .2s, border-color .2s, background .2s;
}

.author-social-link:hover {
    color: #fff;
    border-color: var(--clr-accent);
    background: rgba(232, 184, 75, .08)
}

/* ===== CONTENT BLOCK ===== */
#rb-content {
    background: var(--clr-bg2)
}

.content-body {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
}

/* Naked HTML inside content block */
.content-body h1, .content-body h2, .content-body h3, .content-body h4 {
    color: #fff;
    font-weight: 700;
    margin: 1.4em 0 .6em;
    line-height: 1.25
}

.content-body h1 {
    font-size: 1.7rem
}

.content-body h2 {
    font-size: 1.4rem
}

.content-body h3 {
    font-size: 1.15rem
}

.content-body h4 {
    font-size: 1rem
}

.content-body p {
    margin-bottom: 1em;
    color: var(--clr-text);
    line-height: 1.7
}

.content-body ul, .content-body ol {
    margin: 0 0 1em 1.4em;
    line-height: 1.7
}

.content-body li {
    margin-bottom: .4em;
    color: var(--clr-text)
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    border-radius: 8px;
    overflow: hidden;
    font-size: .88rem
}

.content-body table th {
    background: rgba(13, 47, 86, .6);
    color: var(--clr-accent);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border)
}

.content-body table td {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    color: var(--clr-text)
}

.content-body table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025)
}

.content-body a {
    color: var(--clr-accent)
}

.content-body a:hover {
    color: #f5cf7a;
    text-decoration: underline
}

.content-body blockquote {
    border-left: 3px solid var(--clr-accent);
    padding-left: 16px;
    margin: 1em 0;
    color: var(--clr-text-muted);
    font-style: italic
}

.content-body strong {
    color: #fff
}

.content-body hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 1.5em 0
}

/* ===== FOOTER ===== */
#rb-footer {
    background: var(--clr-footer);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns:200px 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.footer-col-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

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

.footer-links a {
    font-size: .85rem;
    color: #8aa8bb;
    transition: color .2s
}

.footer-links a:hover {
    color: #fff
}

.footer-payments {
    margin-bottom: 28px
}

.footer-payments-title, .footer-providers-title {
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pay-badge, .prov-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: #b0c8d8;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-copyright {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.6
}

.footer-legal {
    font-size: .72rem;
    color: #5a7585;
    line-height: 1.6;
    max-width: 560px
}

/* ===== STICKY WIDGET ===== */
#rb-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--clr-header) 0%, #0f3a14 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.widget-text {
    font-size: .88rem;
    font-weight: 500;
    color: #c8dff0;
    white-space: nowrap
}

.widget-text strong {
    color: var(--clr-accent)
}

.widget-btn {
    background: var(--clr-btn-reg);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.widget-btn:hover {
    background: var(--clr-btn-reg-h);
    transform: translateY(-2px);
    color: #fff
}

.widget-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6a8a9a;
    font-size: 1.1rem;
    padding: 4px;
    line-height: 1;
    transition: color .2s;
}

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

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

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

.breadcrumb a:hover {
    color: var(--clr-accent)
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, .2)
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 28px
    }

    .footer-grid > :first-child {
        grid-column: 1/-1
    }

    .proscons-grid {
        grid-template-columns:1fr
    }

    .app-grid {
        grid-template-columns:1fr
    }
}

@media (max-width: 767px) {
    .header-inner {
        grid-template-columns:auto 1fr auto
    }

    .header-nav {
        display: none
    }

    .header-online {
        display: none
    }

    .burger-btn {
        display: flex
    }

    .hero-content {
        padding: 56px 0
    }

    .footer-grid {
        grid-template-columns:1fr
    }

    .section-pad {
        padding: 44px 0
    }

    .author-card {
        flex-direction: column
    }

    .content-body {
        padding: 20px
    }
}

@media (max-width: 480px) {
    .header-btns .btn-login {
        display: none
    }

    .widget-text {
        font-size: .78rem
    }

    .slot-reel {
        width: 66px;
        height: 66px;
        font-size: 1.9rem
    }
}

/* ===== Unused WP-style stubs ===== */
.wp-caption, .wp-caption-text {
    display: block
}

.gallery-caption {
    display: block
}

.bypostauthor {
    display: block
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.ydhfw {
    --yd-bg: #122116;
    --yd-surface: #1a2b1d;
    --yd-surface-2: #213525;
    --yd-text: #eef5ef;
    --yd-muted: #b7c6b9;
    --yd-line: rgba(232, 184, 75, 0.18);
    --yd-accent: #e8b84b;
    --yd-accent-dark: #f5cf7a;
    --yd-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    --yd-radius: 22px;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: linear-gradient(180deg, var(--yd-surface) 0%, var(--yd-bg) 100%);
    border: 1px solid var(--yd-line);
    border-radius: var(--yd-radius);
    box-shadow: var(--yd-shadow);
    color: var(--yd-text);
    font-size: 17px;
    line-height: 1.75;
}

.ydhfw > *:first-child {
    margin-top: 0;
}

.ydhfw h1,
.ydhfw h2,
.ydhfw h3,
.ydhfw h4,
.ydhfw h5,
.ydhfw h6 {
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ydhfw h1 {
    font-size: clamp(32px, 5vw, 50px);
    margin: 0 0 22px;
}

.ydhfw h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 42px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--yd-line);
}

.ydhfw h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    margin: 28px 0 14px;
}

.ydhfw h4,
.ydhfw h5,
.ydhfw h6 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.ydhfw p {
    margin: 0 0 18px;
    color: var(--yd-text);
}

.ydhfw > h1 + p {
    font-size: 19px;
    color: var(--yd-muted);
}

.ydhfw a {
    color: var(--yd-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.ydhfw a:hover {
    color: var(--yd-accent-dark);
}

.ydhfw ul,
.ydhfw ol {
    margin: 0 0 24px;
}

.ydhfw ul {
    list-style: none;
    padding-left: 0;
}

.ydhfw ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.ydhfw ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yd-accent);
    box-shadow: 0 0 0 6px rgba(232, 184, 75, 0.12);
}

.ydhfw ol {
    list-style: none;
    padding-left: 0;
    counter-reset: yd-steps;
}

.ydhfw ol li {
    position: relative;
    counter-increment: yd-steps;
    padding-left: 56px;
    margin-bottom: 14px;
    min-height: 36px;
}

.ydhfw ol li::before {
    content: counter(yd-steps);
    position: absolute;
    left: 0;
    top: -1px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(232, 184, 75, 0.12);
    border: 1px solid rgba(232, 184, 75, 0.24);
    color: var(--yd-accent);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ydhfw strong {
    font-weight: 800;
    color: #ffffff;
}

.ydhfw em {
    font-style: italic;
}

.ydhfw blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    background: rgba(232, 184, 75, 0.06);
    border-left: 4px solid var(--yd-accent);
    border-radius: 0 16px 16px 0;
    color: var(--yd-muted);
}

.ydhfw table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid var(--yd-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.ydhfw table thead,
.ydhfw table tr:first-child {
    background: rgba(232, 184, 75, 0.08);
}

.ydhfw table th,
.ydhfw table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ydhfw table th {
    color: var(--yd-accent);
    font-size: 14px;
    font-weight: 700;
}

.ydhfw table td {
    color: var(--yd-text);
    font-size: 15px;
    background: transparent;
}

.ydhfw table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.025);
}

.ydhfw hr {
    border: 0;
    border-top: 1px solid var(--yd-line);
    margin: 32px 0;
}

.ydhfw img,
.ydhfw iframe {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.ydhfw > ul:last-child,
.ydhfw > ol:last-child,
.ydhfw > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ydhfw {
        padding: 28px 16px 56px;
        font-size: 16px;
        line-height: 1.7;
        border-radius: 18px;
    }

    .ydhfw h1 {
        margin-bottom: 18px;
    }

    .ydhfw h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .ydhfw h3 {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .ydhfw p {
        margin-bottom: 16px;
    }

    .ydhfw > h1 + p {
        font-size: 17px;
    }

    .ydhfw ul li {
        padding-left: 24px;
    }

    .ydhfw ol li {
        padding-left: 48px;
    }

    .ydhfw ol li::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .ydhfw table th,
    .ydhfw table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ydhfw {
        padding: 24px 14px 44px;
        font-size: 15px;
        border-radius: 16px;
    }

    .ydhfw h1 {
        font-size: 30px;
    }

    .ydhfw h2 {
        font-size: 24px;
    }

    .ydhfw h3 {
        font-size: 20px;
    }

    .ydhfw ul li::before {
        top: 9px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(232, 184, 75, 0.12);
    }

    .ydhfw ol li {
        padding-left: 44px;
    }

    .ydhfw ol li::before {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    #rb-app {
        padding: 40px 0;
    }

    #rb-app .container {
        padding: 0 14px;
    }

    #rb-app .section-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #rb-app .section-sub {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    #rb-app .divider {
        margin-bottom: 20px;
    }

    #rb-app .app-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #rb-app .table-wrap {
        overflow-x: auto;
        border-radius: 14px;
        -webkit-overflow-scrolling: touch;
    }

    #rb-app .rb-table {
        min-width: 520px;
        width: 100%;
    }

    #rb-app .rb-table th,
    #rb-app .rb-table td {
        padding: 11px 12px;
        font-size: 14px;
        line-height: 1.45;
        white-space: nowrap;
    }

    #rb-app .app-grid > div:last-child > p {
        font-size: 15px !important;
        line-height: 1.65 !important;
        margin-bottom: 16px !important;
    }

    #rb-app .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 0;
    }

    #rb-app .app-store-btn {
        width: 100%;
        min-height: 72px;
        padding: 14px 16px;
        border-radius: 14px;
        gap: 12px;
        align-items: center;
    }

    #rb-app .app-store-btn svg {
        width: 24px;
        height: 24px;
    }

    #rb-app .app-store-btn small {
        font-size: 12px;
        line-height: 1.2;
    }

    #rb-app .app-store-btn strong {
        font-size: 16px;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    #rb-app {
        padding: 32px 0;
    }

    #rb-app .container {
        padding: 0 12px;
    }

    #rb-app .section-title {
        font-size: 24px;
    }

    #rb-app .section-sub {
        font-size: 14px;
    }

    #rb-app .app-grid {
        gap: 16px;
    }

    #rb-app .table-wrap {
        margin: 0 -2px;
        border-radius: 12px;
    }

    #rb-app .rb-table {
        min-width: 460px;
    }

    #rb-app .rb-table th,
    #rb-app .rb-table td {
        padding: 10px 11px;
        font-size: 13px;
    }

    #rb-app .app-grid > div:last-child > p {
        font-size: 14px !important;
        margin-bottom: 14px !important;
    }

    #rb-app .app-store-btn {
        min-height: 68px;
        padding: 12px 14px;
        border-radius: 12px;
        gap: 10px;
    }

    #rb-app .app-store-btn svg {
        width: 22px;
        height: 22px;
    }

    #rb-app .app-store-btn small {
        font-size: 11px;
    }

    #rb-app .app-store-btn strong {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    #rb-app .app-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #rb-app .app-grid > div {
        min-width: 0;
    }

    #rb-app .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 14px;
    }

    #rb-app .rb-table {
        width: 100%;
        min-width: 420px;
        border-collapse: collapse;
    }
}

@media (max-width: 480px) {
    #rb-app .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #rb-app .app-grid > div {
        min-width: 0;
    }

    #rb-app .table-wrap {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    #rb-app .rb-table {
        min-width: 380px;
    }

    #rb-app .rb-table th,
    #rb-app .rb-table td {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    #rb-app .app-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    #rb-app .app-store-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    #bonus .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #bonus .fade-up {
        width: 100%;
        max-width: 100%;
    }

    #bonus p {
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin: 0 auto 20px !important;
    }

    #bonus .btn-xl {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        font-size: 15px;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #bonus .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #bonus .section-title {
        font-size: 24px;
        line-height: 1.2;
    }

    #bonus p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }

    #bonus .btn-xl {
        width: 100%;
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 12px;
    }
}