/* =============================================================
   RiskySkins – Subpage Redesign Styles
   Adds styling for /casinos, /markets and /trade-skins templates
   plus the reusable Gutenberg blocks. Uses the same HSL palette
   as the rest of the theme; do not introduce new hex codes.
   ============================================================= */

/* ── Subpage hero: force the image to always fill the hero
   vertically regardless of aspect ratio. The homepage hero uses
   object-fit: contain which leaves a gap above/below when the
   uploaded image is landscape-oriented; on subpages we switch to
   cover + right-center so the image always reaches the top and
   bottom edges. The soft left-fade mask hides any extra width
   on the left that gets cropped in. */
.rs-sub #hero .rs-hero-fullimg img {
    object-fit: cover !important;
    object-position: right center !important;
    width: 100% !important;
    height: 100% !important;
}


/* ── Shared tokens (scoped) ──────────────────────────────── */
.rs-sub {
    --rs-bg:          hsl(220 20% 7%);
    --rs-card:        hsl(220 18% 10%);
    --rs-card-alt:    hsl(220 18% 8%);
    --rs-border:      hsl(220 15% 18%);
    --rs-border-soft: hsl(220 15% 14%);
    --rs-red:         hsl(0 80% 50%);
    --rs-red-soft:    hsl(0 80% 58%);
    --rs-fg:          hsl(0 0% 95%);
    --rs-fg-muted:    hsl(220 10% 62%);
    --rs-fg-dim:      hsl(220 10% 45%);

    --rs-grad-hero:   linear-gradient(135deg, hsl(220 20% 6%) 0%, hsl(0 55% 10%) 45%, hsl(220 20% 6%) 100%);
    --rs-grad-red:    linear-gradient(135deg, hsl(0 80% 45%), hsl(0 90% 55%));
    --rs-grad-card:   linear-gradient(145deg, hsl(220 18% 12%), hsl(220 18% 8%));
    --rs-glow-red:    0 0 30px hsl(0 80% 50% / 0.3), 0 0 60px hsl(0 80% 50% / 0.1);

    --rs-radius-card: 0.75rem;
    --rs-radius-pill: 9999px;
    --rs-section:     clamp(4rem, 7vw, 6rem);
}

.rs-sub {
    color: var(--rs-fg);
}

.rs-sub .rs-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
@media (max-width: 640px) {
    .rs-sub .rs-container { padding-left: 20px; padding-right: 20px; }
}

/* ── Page Hero ─────────────────────────────────────────── */
.rs-hero2 {
    position: relative;
    overflow: hidden;
    background: var(--rs-grad-hero);
    border-bottom: 1px solid var(--rs-border-soft);
}
.rs-hero2__dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, hsl(0 0% 100%) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: .045;
    pointer-events: none;
}
.rs-hero2__orb {
    position: absolute; top: 30%; left: 40%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, hsl(0 80% 40% / 0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.rs-hero2__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
    align-items: center;
    padding: 80px 0 64px;
}
@media (max-width: 960px) {
    .rs-hero2__inner { grid-template-columns: 1fr; padding: 64px 0 48px; }
}
.rs-hero2__kicker {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .2em;
    color: hsl(0 80% 65%);
}
.rs-hero2__kicker::before {
    content: ''; width: 28px; height: 2px;
    background: var(--rs-red); display: block;
}
.rs-hero2__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5.2vw, 4.4rem);
    line-height: 1.04; letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 24px;
}
.rs-hero2__title .rs-accent { color: hsl(0 80% 58%); }
.rs-hero2__sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--rs-fg-muted);
    max-width: 520px;
    margin: 0 0 32px;
}
.rs-hero2__pills { display: flex; flex-wrap: wrap; gap: 10px; }

.rs-hero2__media {
    position: relative;
    min-height: 360px;
    display: flex; align-items: center; justify-content: flex-end;
}
.rs-hero2__media img {
    position: relative; z-index: 1;
    max-width: 100%; max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 0 32px hsl(0 80% 30% / 0.7));
    -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 100%), linear-gradient(to top, #000 85%, transparent 100%);
            mask-image: linear-gradient(to left, #000 70%, transparent 100%), linear-gradient(to top, #000 85%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-composite: intersect;
}
.rs-hero2__glow {
    position: absolute; inset: 10% 5%; border-radius: 24px;
    background: radial-gradient(circle at 50% 50%, hsl(0 80% 30% / 0.5), transparent 65%);
    filter: blur(24px);
}

/* ── Pill ──────────────────────────────────────────────── */
.rs-pill2 {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px;
    border-radius: var(--rs-radius-pill);
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    border: 1px solid transparent;
    white-space: nowrap;
}
.rs-pill2--red      { background: hsl(0 80% 50% / 0.12); border-color: hsl(0 80% 50% / 0.3); color: hsl(0 80% 68%); }
.rs-pill2--solid    { background: var(--rs-red); color: #fff; }
.rs-pill2--outline  { background: transparent; border-color: hsl(220 15% 22%); color: hsl(0 0% 85%); }
.rs-pill2--muted    { background: hsl(220 15% 13%); border-color: var(--rs-border); color: hsl(220 10% 65%); }
.rs-pill2--glow     { background: hsl(0 80% 50% / 0.08); border-color: hsl(0 80% 50% / 0.5); color: hsl(0 90% 72%); }
.rs-pill2--sm       { padding: 3px 8px; font-size: 10px; }

/* ── Button ────────────────────────────────────────────── */
.rs-btn2 {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    font-family: Inter, system-ui, sans-serif;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .2s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
    line-height: 1;
}
.rs-btn2--primary {
    background: var(--rs-grad-red);
    color: #fff;
    box-shadow: 0 8px 24px -8px hsl(0 80% 50% / 0.6);
}
.rs-btn2--primary:hover { filter: brightness(1.1); }
.rs-btn2--ghost  { background: transparent; color: hsl(0 0% 92%); border-color: hsl(220 15% 20%); }
.rs-btn2--ghost:hover  { border-color: hsl(0 80% 50% / 0.5); color: #fff; }
.rs-btn2--dark   { background: var(--rs-card); color: hsl(0 0% 92%); border-color: var(--rs-border); }
.rs-btn2--dark:hover   { background: hsl(220 18% 14%); }

.rs-btn2--xs  { padding: 5px 10px; font-size: 11px; }
.rs-btn2--sm  { padding: 7px 14px; font-size: 12px; }
.rs-btn2--md  { padding: 10px 20px; font-size: 13px; }
.rs-btn2--lg  { padding: 14px 26px; font-size: 15px; }
.rs-btn2--full { width: 100%; justify-content: center; }

.rs-btn2--pulse { animation: rs-pulse-glow 2.4s ease-in-out infinite; }
@keyframes rs-pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px -8px hsl(0 80% 50% / 0.6); }
    50%      { box-shadow: 0 8px 32px -6px hsl(0 80% 50% / 0.9); }
}

/* ── Section Intro ─────────────────────────────────────── */
.rs-section {
    padding: var(--rs-section) 0;
}
.rs-section-intro {
    display: grid; grid-template-columns: auto 1fr; gap: 32px;
    align-items: end;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .rs-section-intro { grid-template-columns: 1fr; gap: 16px; }
}
.rs-section-intro__kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .2em;
    color: hsl(0 80% 65%);
    margin-bottom: 10px;
}
.rs-section-intro__kicker::before {
    content: ''; width: 24px; height: 2px; background: var(--rs-red);
}
.rs-section-intro__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.875rem, 3.4vw, 3rem);
    line-height: 1.05; letter-spacing: -0.025em;
    color: #fff;
    margin: 0;
}
.rs-section-intro__title .rs-accent { color: hsl(0 80% 58%); }
.rs-section-intro__body {
    color: var(--rs-fg-muted);
    line-height: 1.65;
    max-width: 640px;
    justify-self: end;
    margin: 0;
}
@media (max-width: 768px) {
    .rs-section-intro__body { justify-self: start; }
}

/* ── Filter Bar ────────────────────────────────────────── */
.rs-filterbar {
    position: sticky; top: 72px; z-index: 30;
    margin: 0 -40px 40px;
    padding: 14px 40px;
    background: hsl(220 20% 7% / 0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-top: 1px solid var(--rs-border-soft);
    border-bottom: 1px solid var(--rs-border-soft);
}
.rs-filterbar__inner {
    max-width: 1440px; margin: 0 auto;
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.rs-filterbar__search {
    position: relative; flex: 1 1 260px; min-width: 200px;
}
.rs-filterbar__search input {
    width: 100%;
    height: 40px;
    background: hsl(0 0% 100% / 0.05);
    border: 1px solid hsl(0 0% 100% / 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 0 14px 0 38px;
    font-size: 13px;
    transition: border-color .15s;
}
.rs-filterbar__search input::placeholder { color: hsl(0 0% 100% / 0.4); }
.rs-filterbar__search input:focus { outline: none; border-color: hsl(0 80% 50% / 0.6); }
.rs-filterbar__search svg {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: hsl(0 0% 100% / 0.4); pointer-events: none;
}
.rs-chip {
    height: 36px; padding: 0 14px;
    border-radius: var(--rs-radius-pill);
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: transparent;
    color: hsl(0 0% 100% / 0.7);
    font-size: 12px; font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.rs-chip:hover { border-color: hsl(0 80% 50% / 0.4); color: #fff; }
.rs-chip[aria-pressed="true"],
.rs-chip.is-active {
    background: var(--rs-red); color: #fff; border-color: var(--rs-red);
}
.rs-select {
    height: 40px; padding: 0 14px;
    border-radius: 10px;
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: hsl(0 0% 100% / 0.05);
    color: #fff;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff99' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.rs-select:focus { outline: none; border-color: hsl(0 80% 50% / 0.6); }

/* ── Content Card ──────────────────────────────────────── */
.rs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .rs-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .rs-cards { grid-template-columns: 1fr; } }

.rs-card2 {
    position: relative;
    border-radius: var(--rs-radius-card);
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: var(--rs-grad-card);
    padding: 24px;
    transition: transform .3s cubic-bezier(.4,0,.2,1),
                border-color .3s,
                box-shadow .3s;
    color: var(--rs-fg);
}
.rs-card2:hover {
    transform: translateY(-4px);
    border-color: hsl(0 80% 50% / 0.4);
    box-shadow: 0 12px 40px -12px hsl(0 80% 50% / 0.35);
}
.rs-card2--featured {
    border-color: hsl(0 80% 50% / 0.6);
    box-shadow: var(--rs-glow-red);
}
.rs-card2__ribbon {
    position: absolute; top: -10px; right: 18px;
    background: var(--rs-red);
    color: #fff;
    font-size: 10px; font-weight: 800;
    letter-spacing: .15em;
    padding: 4px 10px;
    border-radius: var(--rs-radius-pill);
}
.rs-card2__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
}
.rs-card2__logo {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 12px;
    background: hsl(220 18% 14%);
    border: 1px solid var(--rs-border);
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.rs-card2__logo img { width: 100%; height: 100%; object-fit: contain; }
.rs-card2__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: 22px;
    color: #fff; margin: 0 0 4px;
    letter-spacing: -0.015em;
}
.rs-card2__rating { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: hsl(0 0% 100% / 0.7); }
.rs-card2__rating .rs-stars { display: inline-flex; gap: 2px; color: hsl(45 90% 55%); }
.rs-card2__bonus {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 14px; margin-bottom: 16px;
    border: 1px dashed hsl(0 80% 50% / 0.4);
    border-radius: 10px;
    background: hsl(0 80% 50% / 0.05);
}
.rs-card2__bonus-text {
    font-size: 13px; color: hsl(0 0% 100% / 0.9); line-height: 1.45;
}
.rs-card2__statgrid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    margin-bottom: 16px;
}
.rs-card2__stat {
    padding: 10px 12px;
    background: hsl(0 0% 100% / 0.03);
    border: 1px solid hsl(0 0% 100% / 0.06);
    border-radius: 8px;
}
.rs-card2__stat-label {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: hsl(0 0% 100% / 0.45);
    margin-bottom: 4px;
}
.rs-card2__stat-value {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 18px; font-weight: 700; color: #fff;
}
.rs-card2__features {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.rs-card2__code {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 10px 12px;
    background: hsl(0 0% 100% / 0.04);
    border: 1px dashed hsl(0 0% 100% / 0.18);
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    color: #fff;
    margin-bottom: 16px;
}
.rs-card2__code button {
    background: transparent; border: 0; cursor: pointer;
    color: hsl(0 0% 100% / 0.55);
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
}
.rs-card2__code button:hover { color: #fff; }
.rs-card2__cta { display: flex; gap: 10px; }
.rs-card2__cta .rs-btn2 { flex: 1; }

/* ── Step Block ────────────────────────────────────────── */
.rs-steps {
    position: relative;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) {
    .rs-steps { grid-template-columns: 1fr; }
    .rs-steps__line { display: none; }
}
.rs-steps__line {
    position: absolute;
    top: 40px; left: 16%; right: 16%; height: 1px;
    background: linear-gradient(90deg, hsl(0 80% 50% / 0), hsl(0 80% 50% / 0.6), hsl(0 80% 50% / 0));
    pointer-events: none;
}
.rs-step {
    position: relative;
    border-radius: var(--rs-radius-card);
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: hsl(0 0% 100% / 0.02);
    padding: 28px 24px;
}
.rs-step.is-active {
    border-color: hsl(0 80% 50% / 0.6);
    box-shadow: 0 0 40px -10px hsl(0 80% 50% / 0.5);
}
.rs-step__num {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: hsl(0 80% 50% / 0.1);
    border: 1px solid hsl(0 80% 50% / 0.6);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: 22px;
    color: hsl(0 80% 72%);
    margin-bottom: 16px;
    background-color: var(--rs-bg);
    position: relative; z-index: 1;
}
.rs-step__label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: hsl(0 80% 65%);
    margin-bottom: 6px;
}
.rs-step__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: 22px;
    color: #fff; margin: 0 0 8px;
    letter-spacing: -0.015em;
}
.rs-step__desc { color: var(--rs-fg-muted); font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.rs-step__details {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: flex; flex-direction: column; gap: 6px;
}
.rs-step__details li {
    display: flex; gap: 8px;
    font-size: 13px; color: hsl(0 0% 100% / 0.75);
}
.rs-step__details li::before {
    content: '→'; color: hsl(0 80% 65%); flex-shrink: 0;
}

/* ── Stats Strip ───────────────────────────────────────── */
.rs-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-radius: var(--rs-radius-card);
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: hsl(0 0% 100% / 0.02);
    overflow: hidden;
}
@media (max-width: 768px) { .rs-stats { grid-template-columns: repeat(2, 1fr); } }
.rs-stats__cell {
    padding: 22px 24px;
    border-left: 1px solid hsl(0 0% 100% / 0.08);
}
.rs-stats__cell:first-child { border-left: 0; }
@media (max-width: 768px) {
    .rs-stats__cell:nth-child(3) { border-left: 0; }
    .rs-stats__cell:nth-child(3), .rs-stats__cell:nth-child(4) { border-top: 1px solid hsl(0 0% 100% / 0.08); }
}
.rs-stats__label {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .18em;
    color: hsl(0 0% 100% / 0.5);
    margin-bottom: 8px;
}
.rs-stats__value {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: 28px;
    color: #fff; line-height: 1;
    margin-bottom: 4px;
}
.rs-stats__delta { font-size: 12px; color: hsl(140 60% 60%); }
.rs-stats__delta.is-negative { color: hsl(0 70% 65%); }

/* ── CTA Strip ─────────────────────────────────────────── */
.rs-ctastrip {
    position: relative; overflow: hidden;
    border-radius: 16px;
    background: var(--rs-grad-red);
    padding: 48px;
    color: #fff;
}
@media (max-width: 768px) { .rs-ctastrip { padding: 36px 28px; } }
.rs-ctastrip__pill {
    display: inline-block;
    background: hsl(0 0% 0% / 0.2);
    border-radius: var(--rs-radius-pill);
    padding: 4px 12px;
    font-size: 11px; font-weight: 800;
    letter-spacing: .2em; text-transform: uppercase;
    margin-bottom: 16px;
}
.rs-ctastrip__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: clamp(1.875rem, 3.2vw, 2.75rem);
    line-height: 1.05; letter-spacing: -0.02em;
    color: #fff; margin: 0 0 14px;
}
.rs-ctastrip__body {
    max-width: 640px;
    color: hsl(0 0% 100% / 0.85);
    line-height: 1.55;
    margin: 0 0 24px;
}
.rs-ctastrip .rs-btn2--ghost {
    background: hsl(0 0% 0% / 0.15);
    border-color: hsl(0 0% 100% / 0.3);
    color: #fff;
}

/* ── Trust Checklist ───────────────────────────────────── */
.rs-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .rs-trust { grid-template-columns: 1fr; } }
.rs-trust__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.rs-trust__item { display: flex; gap: 14px; }
.rs-trust__check {
    flex-shrink: 0; width: 24px; height: 24px;
    border-radius: 50%;
    background: hsl(0 80% 50% / 0.15);
    color: hsl(0 80% 70%);
    display: inline-flex; align-items: center; justify-content: center;
}
.rs-trust__item-title { color: #fff; font-weight: 600; margin-bottom: 4px; }
.rs-trust__item-desc { font-size: 14px; color: var(--rs-fg-muted); line-height: 1.5; }
.rs-trust__card {
    border-radius: var(--rs-radius-card);
    border: 1px solid hsl(0 0% 100% / 0.1);
    background: hsl(0 0% 100% / 0.02);
    padding: 24px;
}
.rs-trust__card-title { font-weight: 700; color: #fff; margin: 0 0 16px; }
.rs-trust__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
    font-size: 14px; color: hsl(0 0% 100% / 0.85);
}
.rs-trust__row:last-of-type { border-bottom: 0; }
.rs-trust__row-ok { color: hsl(140 60% 60%); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.rs-trust__row-bad { color: hsl(0 70% 65%); font-weight: 700; }
.rs-trust__score {
    margin-top: 18px; padding-top: 18px; border-top: 1px solid hsl(0 0% 100% / 0.05);
    display: flex; align-items: center; justify-content: space-between;
}
.rs-trust__score-label { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: hsl(0 0% 100% / 0.5); font-weight: 700; }
.rs-trust__score-value {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700; font-size: 32px;
    color: hsl(0 80% 65%);
}

/* ── Markets table / grid toggle ───────────────────────── */
.rs-viewbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.rs-viewswitch {
    display: inline-flex; background: hsl(0 0% 100% / 0.04);
    border: 1px solid hsl(0 0% 100% / 0.1); border-radius: 10px;
    padding: 3px; gap: 2px;
}
.rs-viewswitch button {
    padding: 7px 16px; border: 0; background: transparent; cursor: pointer;
    border-radius: 7px;
    color: hsl(0 0% 100% / 0.6); font-size: 12px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    transition: all .15s;
}
.rs-viewswitch button.is-active { background: hsl(0 80% 50% / 0.15); color: hsl(0 80% 75%); }

.rs-mview--table .rs-cards { display: none; }
.rs-mview--grid  .rs-markets-table-wrap { display: none; }

/* Sparkline placeholder inside market card */
.rs-spark { width: 100%; height: 42px; display: block; }

/* ── Section spacer / generic ──────────────────────────── */
.rs-sub main { background: var(--rs-bg); }
.rs-sub a { color: inherit; }
.rs-sub .rs-section + .rs-section { padding-top: 0; }

/* ═══ Comparison page — pimped table ═════════════════════════════════════
   Applied to /comparison/ (section id="comparison"). Polishes the plain
   utility-class table into something that matches the markets table look:
   red-gradient thead, featured row highlight, logo + name cell, colored
   reliability badges, gradient-red CTA button. */

#comparison .rs-cmp-wrap {
    overflow-x: auto;
    border: 1px solid hsl(var(--border));
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(231, 76, 60, 0.03), rgba(0,0,0,0) 60%), hsl(var(--card));
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

#comparison .rs-cmp-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 14px;
    color: hsl(var(--foreground));
}

#comparison .rs-cmp-table thead tr {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.18), rgba(231, 76, 60, 0.04));
    border-bottom: 1px solid hsl(var(--border));
}

#comparison .rs-cmp-table thead th {
    padding: 14px 16px;
    font-family: var(--font-heading, inherit);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: hsl(var(--muted-foreground));
}

#comparison .rs-cmp-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-top: 1px solid hsl(var(--border) / 0.6);
}

#comparison .rs-cmp-row {
    transition: background-color .22s ease, box-shadow .22s ease;
}

#comparison .rs-cmp-row:hover {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.08), rgba(231, 76, 60, 0));
    box-shadow: inset 3px 0 0 0 hsl(var(--primary));
}

#comparison .rs-cmp-row.is-featured {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.10), rgba(231, 76, 60, 0.02));
    box-shadow: inset 3px 0 0 0 hsl(var(--primary));
}

/* Site cell: logo + name (+ optional Top Pick badge) */
#comparison .rs-cmp-site {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
#comparison .rs-cmp-site__logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#comparison .rs-cmp-site__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
#comparison .rs-cmp-site__logo span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    color: hsl(var(--muted-foreground));
}
#comparison .rs-cmp-site__text {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}
#comparison .rs-cmp-site__name {
    font-weight: 700;
    font-size: 15px;
    color: hsl(var(--foreground));
}
#comparison .rs-cmp-badge {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

/* Rating */
#comparison .rs-cmp-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
#comparison .rs-cmp-rating__num {
    font-size: 13px;
    font-weight: 700;
}

/* Bonus */
#comparison .rs-cmp-bonus {
    display: inline-block;
    font-weight: 700;
    color: #2ecc71;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(46, 204, 113, 0.10);
    border: 1px solid rgba(46, 204, 113, 0.28);
}

/* Reliability badge */
#comparison .rs-cmp-reliab {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
}
#comparison .rs-cmp-reliab.is-high {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.10);
    border-color: rgba(46, 204, 113, 0.3);
}
#comparison .rs-cmp-reliab.is-mid {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.10);
    border-color: rgba(243, 156, 18, 0.3);
}
#comparison .rs-cmp-reliab.is-low {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.10);
    border-color: rgba(231, 76, 60, 0.3);
}

#comparison .rs-cmp-muted {
    color: hsl(var(--muted-foreground));
    font-style: italic;
    font-size: 12px;
}

/* CTA button */
#comparison .rs-cmp-table__cta-col {
    text-align: right;
    white-space: nowrap;
}
#comparison .rs-cmp-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 8px 22px rgba(231, 76, 60, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
#comparison .rs-cmp-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.35);
}

/* Responsive: collapse to stacked rows on narrow screens */
@media (max-width: 720px) {
    #comparison .rs-cmp-table { min-width: 0; }
    #comparison .rs-cmp-table thead { display: none; }
    #comparison .rs-cmp-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 14px;
        padding: 14px 14px 16px;
        border-top: 1px solid hsl(var(--border) / 0.6);
    }
    #comparison .rs-cmp-table tbody td {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        border: 0;
    }
    #comparison .rs-cmp-table tbody td[data-label]:not([data-label=""])::before {
        content: attr(data-label);
        font-size: 10px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: hsl(var(--muted-foreground));
    }
    #comparison .rs-cmp-table tbody td:first-child,
    #comparison .rs-cmp-table__cta-col { grid-column: 1 / -1; }
    #comparison .rs-cmp-table__cta-col { text-align: left; }
}

/* ── Guide Cards (archive-cs2_guide.php) ────────────────────────── */
.rs-card2--guide { padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; }
.rs-card2--guide .rs-guide-thumb { display: block; line-height: 0; overflow: hidden; }
.rs-card2--guide .rs-guide-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.rs-card2--guide:hover .rs-guide-thumb img { transform: scale(1.04); }
.rs-card2--guide .rs-guide-placeholder { height: 100px; background: var(--rs-card-alt); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--rs-border-soft); }
.rs-card2--guide .rs-guide-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.rs-card2--guide .rs-card2__title { font-size: 18px; margin: 0 0 10px; line-height: 1.25; }
.rs-card2--guide .rs-card2__title a { color: inherit; text-decoration: none; }
.rs-card2--guide .rs-card2__title a:hover { color: hsl(0 80% 65%); }
.rs-card2--guide .rs-guide-excerpt { font-size: 13px; line-height: 1.65; color: var(--rs-fg-muted); margin: 0 0 20px; flex: 1; }
.rs-cards.rs-guide-cards { align-items: stretch; }

/* ── Single CS2 Guide (single-cs2_guide.php) ───────────────────── */

/* Hide custom inline sidebar — TOC is rendered at the top via template */
.single-cs2_guide aside.rs-sidebar { display: none; }

/* Collapse broken grid wrapper to single column */
.single-cs2_guide .rs-content-wrapper { display: block; }
.single-cs2_guide .rs-main-content { width: 100%; }

/* FAQ accordion */
.single-cs2_guide .rs-faq-item {
    background: var(--rs-card);
    border: 1px solid var(--rs-border);
    border-radius: 10px;
    margin: 0 0 12px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.single-cs2_guide .rs-faq-item:hover { border-color: hsl(0 80% 50% / 0.4); }
.single-cs2_guide .rs-faq-question {
    cursor: pointer;
    user-select: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
}
.single-cs2_guide .rs-faq-toggle {
    flex-shrink: 0;
    color: hsl(0 80% 65%);
    font-size: 14px;
    transition: transform .25s ease;
}
.single-cs2_guide .rs-faq-item.active .rs-faq-toggle { transform: rotate(180deg); }
.single-cs2_guide .rs-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--rs-fg-muted);
    line-height: 1.65;
    transition: max-height .35s ease, padding .25s ease;
}
.single-cs2_guide .rs-faq-item.active .rs-faq-answer {
    max-height: 1500px;
    padding: 0 20px 16px;
}

/* Theme TOC block (rendered via riskyskins/table-of-contents) */
.rs-toc {
    background: var(--rs-card);
    border: 1px solid var(--rs-border);
    border-radius: 10px;
    padding: 22px 26px;
    margin: 0 0 32px;
}
.rs-toc__title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: hsl(0 80% 68%);
    margin: 0 0 12px;
}
.rs-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 32px;
}
@media (max-width: 640px) { .rs-toc__list { column-count: 1; } }
.rs-toc__item { margin: 0 0 6px; break-inside: avoid; }
.rs-toc__item--sub { padding-left: 16px; font-size: 14px; }
.rs-toc__link {
    color: hsl(0 0% 85%);
    text-decoration: none;
    font-size: 14px;
    transition: color .15s;
}
.rs-toc__link:hover { color: hsl(0 80% 65%); }

/* Guide content typography polish */
.single-cs2_guide .rs-quote {
    border-left: 3px solid hsl(0 80% 50%);
    padding: 8px 0 8px 18px;
    margin: 18px 0 24px;
    font-style: italic;
    color: hsl(0 0% 85%);
}
.single-cs2_guide .rs-intro { font-size: 17px; line-height: 1.7; }
.single-cs2_guide .rs-final-message {
    background: hsl(0 80% 50% / 0.08);
    border: 1px solid hsl(0 80% 50% / 0.3);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 24px 0;
    color: hsl(0 0% 92%);
}
.single-cs2_guide .rs-related-link {
    background: var(--rs-card);
    border: 1px solid var(--rs-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 8px 0;
}
.single-cs2_guide .rs-related-link a { color: hsl(0 80% 65%); font-weight: 600; text-decoration: none; }
.single-cs2_guide .rs-related-link a:hover { text-decoration: underline; }

/* ── CS2 Guide content typography polish ─────────────────────── */
.single-cs2_guide article .prose,
.single-cs2_guide article .rs-content {
    color: hsl(220 10% 75%);
    font-size: 16px;
    line-height: 1.75;
}
.single-cs2_guide article .prose > * + *,
.single-cs2_guide article .rs-content > * + * { margin-top: 1.1em; }

.single-cs2_guide article h2 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 2.4em 0 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid hsl(220 15% 18%);
}
.single-cs2_guide article h3 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: hsl(0 0% 95%);
    margin: 1.8em 0 0.5em;
}
.single-cs2_guide article h4 {
    font-size: 17px;
    font-weight: 700;
    color: hsl(0 0% 92%);
    margin: 1.5em 0 0.4em;
}

.single-cs2_guide article p { margin: 0 0 1.1em; }

.single-cs2_guide article a {
    color: hsl(0 80% 65%);
    text-decoration: none;
    border-bottom: 1px solid hsl(0 80% 65% / 0.4);
    transition: border-color .2s, color .2s;
}
.single-cs2_guide article a:hover {
    color: hsl(0 80% 75%);
    border-bottom-color: hsl(0 80% 75%);
}

.single-cs2_guide article ul,
.single-cs2_guide article ol {
    margin: 0 0 1.4em 1.4em;
    padding: 0;
}
.single-cs2_guide article ul li,
.single-cs2_guide article ol li {
    margin: 0 0 0.5em;
    padding-left: 0.4em;
}
.single-cs2_guide article ul li::marker { color: hsl(0 80% 60%); }

.single-cs2_guide article strong { color: #fff; font-weight: 600; }
.single-cs2_guide article em { color: hsl(0 0% 88%); }

.single-cs2_guide article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px;
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    overflow: hidden;
}
.single-cs2_guide article table thead {
    background: linear-gradient(180deg, hsl(0 80% 50% / 0.12), hsl(0 80% 50% / 0.04));
}
.single-cs2_guide article table th {
    text-align: left;
    padding: 12px 14px;
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: hsl(0 0% 95%);
    border-bottom: 1px solid hsl(220 15% 18%);
}
.single-cs2_guide article table td {
    padding: 11px 14px;
    border-top: 1px solid hsl(220 15% 16%);
    color: hsl(0 0% 88%);
}
.single-cs2_guide article table tr:nth-child(even) td {
    background: hsl(220 18% 9%);
}

.single-cs2_guide article blockquote,
.single-cs2_guide article .rs-quote {
    margin: 1.5em 0;
    padding: 14px 22px;
    border-left: 3px solid hsl(0 80% 50%);
    background: hsl(220 18% 9%);
    color: hsl(0 0% 92%);
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.single-cs2_guide article code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13.5px;
    background: hsl(220 18% 11%);
    border: 1px solid hsl(220 15% 18%);
    border-radius: 6px;
    padding: 2px 6px;
    color: hsl(0 80% 78%);
}
.single-cs2_guide article pre {
    background: hsl(220 18% 8%);
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    padding: 16px 20px;
    overflow-x: auto;
    margin: 1.4em 0;
}
.single-cs2_guide article pre code {
    background: transparent;
    border: 0;
    padding: 0;
    color: hsl(0 0% 92%);
}

/* Section anchors get extra scroll-margin so the sticky header doesn't
   cover the heading when arriving via a TOC link. */
.single-cs2_guide article h2[id],
.single-cs2_guide article h3[id] { scroll-margin-top: 90px; }

/* ── Guide content: custom classes shipped with imported guides ────
   Original imports (e.g. cs2-match-betting-guide) styled their own
   `<style>` block with classes like .rs-h2, .rs-section, .rs-text-
   secondary, .rs-highlight. That style block is stripped by
   riskyskins_clean_guide_content() to avoid wpautop CSS breakage,
   so we re-style the same class names at theme level here. */
.single-cs2_guide article .rs-section { margin: 2.4em 0; }
.single-cs2_guide article .rs-container { max-width: 100%; }
.single-cs2_guide article .rs-header { margin-bottom: 1.6em; }
.single-cs2_guide article .rs-intro { font-size: 17px; line-height: 1.7; }

/* Heading overrides — same look as the global h2/h3 rules */
.single-cs2_guide article .rs-h2,
.single-cs2_guide article h2.rs-h2 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 2.4em 0 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid hsl(220 15% 18%);
}
.single-cs2_guide article .rs-h3,
.single-cs2_guide article h3.rs-h3 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: hsl(0 0% 95%);
    margin: 1.8em 0 0.5em;
}

/* Inline emphasis */
.single-cs2_guide article .rs-text-secondary { color: hsl(220 10% 70%); }
.single-cs2_guide article .rs-highlight {
    color: hsl(0 80% 70%);
    font-weight: 600;
}
.single-cs2_guide article .rs-green {
    color: hsl(140 60% 60%);
    font-weight: 600;
}

/* Lists with custom class */
.single-cs2_guide article ul.rs-list,
.single-cs2_guide article ol.rs-list {
    margin: 1em 0 1.4em 1.4em;
    padding: 0;
}
.single-cs2_guide article .rs-list li { margin: 0 0 0.5em; }
.single-cs2_guide article ul.rs-list li::marker { color: hsl(0 80% 60%); }

/* Tables shipped with rs-table class */
.single-cs2_guide article .rs-table,
.single-cs2_guide article table.rs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px;
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    overflow: hidden;
}
.single-cs2_guide article .rs-table thead {
    background: linear-gradient(180deg, hsl(0 80% 50% / 0.12), hsl(0 80% 50% / 0.04));
}
.single-cs2_guide article .rs-table th {
    text-align: left;
    padding: 12px 14px;
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: hsl(0 0% 95%);
}
.single-cs2_guide article .rs-table td {
    padding: 11px 14px;
    border-top: 1px solid hsl(220 15% 16%);
    color: hsl(0 0% 88%);
}
.single-cs2_guide article .rs-table tr:nth-child(even) td { background: hsl(220 18% 9%); }

/* Callouts: disclaimer, authority note, final message, related */
.single-cs2_guide article .rs-disclaimer {
    background: hsl(45 90% 50% / 0.08);
    border: 1px solid hsl(45 90% 50% / 0.3);
    border-left-width: 3px;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 1.4em 0;
    color: hsl(0 0% 92%);
    font-size: 14px;
    line-height: 1.6;
}
.single-cs2_guide article .rs-authority-note {
    background: hsl(220 18% 10%);
    border: 1px solid hsl(220 15% 18%);
    border-left: 3px solid hsl(0 80% 50%);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 1.4em 0;
    color: hsl(0 0% 90%);
    line-height: 1.65;
}
.single-cs2_guide article .rs-related-block {
    background: hsl(220 18% 9%);
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    padding: 18px 22px;
    margin: 2em 0 1em;
}
.single-cs2_guide article .rs-related-block ul { margin: 0; padding-left: 1.2em; }
.single-cs2_guide article .rs-related-block li { margin: 0.45em 0; }

/* Generic spacing for any remaining .rs-* container */
.single-cs2_guide article div[class^="rs-"] + div[class^="rs-"] { margin-top: 1.2em; }

/* ── Guide content: rs-gamemode-* legacy class set ───────────────
   Used by cs2-gambling-guide (and possibly future imports). Mirrors
   the visual language of the rs-* classes above so all guides look
   consistent. */

/* Layout */
.single-cs2_guide article .rs-gamemode-container { max-width: 100%; }
.single-cs2_guide article .rs-gamemode-section { margin: 2.4em 0; }

/* Headings */
.single-cs2_guide article .rs-gamemode-h2 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 2.4em 0 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 1px solid hsl(220 15% 18%);
}
.single-cs2_guide article .rs-gamemode-h3 {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: hsl(0 0% 95%);
    margin: 1.8em 0 0.5em;
}

/* Typography */
.single-cs2_guide article .rs-gamemode-body-text {
    color: hsl(220 10% 75%);
    line-height: 1.75;
    margin: 0 0 1.1em;
}
.single-cs2_guide article .rs-gamemode-quote {
    border-left: 3px solid hsl(0 80% 50%);
    background: hsl(220 18% 9%);
    padding: 14px 22px;
    margin: 1.5em 0;
    color: hsl(0 0% 92%);
    font-style: italic;
    border-radius: 0 10px 10px 0;
}
.single-cs2_guide article .rs-gamemode-highlight {
    color: hsl(0 80% 70%);
    font-weight: 600;
}
.single-cs2_guide article .rs-gamemode-link {
    color: hsl(0 80% 65%);
    text-decoration: none;
    border-bottom: 1px solid hsl(0 80% 65% / 0.4);
    transition: color .2s, border-color .2s;
}
.single-cs2_guide article .rs-gamemode-link:hover {
    color: hsl(0 80% 78%);
    border-bottom-color: hsl(0 80% 75%);
}

/* Lists */
.single-cs2_guide article ul.rs-gamemode-list,
.single-cs2_guide article ol.rs-gamemode-list {
    margin: 1em 0 1.4em 1.4em;
    padding: 0;
}
.single-cs2_guide article .rs-gamemode-list li {
    margin: 0 0 0.5em;
    color: hsl(220 10% 75%);
    line-height: 1.7;
}
.single-cs2_guide article ul.rs-gamemode-list li::marker { color: hsl(0 80% 60%); }

/* Tables */
.single-cs2_guide article .rs-gamemode-table,
.single-cs2_guide article table.rs-gamemode-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 14px;
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    overflow: hidden;
}
.single-cs2_guide article .rs-gamemode-table thead {
    background: linear-gradient(180deg, hsl(0 80% 50% / 0.12), hsl(0 80% 50% / 0.04));
}
.single-cs2_guide article .rs-gamemode-table th {
    text-align: left;
    padding: 12px 14px;
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: hsl(0 0% 95%);
}
.single-cs2_guide article .rs-gamemode-table td {
    padding: 11px 14px;
    border-top: 1px solid hsl(220 15% 16%);
    color: hsl(0 0% 88%);
}
.single-cs2_guide article .rs-gamemode-table tr:nth-child(even) td { background: hsl(220 18% 9%); }

/* Cards & grids */
.single-cs2_guide article .rs-gamemode-card,
.single-cs2_guide article .rs-gamemode-grid-card {
    background: var(--rs-card, hsl(220 18% 10%));
    border: 1px solid hsl(220 15% 18%);
    border-radius: 12px;
    padding: 18px 22px;
    margin: 1em 0;
    transition: border-color .2s ease;
}
.single-cs2_guide article .rs-gamemode-card:hover,
.single-cs2_guide article .rs-gamemode-grid-card:hover {
    border-color: hsl(0 80% 50% / 0.4);
}
.single-cs2_guide article .rs-gamemode-card-title,
.single-cs2_guide article .rs-gamemode-grid-card-title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.single-cs2_guide article .rs-gamemode-grid-card-text {
    color: hsl(220 10% 75%);
    font-size: 14px;
    line-height: 1.65;
}
.single-cs2_guide article .rs-gamemode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 1.4em 0;
}

/* Disclaimer + button */
.single-cs2_guide article .rs-gamemode-disclaimer {
    background: hsl(45 90% 50% / 0.08);
    border: 1px solid hsl(45 90% 50% / 0.3);
    border-left-width: 3px;
    border-radius: 10px;
    padding: 14px 18px;
    margin: 1.4em 0;
    color: hsl(0 0% 92%);
    font-size: 14px;
    line-height: 1.6;
}
.single-cs2_guide article .rs-gamemode-disclaimer-title {
    font-family: Rajdhani, system-ui, sans-serif;
    font-weight: 700;
    color: hsl(45 90% 70%);
    margin: 0 0 6px;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.single-cs2_guide article .rs-gamemode-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, hsl(0 80% 45%), hsl(0 90% 55%));
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    transition: filter .2s;
}
.single-cs2_guide article .rs-gamemode-button:hover { filter: brightness(1.1); }

/* FAQ accordion (legacy variant) */
.single-cs2_guide article .rs-gamemode-faq-item {
    background: var(--rs-card, hsl(220 18% 10%));
    border: 1px solid hsl(220 15% 18%);
    border-radius: 10px;
    margin: 0 0 12px;
    overflow: hidden;
    transition: border-color .2s ease;
}
.single-cs2_guide article .rs-gamemode-faq-item:hover {
    border-color: hsl(0 80% 50% / 0.4);
}
.single-cs2_guide article .rs-gamemode-faq-question {
    cursor: pointer;
    user-select: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
}
.single-cs2_guide article .rs-gamemode-faq-question br { display: none; }
.single-cs2_guide article .rs-gamemode-faq-icon {
    flex-shrink: 0;
    color: hsl(0 80% 65%);
    font-size: 22px;
    line-height: 1;
    transition: transform .25s ease;
}
.single-cs2_guide article .rs-gamemode-faq-item.active .rs-gamemode-faq-icon {
    transform: rotate(45deg);
}
.single-cs2_guide article .rs-gamemode-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: hsl(220 10% 70%);
    line-height: 1.65;
    transition: max-height .35s ease, padding .25s ease;
}
.single-cs2_guide article .rs-gamemode-faq-item.active .rs-gamemode-faq-answer {
    max-height: 1500px;
    padding: 0 20px 16px;
}
