/* Riobet Mirror Site - style.css?ver=1.9 */
/* wp-content/themes/riobet-theme/style.css */

:root {
    --rb-header-bg: #0d2f56;
    --rb-footer-bg: #0b2849;
    --rb-page-bg: #0C220E;
    --rb-btn-login: #5B695F;
    --rb-btn-reg: #2F8637;
    --rb-accent: #f0c040;
    --rb-text: #e8f0e9;
    --rb-text-muted: #a0b8a5;
    --rb-card-bg: #112d14;
    --rb-card-border: #1e4a22;
    --rb-table-head: #0d3a10;
    --rb-radius: 10px;
    --rb-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

/* ── Reset & Base ── */
*, *::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(--rb-page-bg);
    color: var(--rb-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #ffd966;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--rb-text);
}

ul {
    list-style: none;
}

/* ── Unused / WP-style helpers (unikalizatsiya) ── */
.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

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

.site-main {
    display: block;
}

.rb-xq7f2 {
    display: none;
}

.rb-z9k1p {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp-caption {
    display: inline-block;
}

.alignnone {
    float: none;
}

.size-full {
    width: 100%;
}

/* ── Header ── */
#rb-hdr-a3m9 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--rb-header-bg);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.rb-hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 68px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

.rb-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

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

.rb-nav-links a {
    color: #c8dce9;
    font-size: .875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.rb-nav-links a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.rb-hdr-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rb-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--rb-text-muted);
    white-space: nowrap;
}

.rb-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3cce5a;
    animation: rb-pulse 1.8s infinite;
}

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

/* Buttons */
.rb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, filter .15s;
    text-decoration: none !important;
    white-space: nowrap;
}

.rb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
    filter: brightness(1.1);
}

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

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

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

.rb-btn-bonus {
    background: linear-gradient(135deg, #f0c040, #e08a00);
    color: #1a0a00;
}

/* Burger */
.rb-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 6px;
}

.rb-burger span {
    width: 26px;
    height: 2px;
    background: #c8dce9;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    display: block;
}

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

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

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

/* Mobile nav */
.rb-mob-nav {
    display: none;
    flex-direction: column;
    background: #0a2545;
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.rb-mob-nav.open {
    display: flex;
}

.rb-mob-nav a {
    color: #c8dce9;
    padding: 10px 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.rb-mob-nav a:last-child {
    border-bottom: none;
}

.rb-mob-nav-btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* ── Hero / Slider ── */
#rb-hero-k5d2 {
    position: relative;
    overflow: hidden;
    height: 520px;
}

@media (max-width: 768px) {
    #rb-hero-k5d2 {
        height: 280px;
    }
}

.rb-slider-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.rb-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.rb-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 34, 14, .85) 0%, rgba(12, 34, 14, .3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
}

@media (max-width: 768px) {
    .rb-slide-overlay {
        padding: 24px 20px;
    }
}

.rb-slide-title {
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    max-width: 560px;
}

.rb-slide-sub {
    font-size: clamp(.85rem, 2vw, 1.1rem);
    color: #c8e6ca;
    margin-bottom: 24px;
    max-width: 460px;
}

.rb-slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.rb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: background .3s;
    border: none;
}

.rb-dot.active {
    background: var(--rb-accent);
}

.rb-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-slider-arrow:hover {
    background: rgba(0, 0, 0, .7);
}

.rb-arrow-prev {
    left: 16px;
}

.rb-arrow-next {
    right: 16px;
}

/* ── Section wrapper ── */
.rb-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px;
}

.rb-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--rb-accent);
    margin-bottom: 8px;
    text-align: center;
}

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

.rb-divider {
    width: 60px;
    height: 3px;
    background: var(--rb-btn-reg);
    border-radius: 2px;
    margin: 10px auto 32px;
}

/* ── Advantages ── */
.rb-adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.rb-adv-card {
    background: var(--rb-card-bg);
    border: 1px solid var(--rb-card-border);
    border-radius: var(--rb-radius);
    padding: 24px 20px;
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    box-shadow: var(--rb-shadow);
}

.rb-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .55);
}

.rb-adv-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.rb-adv-card h3 {
    font-size: .95rem;
    color: var(--rb-accent);
    margin-bottom: 6px;
}

.rb-adv-card p {
    font-size: .82rem;
    color: var(--rb-text-muted);
    line-height: 1.5;
}

/* ── Mirrors Table ── */
#rb-mirrors-b7w1 {
    background: #071a08;
    border-top: 2px solid var(--rb-card-border);
    border-bottom: 2px solid var(--rb-card-border);
}

.rb-mirror-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .8rem;
    color: #8ec98a;
    margin-bottom: 20px;
}

.rb-mirror-meta-dot {
    width: 7px;
    height: 7px;
    background: #3cce5a;
    border-radius: 50%;
    animation: rb-pulse 1.8s infinite;
}

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

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

.rb-table thead tr {
    background: var(--rb-table-head);
}

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

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

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

.rb-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.rb-mirror-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rb-accent);
    font-weight: 600;
    font-size: .85rem;
    padding: 5px 14px;
    border-radius: 6px;
    background: rgba(240, 192, 64, .1);
    border: 1px solid rgba(240, 192, 64, .25);
    transition: background .2s;
}

.rb-mirror-link:hover {
    background: rgba(240, 192, 64, .2);
    color: #ffd966;
}

.rb-status-ok {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3cce5a;
    font-size: .82rem;
    font-weight: 600;
}

/* ── Winners ── */
.rb-winners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rb-winner-card {
    background: var(--rb-card-bg);
    border: 1px solid var(--rb-card-border);
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1 1 180px;
    max-width: 210px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s;
    box-shadow: var(--rb-shadow);
}

.rb-winner-card:hover {
    transform: translateY(-2px);
}

.rb-winner-rank {
    font-size: .75rem;
    font-weight: 700;
    color: var(--rb-text-muted);
    min-width: 22px;
}

.rb-winner-rank.top3 {
    color: var(--rb-accent);
    font-size: .9rem;
}

.rb-winner-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--rb-text);
    flex: 1;
}

.rb-winner-sum {
    font-size: .82rem;
    color: #3cce5a;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Video ── */
#rb-video-n8s3 {
    background: #071a08;
}

.rb-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--rb-radius);
    overflow: hidden;
    box-shadow: var(--rb-shadow);
    max-width: 860px;
    margin: 0 auto;
}

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

/* ── Wheel of Fortune ── */
#rb-wheel-p2c6 {
    background: linear-gradient(180deg, #071a08 0%, #0C220E 100%);
}

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

.rb-wheel-canvas-wrap {
    position: relative;
    width: 300px;
    height: 300px;
}

#rb-wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(47, 134, 55, .4), 0 0 60px rgba(47, 134, 55, .15);
    display: block;
}

.rb-wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 26px solid var(--rb-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

.rb-wheel-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rb-wheel-result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rb-accent);
    display: none;
}

.rb-wheel-result-text.show {
    display: block;
    animation: rb-fadeIn .5s;
}

@keyframes rb-fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rb-wheel-note {
    font-size: .8rem;
    color: var(--rb-text-muted);
    text-align: center;
    max-width: 340px;
}

/* ── FAQ ── */
.rb-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
}

.rb-faq-item {
    background: var(--rb-card-bg);
    border: 1px solid var(--rb-card-border);
    border-radius: var(--rb-radius);
    overflow: hidden;
    box-shadow: var(--rb-shadow);
}

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

.rb-faq-q:hover {
    background: rgba(255, 255, 255, .04);
}

.rb-faq-q-icon {
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rb-btn-reg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: transform .3s;
    color: #fff;
}

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

.rb-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s;
    padding: 0 20px;
    font-size: .88rem;
    color: var(--rb-text-muted);
    line-height: 1.65;
}

.rb-faq-item.open .rb-faq-a {
    max-height: 400px;
    padding: 0 20px 16px;
}

/* ── Content block ({{ content }}) ── */
.rb-content-block {
    max-width: 860px;
    margin: 0 auto;
    color: var(--rb-text);
    font-size: .93rem;
    line-height: 1.7;
}

.rb-content-block h1,
.rb-content-block h2,
.rb-content-block h3,
.rb-content-block h4 {
    color: var(--rb-accent);
    margin: 1.4em 0 .6em;
}

.rb-content-block p {
    margin-bottom: 1em;
}

.rb-content-block ul,
.rb-content-block ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
    list-style: disc;
}

.rb-content-block ol {
    list-style: decimal;
}

.rb-content-block li {
    margin-bottom: .4em;
}

.rb-content-block a {
    color: var(--rb-accent);
    text-decoration: underline;
}

.rb-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.2em;
    min-width: 320px;
}

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

.rb-content-block table th {
    background: var(--rb-table-head);
    color: var(--rb-accent);
    font-size: .82rem;
    text-transform: uppercase;
}

.rb-content-block blockquote {
    border-left: 3px solid var(--rb-btn-reg);
    padding: 10px 18px;
    margin: 1em 0;
    background: var(--rb-card-bg);
    border-radius: 0 6px 6px 0;
    color: var(--rb-text-muted);
    font-style: italic;
}

.rb-content-block img {
    border-radius: 8px;
    margin: 1em 0;
}

/* ── Author block ── */
.rb-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--rb-card-bg);
    border: 1px solid var(--rb-card-border);
    border-radius: var(--rb-radius);
    padding: 18px 22px;
    max-width: 680px;
    margin: 0 auto 32px;
    box-shadow: var(--rb-shadow);
}

.rb-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--rb-btn-reg);
}

.rb-author-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--rb-text);
}

.rb-author-desc {
    font-size: .78rem;
    color: var(--rb-text-muted);
    line-height: 1.5;
    margin-top: 3px;
}

.rb-author-link {
    font-size: .78rem;
    color: var(--rb-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* ── Footer ── */
#rb-ftr-m1x7 {
    background: var(--rb-footer-bg);
    border-top: 2px solid var(--rb-card-border);
}

.rb-ftr-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px 28px;
}

.rb-ftr-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px;
}

.rb-ftr-col {
    flex: 1 1 180px;
}

.rb-ftr-col-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--rb-text-muted);
    margin-bottom: 14px;
}

.rb-ftr-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rb-ftr-links a {
    font-size: .84rem;
    color: #8fadb5;
    transition: color .2s;
}

.rb-ftr-links a:hover {
    color: var(--rb-accent);
}

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

.rb-ftr-logo-badge {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .72rem;
    color: #9ab5c4;
    font-weight: 600;
    letter-spacing: .03em;
    white-space: nowrap;
}

.rb-ftr-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin: 20px 0;
}

.rb-ftr-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
}

.rb-ftr-legal {
    font-size: .72rem;
    color: #5a7a85;
    line-height: 1.6;
    max-width: 680px;
}

.rb-ftr-copy {
    font-size: .75rem;
    color: #4a6875;
}

/* ── Sticky Widget ── */
#rb-widget-q9a4 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #0a3012 0%, #0d3b14 100%);
    border-top: 2px solid var(--rb-btn-reg);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .45);
}

.rb-widget-text {
    font-size: .88rem;
    color: #c8e6ca;
    font-weight: 500;
}

.rb-widget-bonus {
    font-size: .88rem;
    color: var(--rb-accent);
    font-weight: 700;
}

.rb-widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #5a7a85;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}

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

/* ── Responsive ── */
@media (max-width: 991px) {
    .rb-nav-links {
        display: none;
    }

    .rb-burger {
        display: flex;
    }

    .rb-adv-card {
        max-width: 100%;
        flex: 1 1 160px;
    }
}

@media (max-width: 600px) {
    .rb-hdr-inner {
        height: 60px;
        padding: 0 14px;
    }

    .rb-logo img {
        height: 36px;
    }

    .rb-btn {
        padding: 7px 14px;
        font-size: .8rem;
    }

    .rb-section {
        padding: 40px 14px;
    }

    .rb-winner-card {
        max-width: 100%;
        flex: 1 1 150px;
    }

    #rb-widget-q9a4 {
        padding: 8px 14px;
    }
}

/* ── Animations / transitions ── */
.rb-fade-in {
    animation: rb-fadeIn .6s ease both;
}

@keyframes rb-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.rb-slide-up {
    animation: rb-slideUp .6s ease both;
}

/* ── Unused WP-style extra selectors (uniqueness) ── */
.wp-block-image figcaption {
    font-size: .75rem;
    color: #888;
}

.rb-d8k2m {
    font-size: 0;
    position: absolute;
    left: -9999px;
}

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

#rb-q3t5 {
    display: none;
}

.ydhv {
    --yd-bg: #102015;
    --yd-surface: #182b1d;
    --yd-surface-2: #213625;
    --yd-text: #eef5ef;
    --yd-muted: #b9c7ba;
    --yd-line: rgba(47, 134, 55, 0.24);
    --yd-accent: #2f8637;
    --yd-accent-light: #4db35b;
    --yd-gold: #e8b84b;
    --yd-gold-hover: #ffd66d;
    --yd-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
    --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;
    overflow-wrap: anywhere;
}

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

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

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

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

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

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

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

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

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

.ydhv a:hover {
    color: var(--yd-gold-hover);
}

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

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

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

.ydhv 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(47, 134, 55, 0.14);
}

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

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

.ydhv ol li::before {
    content: counter(yd-steps);
    position: absolute;
    left: 0;
    top: -1px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(47, 134, 55, 0.14);
    border: 1px solid rgba(47, 134, 55, 0.3);
    color: var(--yd-accent-light);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ydhv em {
    font-style: italic;
}

.ydhv blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    background: rgba(47, 134, 55, 0.08);
    border-left: 4px solid var(--yd-accent);
    border-radius: 0 16px 16px 0;
    color: var(--yd-muted);
}

.ydhv 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);
    -webkit-overflow-scrolling: touch;
}

.ydhv table thead,
.ydhv table tr:first-child {
    background: rgba(13, 47, 86, 0.35);
}

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

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

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

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

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

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

.ydhv aside {
    margin: 28px 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--yd-line);
    border-radius: 18px;
}

.ydhv aside h3 {
    margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

    .ydhv aside {
        padding: 18px 16px;
        border-radius: 16px;
    }
}

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

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

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

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

    .ydhv ul li::before {
        top: 9px;
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 5px rgba(47, 134, 55, 0.14);
    }

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

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

#rb-adv-f3k8,
#rb-adv-f3k8 .rb-section,
#rb-adv-f3k8 .rb-adv-grid,
#rb-adv-f3k8 .rb-adv-card,
#rb-adv-f3k8 .rb-adv-card h3,
#rb-adv-f3k8 .rb-adv-card p,
#rb-adv-f3k8 .rb-adv-icon {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

#rb-adv-f3k8 .rb-adv-card {
    border: 1px solid rgba(30, 74, 34, 0.9);
}

#rb-adv-f3k8 {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

#rb-adv-f3k8 .rb-section {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

#rb-adv-f3k8 .rb-adv-grid {
    background: transparent !important;
    background-color: transparent !important;
}

#rb-adv-f3k8 .rb-adv-card {
    background: #112d14 !important;
    background-image: none !important;
    border: 1px solid #1e4a22 !important;
}

#rb-adv-f3k8,
#rb-adv-f3k8 .rb-section,
#rb-adv-f3k8 .rb-adv-grid,
#rb-faq-s5e1,
#rb-faq-s5e1 .rb-section,
#rb-faq-s5e1 .rb-faq-list {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

#rb-adv-f3k8 .rb-adv-card,
#rb-faq-s5e1 .rb-faq-item {
    background: #112d14 !important;
    background-image: none !important;
    border: 1px solid #1e4a22 !important;
}

#rb-faq-s5e1 .rb-faq-q,
#rb-faq-s5e1 .rb-faq-a,
#rb-adv-f3k8 .rb-adv-card h3,
#rb-adv-f3k8 .rb-adv-card p,
#rb-adv-f3k8 .rb-adv-icon,
#rb-faq-s5e1 .rb-section-title,
#rb-faq-s5e1 .rb-section-sub,
#rb-adv-f3k8 .rb-section-title {
    background: transparent !important;
    background-color: transparent !important;
}

html,
body,
#page,
.rb-site-wrapper,
#main-content,
.site,
.site-main,
.page,
.home,
.page-template-default {
    background: #0C220E !important;
    background-color: #0C220E !important;
    background-image: none !important;
}

main,
section,
article,
aside,
div[id^="rb-"] {
    background-color: transparent !important;
    background-image: none !important;
}

#rb-adv-f3k8,
#rb-faq-s5e1,
#rb-adv-f3k8 .rb-section,
#rb-faq-s5e1 .rb-section {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

#rb-adv-f3k8 .rb-adv-card,
#rb-faq-s5e1 .rb-faq-item {
    background: #112d14 !important;
    border: 1px solid #1e4a22 !important;
}

#rb-faq-s5e1 .rb-faq-q,
#rb-faq-s5e1 .rb-faq-a,
#rb-adv-f3k8 .rb-adv-card h3,
#rb-adv-f3k8 .rb-adv-card p,
#rb-adv-f3k8 .rb-adv-icon,
.rb-section-title,
.rb-section-sub,
.rb-divider {
    background: transparent !important;
    background-color: transparent !important;
}

#rb-hero-k5d2,
#rb-hero-k5d2 .rb-slide,
#rb-hero-k5d2 .rb-slide-overlay,
#rb-hero-k5d2 .rb-slider-track {
    background-color: transparent !important;
}

#rb-hero-k5d2 .rb-slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

#rb-hdr-a3m9 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #0d2f56 !important;
    background-color: #0d2f56 !important;
    background-image: none !important;
    opacity: 1 !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

#rb-hdr-a3m9 .rb-hdr-inner {
    background: #0d2f56 !important;
    background-color: #0d2f56 !important;
    background-image: none !important;
}

#rb-hdr-a3m9 .rb-hdr-right,
#rb-hdr-a3m9 .rb-logo,
#rb-hdr-a3m9 .rb-nav-links {
    background: transparent !important;
    background-color: transparent !important;
}

#rb-hdr-a3m9 .rb-mob-nav {
    background: #0a2545 !important;
    background-color: #0a2545 !important;
    background-image: none !important;
}

body {
    padding-top: 68px;
}

@media (max-width: 600px) {
    body {
        padding-top: 60px;
    }
}