/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --bg: #323842;
  --surface: #3d4452;
  --muted: #a3b0c4;
  --accent: #ffe135;
  --accent-bright: #fff176;
  --accent-deep: #e6b800;
  --accent-glow: rgba(255, 225, 53, 0.55);
  --line: rgba(255, 225, 80, 0.28);
  --glass: rgba(55, 62, 74, 0.88);
  --text-on-accent: #1a1d24;
}

html,
body {
    height: 100%;
}

/* ============================================================
   casinoruna-it.com — layout & theme (Fraunces + Outfit)
   ============================================================ */

body.site-casinoruna {
    font-family: 'Outfit', system-ui, sans-serif;
    color: #eef2f8;
    overflow-x: hidden;
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 130% 90% at 50% -35%, rgba(255, 225, 53, 0.28), transparent 52%),
        radial-gradient(ellipse 55% 45% at 100% 8%, rgba(255, 210, 70, 0.1), transparent 42%),
        radial-gradient(ellipse 45% 35% at 0% 95%, rgba(255, 200, 55, 0.08), transparent 45%),
        linear-gradient(165deg, #3d4452 0%, #343a45 38%, #2f343e 100%);
    background-attachment: fixed;
}

.site-casinoruna .text-accent {
    color: var(--accent);
}

.site-casinoruna .bg-accent {
    background: var(--accent);
    color: var(--text-on-accent);
}

.site-muted {
    color: #b4c4d8;
}

.site-main {
    position: relative;
}

/* --- Header --- */
.site-header {
    background: linear-gradient(180deg, rgba(52, 58, 70, 0.95) 0%, rgba(45, 50, 60, 0.88) 100%);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.site-header__glow {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(90%, 42rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-deep), var(--accent), var(--accent-deep), transparent);
    opacity: 0.65;
    pointer-events: none;
}

.site-brand__ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.2rem 0.45rem;
    box-sizing: border-box;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep));
    box-shadow: 0 0 20px var(--accent-glow);
}

.site-brand__logo {
    display: block;
    height: 2.25rem;
    width: auto;
    max-height: 2.75rem;
    max-width: min(8.5rem, 46vw);
    object-fit: contain;
    object-position: center;
}

.site-brand__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: #f0f4fa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-brand__tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 380px) {
    .site-brand__title {
        font-size: 1rem;
    }

    .site-brand__tag {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
    }

    .site-brand__logo {
        max-width: min(7rem, 40vw);
        height: 2rem;
        max-height: 2.4rem;
    }
}

.site-nav__link {
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    color: #c5d4e6;
    font-weight: 500;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.site-nav__link:hover {
    color: var(--accent);
    background: rgba(255, 225, 53, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 225, 53, 0.22);
}

.site-mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(45, 50, 60, 0.97);
}

.site-mobile-menu__link {
    display: flex;
    align-items: center;
    padding: 0.65rem 0;
    min-height: 2.75rem;
    line-height: 1.45;
    color: #d0dce8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 500;
    -webkit-tap-highlight-color: rgba(255, 225, 53, 0.15);
}

.site-mobile-menu__link:hover {
    color: var(--accent);
    padding-left: 0.25rem;
}

.site-menu-btn {
    margin-left: 0.25rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.65rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 225, 53, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-deep);
    transition: transform 0.15s, background 0.2s;
    -webkit-tap-highlight-color: rgba(255, 225, 53, 0.15);
}

.site-menu-btn:hover {
    background: rgba(255, 225, 53, 0.18);
    transform: scale(1.05);
}

/* --- Buttons --- */
.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 2.25rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-decoration: none;
}

.site-btn--primary {
    background: var(--accent);
    color: var(--text-on-accent);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.site-btn--primary:hover {
    background: var(--accent-deep);
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.site-btn--ghost {
    border: 1px solid rgba(255, 225, 53, 0.5);
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.06);
}

.site-btn--ghost:hover {
    border-color: var(--accent);
    color: var(--text-on-accent);
    background: rgba(255, 225, 53, 0.22);
}

.site-btn--sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.8125rem;
    border-radius: 1.75rem;
}

/* --- Hero --- */
.site-hero {
    position: relative;
    isolation: isolate;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    background-color: #323842;
    background-image:
        linear-gradient(120deg, rgba(22, 27, 35, 0.82) 0%, rgba(38, 45, 58, 0.68) 45%, rgba(24, 29, 38, 0.86) 100%),
        url("img/banner2.png");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

/* Bonus block: banner da cartella img/баннери (sostituisci b4.png se preferisci un altro asset) */
.site-bonus-banner {
    position: relative;
    isolation: isolate;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    padding: clamp(1.25rem, 3vw, 2rem);
    background-color: #2a3038;
    background-image:
        linear-gradient(118deg, rgba(16, 20, 28, 0.9) 0%, rgba(30, 36, 48, 0.78) 42%, rgba(14, 18, 26, 0.92) 100%),
        url("img/баннери/b4.png");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.site-bonus-banner .site-h2 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.site-bonus-banner .site-panel p,
.site-bonus-banner .site-panel li {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.site-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.site-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #f2f6fb;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 0, 0, 0.35);
}

.site-hero__title em {
    font-style: italic;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.site-hero__lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #e8eef6;
    max-width: 36rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.site-pill {
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 225, 53, 0.14), rgba(255, 200, 55, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-pill__label {
    font-weight: 600;
    color: #eef2f8;
    font-size: 0.875rem;
}

.site-pill__hint {
    font-size: 0.7rem;
    color: #b8c8dc;
    margin-top: 0.15rem;
}

.site-hero-card {
    position: relative;
    width: 100%;
    max-width: 22rem;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    text-align: center;
    border: 1px solid rgba(255, 225, 80, 0.35);
    background: linear-gradient(165deg, rgba(55, 62, 74, 0.98) 0%, rgba(40, 45, 54, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    overflow: hidden;
}

.site-hero-card__shine {
    position: absolute;
    inset: -50%;
    z-index: 0;
    background: conic-gradient(from 210deg at 50% 50%, transparent 0deg, rgba(255, 225, 53, 0.18) 60deg, transparent 120deg);
    animation: cr-spin 14s linear infinite;
    opacity: 0.7;
    pointer-events: none;
}

.site-hero-card > *:not(.site-hero-card__shine) {
    position: relative;
    z-index: 1;
}

@keyframes cr-spin {
    to {
        transform: rotate(360deg);
    }
}

.site-jackpot {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 32px var(--accent-glow);
}

/* --- Sections & typography --- */
.site-section {
    position: relative;
}

.site-section--band {
    border-block: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(58, 65, 76, 0.5) 0%, rgba(48, 54, 64, 0.35) 50%, rgba(52, 58, 68, 0.45) 100%);
}

.site-section--faq {
    border-top: 1px solid var(--line);
}

.site-panel {
    border-radius: 1rem;
    padding: 0.25rem 0;
}

.site-panel p,
.site-panel li {
    color: #d8e4f2;
}

.site-panel strong {
    color: #f6f9fc;
}

.site-h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.02em;
    color: #f0f4fa;
    margin-bottom: 1.25rem;
    padding-bottom: 0;
    border-bottom: none;
}

.site-h2::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 3px;
    margin-top: 0.55rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.site-h2--sm {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}

.site-tile {
    position: relative;
    padding: 1.5rem 1.2rem;
    text-align: center;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(160deg, rgba(58, 64, 74, 0.92) 0%, rgba(44, 50, 60, 0.88) 100%);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.site-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent));
    opacity: 0.85;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.site-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 225, 53, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18), 0 0 24px rgba(255, 225, 53, 0.12);
}

.site-tile:hover::before {
    transform: scaleX(1);
}

.site-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    margin: 0 auto 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 225, 53, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-deep);
    font-size: 1.1rem;
}

.site-tile__title {
    font-weight: 700;
    color: #eef2f8;
    margin-bottom: 0.45rem;
    font-size: 1.125rem;
    line-height: 1.3;
}

.site-tile__text {
    font-size: 1rem;
    color: #c9d6e8;
    line-height: 1.55;
}

/* --- Table --- */
.site-table-wrap {
    border-radius: 1.125rem;
    padding: 0.85rem 1rem 1rem;
    border: 1px solid var(--line);
    background: linear-gradient(165deg, rgba(58, 64, 74, 0.98) 0%, rgba(42, 48, 58, 0.94) 100%);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(255, 225, 53, 0.06);
}

.site-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    line-height: 1.55;
    border-radius: 0.75rem;
    overflow: hidden;
}

.site-table thead {
    background: linear-gradient(
        105deg,
        rgba(48, 54, 64, 0.98) 0%,
        rgba(55, 62, 72, 0.98) 40%,
        rgba(52, 58, 68, 0.99) 100%
    );
}

.site-table thead th {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4f7fb;
    text-align: left;
    padding: 1.1rem 1.35rem;
    box-shadow: inset 0 -3px 0 0 rgba(255, 225, 53, 0.75);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.site-table thead tr:first-child th:first-child {
    border-top-left-radius: 0.75rem;
}

.site-table thead tr:first-child th:last-child {
    border-top-right-radius: 0.75rem;
}

.site-table thead th + th {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-table tbody td {
    padding: 1.05rem 1.35rem;
    vertical-align: middle;
    color: #e2eaf4;
    background: rgba(40, 46, 56, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-table tbody td:first-child {
    font-weight: 600;
    font-size: 1.02rem;
    color: #f2f6fb;
}

.site-table tbody tr:nth-child(even) td {
    background: rgba(48, 54, 64, 0.48);
}

.site-table tbody tr:last-child td {
    border-bottom: none;
}

.site-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.75rem;
}

.site-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.75rem;
}

.site-table tbody td + td {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.site-table tbody tr:hover td {
    background: rgba(255, 225, 53, 0.11);
    color: #f8fafc;
}

/* --- Trust strip --- */
.site-trust {
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(48, 54, 64, 0.55);
}

.site-trust__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b4c4d8;
}

.site-trust__logos img {
    filter: grayscale(0.15) brightness(1.05);
    opacity: 0.92;
}

.site-trust__meta-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

/* --- FAQ --- */
.site-faq {
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(120deg, rgba(56, 62, 74, 0.96), rgba(44, 50, 60, 0.9));
    padding: 1rem 1.15rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-faq:hover,
.site-faq[open] {
    border-color: rgba(255, 225, 53, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 225, 53, 0.08);
}

.site-faq__summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    color: #f0f4f9;
}

.site-faq__summary::-webkit-details-marker {
    display: none;
}

.site-faq__summary:hover {
    color: var(--accent);
}

.site-faq__chev {
    color: var(--accent);
    font-size: 0.85rem;
}

.site-faq__body {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #d0dce8;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.site-callout {
    display: block;
    width: 100%;
    max-width: 36rem;
    padding: 0.9rem 1.15rem;
    border-radius: 1.5rem;
    background: var(--accent);
    color: var(--text-on-accent) !important;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.45;
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --- Cookie --- */
.site-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--line);
    background: rgba(48, 54, 64, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .site-cookie {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.site-cookie__text {
    font-size: 0.875rem;
    color: #d0dce8;
    overflow-wrap: anywhere;
}

.site-cookie__link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-cookie__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    margin-top: 3rem;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(52, 58, 68, 0.75) 0%, #2c313a 100%);
    overflow: hidden;
}

.site-footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(255, 225, 53, 0.2), transparent 70%);
    pointer-events: none;
}

.site-footer__brand {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.site-footer__copy {
    font-size: 0.8125rem;
    color: #c4d2e4;
    line-height: 1.55;
}

.site-footer__heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9eb0c4;
    margin-bottom: 0.65rem;
}

.site-footer__list {
    list-style: none;
    font-size: 0.875rem;
    color: #d0dce8;
}

.site-footer__list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.site-footer__list a:hover {
    color: var(--accent);
    padding-left: 0.25rem;
}

.site-footer__note {
    font-size: 0.7rem;
    color: #8fa0b4;
    margin-top: 0.75rem;
    max-width: 14rem;
}

.site-footer__legal {
    color: #8fa0b4;
}

/* Tailwind utility overrides — brighter body copy on gray UI */
.site-casinoruna .text-gray-200 {
    color: #e2eaf4 !important;
}

.site-casinoruna .text-gray-300 {
    color: #cddae9 !important;
}

.site-casinoruna .prose-invert {
    --tw-prose-body: #d8e4f2;
    --tw-prose-headings: #f6f9fc;
    --tw-prose-bold: #f6f9fc;
    --tw-prose-bullets: var(--accent-deep);
    --tw-prose-counters: var(--accent-deep);
}

/* Liste nel contenuto: stile Runa (marcati e numerati) */
.site-casinoruna main .prose ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.site-casinoruna main .prose ul > li {
    position: relative;
    padding: 0.65rem 1rem 0.65rem 2.65rem;
    border-radius: 0.65rem;
    background: linear-gradient(
        100deg,
        rgba(255, 225, 53, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 38%,
        rgba(255, 255, 255, 0.025) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 225, 53, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-casinoruna main .prose ul > li:hover {
    border-color: rgba(255, 225, 53, 0.22);
    border-left-color: var(--accent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 20px rgba(0, 0, 0, 0.12);
}

.site-casinoruna main .prose ul > li::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-bright), var(--accent-deep));
    box-shadow: 0 0 0 2px rgba(26, 29, 36, 0.5), 0 0 14px rgba(255, 225, 53, 0.45);
}

.site-casinoruna main .prose ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: 0.35rem;
    padding-left: 0;
}

.site-casinoruna main .prose ul ul > li {
    padding-left: 2.15rem;
    border-left-width: 2px;
    background: rgba(255, 255, 255, 0.03);
}

.site-casinoruna main .prose ul ul > li::before {
    width: 0.35rem;
    height: 0.35rem;
    left: 0.75rem;
    box-shadow: 0 0 0 2px rgba(26, 29, 36, 0.45), 0 0 10px rgba(255, 225, 53, 0.35);
}

.site-casinoruna main .prose ol {
    list-style: none;
    counter-reset: cr-ol;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.site-casinoruna main .prose ol > li {
    counter-increment: cr-ol;
    position: relative;
    padding: 0.65rem 1rem 0.65rem 3.35rem;
    border-radius: 0.65rem;
    background: linear-gradient(
        120deg,
        rgba(55, 62, 74, 0.55) 0%,
        rgba(44, 50, 60, 0.4) 55%,
        rgba(40, 46, 56, 0.35) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-casinoruna main .prose ol > li:hover {
    border-color: rgba(255, 225, 53, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 6px 20px rgba(0, 0, 0, 0.12);
}

.site-casinoruna main .prose ol > li::before {
    content: counter(cr-ol);
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    min-width: 1.7rem;
    height: 1.7rem;
    padding: 0 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    line-height: 1;
    color: var(--text-on-accent);
    background: linear-gradient(145deg, var(--accent-bright), var(--accent-deep));
    border-radius: 0.45rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-casinoruna main .prose ol ol {
    counter-reset: cr-ol-sub;
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-left: 0.35rem;
}

.site-casinoruna main .prose ol ol > li {
    counter-increment: cr-ol-sub;
    padding-left: 3rem;
}

.site-casinoruna main .prose ol ol > li::before {
    content: counter(cr-ol-sub, lower-alpha);
    font-size: 0.75rem;
    min-width: 1.55rem;
    height: 1.55rem;
    background: linear-gradient(145deg, rgba(255, 241, 118, 0.95), rgba(230, 184, 0, 0.95));
}
 
