:root {
    --c-bg: #0f1117;
    --c-bg2: #181c27;
    --c-bg3: #1e2334;
    --c-surface: #242840;
    --c-surface2: #2c3150;
    --c-border: #323760;
    --c-primary: #1f6fff;
    --c-primary-hover: #1558e0;
    --c-accent: #f7c235;
    --c-accent-hover: #e0ae20;
    --c-green: #1fba68;
    --c-red: #e8435a;
    --c-text: #e8eaf0;
    --c-text2: #9da3bf;
    --c-text3: #6b7199;
    --c-star: #f7c235;
    --c-star-off: #3a3f5c;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 5px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
    --transition: .2s ease;
    --font: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

a:hover {
    color: var(--c-primary-hover)
}

ul, ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
    font-size: inherit;
    color: inherit
}

input, textarea, select {
    font-family: var(--font);
    font-size: inherit;
    color: var(--c-text);
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition)
}

input:focus, textarea:focus, select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(31, 111, 255, .18)
}

:focus-visible {
    outline: 2px solid var(--c-primary);
    outline-offset: 2px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

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

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

.site-main {
    flex: 1
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--c-bg2);
    border-bottom: 1.5px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .4)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: wrap
}

.hdr-logo img {
    display: block
}

.hdr-nav {
    display: flex
}

.hdr-nav-list {
    display: flex;
    align-items: center;
    gap: 4px
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    color: var(--c-text2);
    font-size: .875rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition)
}

.hdr-nav-link:hover {
    background: var(--c-surface);
    color: var(--c-text)
}

.hdr-nav-link svg {
    flex-shrink: 0;
    opacity: .7
}

.hdr-right-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.hdr-review-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--c-text3);
    white-space: nowrap
}

.hdr-review-num {
    color: var(--c-accent);
    font-weight: 700
}

.hdr-buttons {
    display: flex;
    align-items: center;
    gap: 8px
}

.btn-hdr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1
}

.btn-hdr--login {
    background: transparent;
    border: 1.5px solid var(--c-border);
    color: var(--c-text2)
}

.btn-hdr--login:hover {
    border-color: var(--c-primary);
    color: var(--c-primary)
}

.btn-hdr--register {
    background: var(--c-accent);
    color: #111;
    border: none
}

.btn-hdr--register:hover {
    background: var(--c-accent-hover);
    color: #111
}

.btn-hdr--review {
    background: var(--c-primary);
    color: #fff;
    border: none
}

.btn-hdr--review:hover {
    background: var(--c-primary-hover)
}

.hdr-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-xs);
    border: 1.5px solid var(--c-border)
}

.hdr-burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: all var(--transition)
}

.hdr-burger.is-open .hdr-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.hdr-burger.is-open .hdr-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.hdr-burger.is-open .hdr-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--c-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    border: none
}

.btn-primary:hover {
    background: var(--c-primary-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(31, 111, 255, .4)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--c-text);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    border: 1.5px solid var(--c-border)
}

.btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: rgba(31, 111, 255, .07)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--c-surface);
    color: var(--c-text2);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: .875rem;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    border: 1.5px solid var(--c-border)
}

.btn-ghost:hover {
    border-color: var(--c-text3);
    color: var(--c-text)
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

.btn-block {
    width: 100%;
    text-align: center
}

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 32px;
    line-height: 1.25;
    text-wrap: balance
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
    margin-top: 10px
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 13, 22, .97) 0%, rgba(15, 17, 30, .88) 50%, rgba(15, 17, 30, .6) 100%)
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap
}

.hero-text-block {
    flex: 1 1 340px;
    min-width: 280px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(31, 111, 255, .2);
    border: 1px solid rgba(31, 111, 255, .4);
    color: var(--c-primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px
}

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

.hero-sub {
    font-size: 1rem;
    color: var(--c-text2);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.hero-tiles-col {
    flex: 0 0 auto;
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.casino-tile {
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow)
}

.casino-tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px
}

.casino-tile-logo {
    height: 33px;
    width: auto;
    object-fit: contain
}

.casino-tile-score {
    text-align: right
}

.casino-score-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1
}

.casino-score-num span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--c-text3)
}

.casino-score-bar-wrap {
    width: 100px;
    height: 7px;
    background: var(--c-surface2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 6px
}

.casino-score-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--c-green), var(--c-accent));
    border-radius: 4px;
    transition: width .6s ease
}

.casino-tile-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 194, 53, .08);
    border: 1px solid rgba(247, 194, 53, .25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: .875rem;
    color: var(--c-text2);
    margin-bottom: 14px
}

.casino-tile-bonus strong {
    color: var(--c-accent)
}

.casino-tile-btns {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.casino-info-tile {
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm)
}

.casino-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.casino-info-title {
    font-size: .875rem;
    font-weight: 700;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: .4px
}

.casino-info-more-btn {
    font-size: .8rem;
    color: var(--c-primary);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(31, 111, 255, .3);
    transition: all var(--transition)
}

.casino-info-more-btn:hover {
    background: rgba(31, 111, 255, .1)
}

.casino-info-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.casino-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--c-surface);
    border-radius: var(--radius-xs);
    padding: 8px 10px
}

.casino-info-label {
    font-size: .72rem;
    color: var(--c-text3);
    text-transform: uppercase;
    letter-spacing: .4px
}

.casino-info-val {
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-text)
}

.casino-info-extra {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border)
}

.casino-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px
}

.casino-provider-badge {
    font-size: .72rem;
    padding: 3px 8px;
    background: var(--c-surface2);
    border-radius: 20px;
    color: var(--c-text2);
    border: 1px solid var(--c-border)
}

.casino-license-logos {
    display: flex;
    gap: 8px;
    margin-top: 10px
}

.casino-lic-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.casino-lic-badge span {
    font-size: .65rem;
    color: var(--c-text3)
}

.bonuses-section {
    padding: 64px 0;
    background: var(--c-bg)
}

.bonus-tiles-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.bonus-tile {
    flex: 1 1 220px;
    min-width: 200px;
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.bonus-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.bonus-tile--main {
    border-color: var(--c-accent);
    background: linear-gradient(145deg, var(--c-bg2), rgba(247, 194, 53, .06))
}

.bonus-tile-icon {
    width: 44px;
    height: 44px;
    background: rgba(31, 111, 255, .12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary)
}

.bonus-tile--main .bonus-tile-icon {
    background: rgba(247, 194, 53, .12);
    color: var(--c-accent)
}

.bonus-tile-body {
    flex: 1
}

.bonus-tile-label {
    font-size: .8rem;
    color: var(--c-text3);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px
}

.bonus-tile-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-text);
    line-height: 1.1;
    margin-bottom: 4px
}

.bonus-tile--main .bonus-tile-value {
    color: var(--c-accent)
}

.bonus-tile-desc {
    font-size: .82rem;
    color: var(--c-text2);
    line-height: 1.45
}

.bonus-tile-btn {
    padding: 9px 18px;
    font-size: .85rem
}

.leave-review-section {
    padding: 64px 0;
    background: var(--c-bg2);
    border-top: 1.5px solid var(--c-border);
    border-bottom: 1.5px solid var(--c-border)
}

.lv-bonus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(31, 111, 255, .15), rgba(247, 194, 53, .08));
    border: 1.5px solid rgba(31, 111, 255, .3);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.lv-bonus-text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lv-bonus-text strong {
    font-size: 1.05rem;
    color: var(--c-text)
}

.lv-bonus-text span {
    font-size: .875rem;
    color: var(--c-text2)
}

.lv-bonus-btn {
    white-space: nowrap;
    flex-shrink: 0
}

.review-form-wrap {
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 680px;
    margin: 0 auto
}

.review-form-wrap .section-title {
    margin-bottom: 24px;
    font-size: 1.35rem
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px
}

.form-label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-text)
}

.form-req {
    color: var(--c-red)
}

.form-input {
    padding: 11px 14px;
    border-radius: var(--radius-sm)
}

.form-textarea {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    resize: vertical;
    min-height: 120px
}

.form-hint {
    font-size: .78rem;
    color: var(--c-text3)
}

.form-ratings-fieldset {
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px
}

.form-ratings-fieldset legend {
    padding: 0 8px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-text)
}

.form-ratings-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px
}

.form-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.form-rating-label {
    flex: 0 0 160px;
    font-size: .85rem;
    color: var(--c-text2)
}

.form-stars {
    display: flex;
    gap: 4px
}

.fstar {
    font-size: 1.4rem;
    color: var(--c-star-off);
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
    line-height: 1
}

.fstar.is-on, .fstar.is-hover {
    color: var(--c-star);
    transform: scale(1.12)
}

.form-submit-btn {
    padding: 14px;
    font-size: 1rem;
    margin-top: 8px
}

.form-success {
    text-align: center;
    padding: 40px 20px
}

.form-success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--c-green)
}

.form-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px
}

.form-success p {
    color: var(--c-text2);
    font-size: .9rem;
    line-height: 1.6
}

.reviews-section {
    padding: 64px 0;
    background: var(--c-bg)
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap
}

.reviews-header .section-title {
    margin-bottom: 0
}

.reviews-header .section-title::after {
    display: none
}

.reviews-sort-sel {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    background: var(--c-surface);
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
    cursor: pointer
}

.rv-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rv-card {
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow var(--transition)
}

.rv-card:hover {
    box-shadow: var(--shadow-sm)
}

.rv-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.rv-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px
}

.rv-avatar-wrap {
    flex-shrink: 0
}

.rv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.rv-avatar--placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.rv-author-meta {
    display: flex;
    flex-direction: column;
    gap: 3px
}

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

.rv-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    color: var(--c-text3)
}

.rv-flag {
    border-radius: 2px;
    object-fit: cover
}

.rv-date {
    font-size: .78rem;
    color: var(--c-text3)
}

.rv-rating-wrap {
    text-align: right;
    flex-shrink: 0
}

.rv-stars-row {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: flex-end
}

.rv-star {
    font-size: 1.1rem;
    color: var(--c-star-off);
    line-height: 1
}

.rv-star--on {
    color: var(--c-star)
}

.rv-rating-num {
    font-size: .82rem;
    font-weight: 700;
    color: var(--c-text2);
    margin-left: 4px
}

.rv-rating-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    color: var(--c-primary);
    font-weight: 500;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(31, 111, 255, .3);
    transition: all var(--transition)
}

.rv-rating-toggle:hover {
    background: rgba(31, 111, 255, .08)
}

.rv-rating-details {
    margin-top: 10px;
    padding: 12px;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 220px;
    border: 1px solid var(--c-border)
}

.rv-detail-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.rv-detail-label {
    font-size: .75rem;
    color: var(--c-text2);
    flex: 0 0 130px
}

.rv-detail-bar {
    flex: 1;
    height: 5px;
    background: var(--c-surface2);
    border-radius: 3px;
    overflow: hidden
}

.rv-detail-fill {
    height: 100%;
    background: var(--c-primary);
    border-radius: 3px;
    transition: width .4s ease
}

.rv-detail-val {
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-text3);
    flex-shrink: 0;
    width: 30px;
    text-align: right
}

.rv-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 10px;
    line-height: 1.3
}

.rv-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--c-text3);
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px
}

.rv-source-link {
    color: var(--c-primary);
    font-weight: 500
}

.rv-source-link:hover {
    text-decoration: underline
}

.rv-body-wrap {
    margin-bottom: 14px;
    position: relative
}

.rv-body-text {
    font-size: .9rem;
    color: var(--c-text2);
    line-height: 1.65
}

.rv-body-clamp p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.rv-expand-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0
}

.rv-expand-toggle:checked ~ .rv-expand-label {
    display: none
}

.rv-expand-toggle:checked + .rv-body-text p, .rv-body-text.rv-expanded p {
    -webkit-line-clamp: unset;
    overflow: visible
}

.rv-expand-label {
    display: inline-block;
    font-size: .82rem;
    color: var(--c-primary);
    cursor: pointer;
    margin-top: 4px;
    font-weight: 500
}

.rv-expand-label:hover {
    text-decoration: underline
}

.rv-body-wrap .rv-expand-label + .rv-expand-toggle {
    order: 99
}

.rv-pros-cons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.rv-pros, .rv-cons {
    flex: 1 1 180px;
    min-width: 160px;
    border-radius: var(--radius-sm);
    padding: 12px 14px
}

.rv-pros {
    background: rgba(31, 186, 104, .07);
    border: 1.5px solid rgba(31, 186, 104, .25)
}

.rv-cons {
    background: rgba(232, 67, 90, .07);
    border: 1.5px solid rgba(232, 67, 90, .25)
}

.rv-pros-title, .rv-cons-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 8px
}

.rv-pros-title {
    color: var(--c-green)
}

.rv-cons-title {
    color: var(--c-red)
}

.rv-pros-list li, .rv-cons-list li {
    font-size: .83rem;
    color: var(--c-text2);
    padding: 3px 0;
    line-height: 1.45
}

.rv-pro-item::before {
    content: '+ ';
    color: var(--c-green);
    font-weight: 700
}

.rv-con-item::before {
    content: '− ';
    color: var(--c-red);
    font-weight: 700
}

.rv-media-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.rv-media-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border)
}

.rv-media-img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    transition: opacity var(--transition)
}

.rv-media-img:hover {
    opacity: .85
}

.rv-media-video {
    border: none;
    display: block
}

.rv-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--c-border);
    flex-wrap: wrap;
    gap: 10px
}

.rv-votes {
    display: flex;
    gap: 8px
}

.rv-vote {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    border: 1.5px solid var(--c-border);
    font-size: .82rem;
    font-weight: 600;
    transition: all var(--transition)
}

.rv-vote--like:hover, .rv-vote--like.voted {
    border-color: var(--c-green);
    color: var(--c-green);
    background: rgba(31, 186, 104, .08)
}

.rv-vote--dislike:hover, .rv-vote--dislike.voted {
    border-color: var(--c-red);
    color: var(--c-red);
    background: rgba(232, 67, 90, .08)
}

.rv-vote-count {
    font-size: .82rem
}

.rv-reply-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    border: 1.5px solid var(--c-border);
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-text2);
    transition: all var(--transition)
}

.rv-reply-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary)
}

.rv-reply-form {
    margin-top: 14px;
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    padding: 16px;
    border: 1px solid var(--c-border)
}

.rv-reply-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    resize: vertical;
    min-height: 80px;
    font-size: .875rem
}

.rv-reply-btns {
    display: flex;
    gap: 8px;
    margin-top: 8px
}

.rv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--transition);
    border: 1.5px solid transparent
}

.rv-btn--primary {
    background: var(--c-primary);
    color: #fff
}

.rv-btn--primary:hover {
    background: var(--c-primary-hover)
}

.rv-btn--ghost {
    background: transparent;
    border-color: var(--c-border);
    color: var(--c-text2)
}

.rv-btn--ghost:hover {
    border-color: var(--c-text3);
    color: var(--c-text)
}

.advantages-section {
    padding: 64px 0;
    background: var(--c-bg2)
}

.adv-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.adv-card {
    background: var(--c-bg3);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition)
}

.adv-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(31, 111, 255, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    margin-bottom: 14px
}

.adv-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px
}

.adv-desc {
    font-size: .875rem;
    color: var(--c-text2);
    line-height: 1.6
}

.content-section {
    padding: 64px 0;
    background: var(--c-bg)
}

.content-header {
    margin-bottom: 28px
}

.content-author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: inline-flex
}

.author-avatar-wrap {
    flex-shrink: 0
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border)
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

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

.author-role {
    font-size: .8rem;
    color: var(--c-text3)
}

.author-link {
    font-size: .8rem;
    color: var(--c-primary);
    font-weight: 500
}

.author-link:hover {
    text-decoration: underline
}

.content-body.cms-content {
    background: var(--c-bg2);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px;
    line-height: 1.75
}

.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4, .cms-content h5, .cms-content h6 {
    color: var(--c-text);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px
}

.cms-content h1 {
    font-size: 1.9rem
}

.cms-content h2 {
    font-size: 1.55rem
}

.cms-content h3 {
    font-size: 1.25rem
}

.cms-content h4 {
    font-size: 1.1rem
}

.cms-content p {
    color: var(--c-text2);
    margin-bottom: 16px;
    font-size: .95rem
}

.cms-content a {
    color: var(--c-primary);
    text-decoration: underline
}

.cms-content a:hover {
    color: var(--c-primary-hover)
}

.cms-content ul, .cms-content ol {
    margin: 12px 0 16px 20px
}

.cms-content ul {
    list-style: disc
}

.cms-content ol {
    list-style: decimal
}

.cms-content li {
    color: var(--c-text2);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 6px
}

.cms-content strong, .cms-content b {
    color: var(--c-text);
    font-weight: 700
}

.cms-content em, .cms-content i {
    font-style: italic
}

.cms-content blockquote {
    border-left: 3px solid var(--c-primary);
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(31, 111, 255, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-text2)
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden
}

.cms-content table thead {
    background: var(--c-surface2)
}

.cms-content th {
    padding: 12px 16px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--c-text);
    text-align: left;
    border-bottom: 2px solid var(--c-border)
}

.cms-content td {
    padding: 10px 16px;
    font-size: .875rem;
    color: var(--c-text2);
    border-bottom: 1px solid var(--c-border)
}

.cms-content tr:last-child td {
    border-bottom: none
}

.cms-content tr:nth-child(even) {
    background: rgba(255, 255, 255, .02)
}

.cms-content img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
    max-width: 100%
}

.cms-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 28px 0
}

.cms-content code {
    background: var(--c-surface2);
    color: var(--c-accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .88em;
    font-family: monospace
}

.cms-content pre {
    background: var(--c-surface2);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 16px 0
}

.cms-content pre code {
    background: none;
    padding: 0;
    color: var(--c-text)
}

.faq-section {
    padding: 64px 0;
    background: var(--c-bg2);
    border-top: 1.5px solid var(--c-border)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px
}

.faq-item {
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition)
}

.faq-item.is-open {
    border-color: var(--c-primary)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-text);
    background: var(--c-surface);
    text-align: left;
    transition: background var(--transition)
}

.faq-q:hover {
    background: var(--c-surface2)
}

.faq-q.is-open {
    background: rgba(31, 111, 255, .1);
    color: var(--c-primary)
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--transition)
}

.faq-q.is-open .faq-arrow {
    transform: rotate(180deg)
}

.faq-a {
    padding: 16px 20px;
    background: var(--c-bg3);
    font-size: .9rem;
    color: var(--c-text2);
    line-height: 1.65;
    border-top: 1px solid var(--c-border)
}

.faq-a p {
    margin: 0
}

.site-footer {
    background: var(--c-bg2);
    border-top: 1.5px solid var(--c-border);
    padding: 48px 0 0
}

.ftr-inner {
    padding-bottom: 0
}

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

.ftr-col {
    flex: 1 1 160px;
    min-width: 140px
}

.ftr-col--brand {
    flex: 1 1 220px
}

.ftr-logo {
    display: inline-block;
    margin-bottom: 12px
}

.ftr-desc {
    font-size: .82rem;
    color: var(--c-text3);
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 220px
}

.ftr-social {
    display: flex;
    gap: 8px
}

.ftr-social-link {
    width: 34px;
    height: 34px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text2);
    transition: all var(--transition)
}

.ftr-social-link:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff
}

.ftr-col-title {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px
}

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

.ftr-link {
    font-size: .85rem;
    color: var(--c-text3);
    transition: color var(--transition)
}

.ftr-link:hover {
    color: var(--c-text)
}

.ftr-trust-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.ftr-trust-item {
    cursor: default
}

.ftr-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 20px
}

.ftr-payments-label {
    font-size: .78rem;
    font-weight: 700;
    color: var(--c-text3);
    text-transform: uppercase;
    letter-spacing: .4px;
    flex-shrink: 0
}

.ftr-payments-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.ftr-pay-badge {
    font-size: .72rem;
    padding: 3px 10px;
    background: var(--c-surface);
    border-radius: 20px;
    color: var(--c-text2);
    border: 1px solid var(--c-border)
}

.ftr-legal {
    padding-bottom: 28px
}

.ftr-legal-text {
    font-size: .75rem;
    color: var(--c-text3);
    line-height: 1.65;
    margin-bottom: 10px
}

.ftr-copyright {
    font-size: .78rem;
    color: var(--c-text3)
}

.widget-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(135deg, var(--c-primary), #1252cc);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
    display: flex;
    align-items: center
}

.widget-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
    padding: 14px 20px;
    text-decoration: none;
    transition: opacity var(--transition)
}

.widget-sticky-inner:hover {
    opacity: .92
}

.widget-sticky-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.widget-sticky-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.widget-sticky-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .8)
}

.widget-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--c-accent);
    color: #111;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: .9rem;
    transition: background var(--transition);
    white-space: nowrap
}

.widget-sticky-inner:hover .widget-sticky-btn {
    background: var(--c-accent-hover)
}

.widget-sticky-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, .6);
    flex-shrink: 0;
    font-size: 1.3rem;
    padding: 0 10px 0 0;
    transition: color var(--transition)
}

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

.widget-sticky.is-hidden {
    display: none
}

.hdr-nav-overlay {
    display: none
}

@media (max-width: 1024px) {
    .adv-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .hero-tiles-col {
        width: 300px
    }
}

@media (max-width: 768px) {
    .hdr-burger {
        display: flex
    }

    .hdr-nav-wrap {
        position: fixed;
        inset: 0;
        z-index: 300;
        pointer-events: none
    }

    .hdr-nav-overlay {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        opacity: 0;
        transition: opacity .3s;
        pointer-events: none
    }

    .hdr-nav-wrap.is-open {
        pointer-events: all
    }

    .hdr-nav-wrap.is-open .hdr-nav-overlay {
        opacity: 1
    }

    .hdr-nav {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        background: var(--c-bg2);
        border-right: 1.5px solid var(--c-border);
        transform: translateX(-100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1);
        padding: 20px;
        overflow-y: auto
    }

    .hdr-nav-wrap.is-open .hdr-nav {
        transform: translateX(0);
        box-shadow: var(--shadow)
    }

    .hdr-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px
    }

    .hdr-nav-link {
        padding: 12px 14px;
        font-size: .95rem
    }

    .hdr-review-count {
        display: none
    }

    .btn-hdr--login {
        display: none
    }

    .hero-content {
        flex-direction: column
    }

    .hero-tiles-col {
        width: 100%;
        max-width: 100%
    }

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

    .form-rating-label {
        flex: 0 0 120px;
        font-size: .8rem
    }

    .casino-tile-logo {
        height: 26px
    }

    .rv-card-header {
        flex-direction: column
    }

    .rv-rating-wrap {
        text-align: left
    }

    .rv-stars-row {
        justify-content: flex-start
    }

    .rv-detail-label {
        flex: 0 0 110px;
        font-size: .72rem
    }

    .bonus-tile {
        flex: 1 1 100%
    }

    .ftr-top {
        gap: 20px
    }

    .ftr-col {
        flex: 1 1 calc(50% - 10px);
        min-width: 130px
    }

    .ftr-col--brand {
        flex: 1 1 100%
    }

    .lv-bonus-banner {
        flex-direction: column;
        align-items: flex-start
    }

    .casino-score-bar-wrap {
        width: 80px
    }

    .widget-sticky-inner {
        justify-content: space-between
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.55rem
    }

    .section-title {
        font-size: 1.35rem
    }

    .review-form-wrap {
        padding: 20px
    }

    .content-body.cms-content {
        padding: 20px
    }

    .faq-q {
        font-size: .875rem;
        padding: 14px 16px
    }

    .faq-a {
        padding: 14px 16px
    }

    .form-ratings-grid {
        gap: 14px
    }

    .form-rating-row {
        flex-wrap: wrap;
        gap: 6px
    }

    .form-rating-label {
        flex: 0 0 100%
    }

    .bonus-tiles-row {
        gap: 12px
    }
}

.wp-block-separator {
    display: none
}

.entry-content {
}

.wp-post-image {
    border-radius: var(--radius-sm)
}

.modyted {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--c-bg2, #181c27);
    border: 1.5px solid var(--c-border, #323760);
    border-radius: 20px;
    box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, .45));
    color: var(--c-text, #e8eaf0);
}

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

.modyted > *:last-child {
    margin-bottom: 0;
}

.modyted h1,
.modyted h2,
.modyted h3,
.modyted h4,
.modyted h5,
.modyted h6 {
    color: var(--c-text, #e8eaf0);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 32px 0 16px;
}

.modyted h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0;
}

.modyted h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.modyted h3 {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.modyted p,
.modyted li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text2, #9da3bf);
}

.modyted p {
    margin: 0 0 18px;
}

.modyted a {
    color: var(--c-primary, #1f6fff);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
}

.modyted a:hover {
    color: var(--c-primary-hover, #1558e0);
}

.modyted strong,
.modyted b {
    color: var(--c-text, #e8eaf0);
    font-weight: 700;
}

.modyted ul,
.modyted ol {
    margin: 0 0 24px;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.modyted ul {
    list-style: none;
}

.modyted ul li {
    position: relative;
    padding-left: 22px;
}

.modyted ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-accent, #f7c235);
    box-shadow: 0 0 0 4px rgba(247, 194, 53, .12);
}

.modyted ol {
    counter-reset: modyted-counter;
    list-style: none;
}

.modyted ol li {
    position: relative;
    padding-left: 56px;
    min-height: 40px;
}

.modyted ol li::before {
    counter-increment: modyted-counter;
    content: counter(modyted-counter);
    position: absolute;
    top: 2px;
    left: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-primary, #1f6fff), rgba(31, 111, 255, .72));
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(31, 111, 255, .2);
}

.modyted li + li {
    margin-top: 2px;
}

.modyted blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--c-primary, #1f6fff);
    background: rgba(31, 111, 255, .08);
    border-radius: 0 14px 14px 0;
    color: var(--c-text, #e8eaf0);
}

.modyted hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin: 32px 0;
}

.modyted img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px auto;
}

.modyted table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    border: 1px solid var(--c-border, #323760);
    border-radius: 16px;
    background: var(--c-bg3, #1e2334);
}

.modyted thead {
    background: rgba(255, 255, 255, .03);
}

.modyted th,
.modyted td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    white-space: nowrap;
}

.modyted th {
    color: var(--c-text, #e8eaf0);
    font-size: .9rem;
    font-weight: 700;
}

.modyted td {
    color: var(--c-text2, #9da3bf);
    font-size: .95rem;
}

.modyted tr:last-child td {
    border-bottom: 0;
}

.modyted code {
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--c-accent, #f7c235);
    font-size: .9em;
}

.modyted pre {
    margin: 24px 0;
    padding: 18px;
    border-radius: 16px;
    overflow-x: auto;
    background: var(--c-bg, #0f1117);
    border: 1px solid var(--c-border, #323760);
}

.modyted pre code {
    padding: 0;
    background: transparent;
    color: var(--c-text, #e8eaf0);
}

.modyted h1 + p {
    font-size: 1.08rem;
    color: var(--c-text, #e8eaf0);
    opacity: .88;
}

.modyted h2 + p,
.modyted h3 + p {
    margin-top: -2px;
}

.modyted p + h2,
.modyted ul + h2,
.modyted ol + h2 {
    margin-top: 40px;
}

.modyted p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .modyted {
        padding: 28px 18px;
        border-radius: 16px;
    }

    .modyted h1 {
        font-size: 1.8rem;
    }

    .modyted h2 {
        font-size: 1.35rem;
    }

    .modyted h3 {
        font-size: 1.1rem;
    }

    .modyted p,
    .modyted li {
        font-size: .96rem;
        line-height: 1.7;
    }

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

    .modyted ol li::before {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        font-size: .85rem;
    }

    .modyted th,
    .modyted td {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .modyted {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .modyted h1 {
        font-size: 1.55rem;
    }

    .modyted h2 {
        font-size: 1.2rem;
    }

    .modyted h3 {
        font-size: 1rem;
    }

    .modyted p,
    .modyted li {
        font-size: .93rem;
        line-height: 1.65;
    }

    .modyted ul li {
        padding-left: 18px;
    }

    .modyted ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }

    .modyted ol li {
        padding-left: 42px;
        min-height: 34px;
    }

    .modyted ol li::before {
        width: 28px;
        height: 28px;
        font-size: .8rem;
    }

    .modyted blockquote,
    .modyted pre,
    .modyted table {
        border-radius: 12px;
    }

    .modyted th,
    .modyted td {
        padding: 10px 12px;
        font-size: .88rem;
    }
}