:root {
    --c-bg: #0d0f1a;
    --c-surface: #161927;
    --c-surface2: #1e2235;
    --c-border: #2a2f4a;
    --c-primary: #f5c518;
    --c-primary-dark: #d4a800;
    --c-accent: #00c9a7;
    --c-btn-login: #1a6ef5;
    --c-btn-login-hover: #1558cc;
    --c-btn-reg: #f5c518;
    --c-btn-reg-hover: #d4a800;
    --c-text: #e8eaf6;
    --c-text-muted: #8a90b0;
    --c-text-dark: #0d0f1a;
    --c-green: #27ae60;
    --c-red: #e74c3c;
    --c-star: #f5c518;
    --c-star-empty: #3a3f60;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .3);
    --transition: .22s ease;
    --font-main: 'Montserrat', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    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-dark);
}

ul {
    list-style: none;
}

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

.x7k-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.x7k-section {
    padding: 64px 0;
}

.x7k-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background var(--transition), transform .15s, box-shadow .15s;
    text-decoration: none;
    white-space: nowrap;
}

.x7k-btn:active {
    transform: scale(.97);
}

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

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

.x7k-btn--reg {
    background: var(--c-btn-reg);
    color: var(--c-text-dark);
}

.x7k-btn--reg:hover {
    background: var(--c-btn-reg-hover);
    color: var(--c-text-dark);
    box-shadow: 0 0 16px rgba(245, 197, 24, .4);
}

.x7k-btn--accent {
    background: var(--c-accent);
    color: #fff;
}

.x7k-btn--accent:hover {
    background: #00a88c;
    color: #fff;
}

.x7k-btn--outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}

.x7k-btn--outline:hover {
    background: var(--c-primary);
    color: var(--c-text-dark);
}

.x7k-btn--sm {
    padding: 7px 16px;
    font-size: .82rem;
}

.x7k-btn--lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}

.x7k-btn--full {
    width: 100%;
}

.x7k-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.x7k-badge--green {
    background: rgba(39, 174, 96, .18);
    color: var(--c-green);
}

.x7k-badge--yellow {
    background: rgba(245, 197, 24, .15);
    color: var(--c-primary);
}

.x7k-badge--blue {
    background: rgba(26, 110, 245, .18);
    color: #6ab0ff;
}

.x7k-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 14px;
}

.x7k-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: var(--c-primary);
    border-radius: 2px;
}

/* =========== HEADER =========== */
.x7k-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #10131f;
    border-bottom: 1px solid var(--c-border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.x7k-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 68px;
}

.x7k-logo {
    flex-shrink: 0;
}

.x7k-logo img {
    height: 40px;
    width: auto;
}

.x7k-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.x7k-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: .88rem;
    font-weight: 600;
    transition: color var(--transition), background var(--transition);
}

.x7k-nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

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

.x7k-review-count {
    font-size: .78rem;
    color: var(--c-text-muted);
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 4px 12px;
    white-space: nowrap;
}

.x7k-review-count strong {
    color: var(--c-primary);
}

.x7k-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
}

.x7k-burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

.x7k-burger.open span:nth-child(2) {
    opacity: 0;
}

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

.x7k-mobile-menu {
    display: none;
    flex-direction: column;
    background: #10131f;
    border-top: 1px solid var(--c-border);
    padding: 16px 20px;
    gap: 8px;
}

.x7k-mobile-menu.open {
    display: flex;
}

.x7k-mobile-menu .x7k-nav-link {
    padding: 10px 14px;
}

.x7k-mobile-menu .x7k-nav-sep {
    height: 1px;
    background: var(--c-border);
    margin: 4px 0;
}

/* =========== HERO =========== */
.x7k-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.x7k-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 15, 26, .92) 0%, rgba(13, 15, 26, .6) 60%, rgba(13, 15, 26, .3) 100%);
}

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

.x7k-hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--c-primary);
    margin-bottom: 16px;
}

.x7k-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #fff;
}

.x7k-hero-title span {
    color: var(--c-primary);
}

.x7k-hero-desc {
    font-size: 1.05rem;
    color: rgba(232, 234, 246, .8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.x7k-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========== CASINO TILE =========== */
.x7k-casino-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.x7k-casino-tile {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.x7k-casino-tile-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.x7k-casino-logo-wrap {
    width: 80px;
    height: 80px;
    background: #0d0f1a;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.x7k-casino-logo-wrap img {
    width: 64px;
    height: auto;
}

.x7k-casino-tile-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.x7k-tile-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.x7k-tile-stars {
    display: flex;
    gap: 3px;
}

.x7k-tile-stars span {
    font-size: 1.2rem;
    color: var(--c-star-empty);
}

.x7k-tile-stars span.filled {
    color: var(--c-star);
}

.x7k-tile-rating-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--c-primary);
}

.x7k-score-bar-wrap {
    margin-top: 14px;
}

.x7k-score-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--c-text-muted);
    margin-bottom: 6px;
}

.x7k-score-bar {
    height: 8px;
    background: var(--c-border);
    border-radius: 4px;
    overflow: hidden;
}

.x7k-score-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width .8s cubic-bezier(.4, 0, .2, 1);
}

.x7k-casino-tile-bonus {
    background: rgba(245, 197, 24, .07);
    border: 1px solid rgba(245, 197, 24, .2);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 18px;
}

.x7k-casino-tile-bonus-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.x7k-casino-tile-bonus-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.x7k-casino-tile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.x7k-info-tile {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.x7k-info-tile-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.x7k-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.x7k-info-row {
    padding: 10px 12px;
    background: var(--c-surface2);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--c-border);
}

.x7k-info-row.highlighted {
    border-left-color: var(--c-primary);
}

.x7k-info-key {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    margin-bottom: 4px;
}

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

.x7k-spoiler-btn {
    background: none;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-muted);
    font-size: .82rem;
    padding: 8px 16px;
    margin-top: 14px;
    width: 100%;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.x7k-spoiler-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.x7k-spoiler-content {
    display: none;
    margin-top: 12px;
}

.x7k-spoiler-content.open {
    display: block;
}

.x7k-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.x7k-logo-chip {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: .78rem;
    color: var(--c-text-muted);
    font-weight: 600;
}

/* =========== BONUS TILES =========== */
.x7k-bonuses-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.x7k-bonus-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), transform var(--transition);
}

.x7k-bonus-card:hover {
    border-color: var(--c-primary);
    transform: translateY(-2px);
}

.x7k-bonus-card-icon {
    font-size: 1.8rem;
}

.x7k-bonus-card-name {
    font-size: .82rem;
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.x7k-bonus-card-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

/* =========== PROS CONS =========== */
.x7k-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.x7k-pros, .x7k-cons {
    background: var(--c-surface);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--c-border);
}

.x7k-pros {
    border-top: 3px solid var(--c-green);
}

.x7k-cons {
    border-top: 3px solid var(--c-red);
}

.x7k-pros-title, .x7k-cons-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.x7k-pros li, .x7k-cons li {
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--c-text);
}

.x7k-pros li:last-child, .x7k-cons li:last-child {
    border-bottom: none;
}

.x7k-pros li::before {
    content: '+';
    color: var(--c-green);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.x7k-cons li::before {
    content: '−';
    color: var(--c-red);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =========== REVIEW BANNER =========== */
.x7k-bonus-banner {
    background: linear-gradient(135deg, #1a2045 0%, #1e2a1a 100%);
    border: 1px solid rgba(245, 197, 24, .25);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.x7k-bonus-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.x7k-bonus-banner-text p {
    font-size: .9rem;
    color: var(--c-text-muted);
}

.x7k-bonus-banner-text span {
    color: var(--c-primary);
    font-weight: 700;
}

/* =========== REVIEW FORM =========== */
.x7k-review-form-wrap {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.x7k-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.x7k-form-full {
    grid-column: 1 / -1;
}

.x7k-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.x7k-field label {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
}

.x7k-field input,
.x7k-field textarea,
.x7k-field select {
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: .93rem;
    padding: 12px 14px;
    transition: border-color var(--transition);
    outline: none;
}

.x7k-field input::placeholder, .x7k-field textarea::placeholder {
    color: var(--c-text-muted);
}

.x7k-field input:focus, .x7k-field textarea:focus, .x7k-field select:focus {
    border-color: var(--c-primary);
}

.x7k-field select option {
    background: var(--c-bg);
}

.x7k-field textarea {
    resize: vertical;
    min-height: 110px;
}

.x7k-rating-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.x7k-rating-input-item label {
    display: block;
    font-size: .8rem;
    color: var(--c-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.x7k-star-input {
    display: flex;
    gap: 4px;
}

.x7k-star-input input[type=radio] {
    display: none;
}

.x7k-star-input label {
    font-size: 1.5rem;
    color: var(--c-star-empty);
    cursor: pointer;
    transition: color .12s;
    text-transform: none;
    letter-spacing: 0;
}

.x7k-star-input:has(input:checked ~ label) label,
.x7k-star-input input[type=radio]:checked ~ label,
.x7k-star-input label:hover,
.x7k-star-input label:hover ~ label {
    color: var(--c-star);
}

.x7k-star-input {
    direction: rtl;
    justify-content: flex-end;
}

.x7k-star-input label:hover,
.x7k-star-input label:hover ~ label {
    color: var(--c-star);
}

.x7k-form-success {
    display: none;
    background: rgba(39, 174, 96, .12);
    border: 1.5px solid var(--c-green);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    text-align: center;
    color: var(--c-green);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
}

.x7k-form-success.show {
    display: block;
}

/* =========== USER REVIEWS =========== */
.mb-reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mb-review-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: border-color var(--transition);
}

.mb-review-card:hover {
    border-color: rgba(245, 197, 24, .3);
}

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

.mb-review-author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mb-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-border);
    flex-shrink: 0;
}

.mb-review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

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

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--c-text-muted);
}

.mb-review-country img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.mb-review-date {
    font-size: .75rem;
    color: var(--c-text-muted);
}

.mb-review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mb-rating-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb-stars {
    display: flex;
    gap: 2px;
}

.mb-star {
    font-size: 1rem;
    color: var(--c-star-empty);
}

.mb-star-filled {
    color: var(--c-star);
}

.mb-rating-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-primary);
}

.mb-rating-details-btn {
    font-size: .75rem;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
    border-radius: 20px;
    padding: 4px 10px;
    transition: all var(--transition);
    background: none;
}

.mb-rating-details-btn:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.mb-rating-details-panel {
    display: none;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.mb-rating-details-panel.open {
    display: block;
}

.mb-rating-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    font-size: .82rem;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
}

.mb-rating-detail-row:last-child {
    border-bottom: none;
}

.mb-detail-stars {
    display: flex;
    gap: 2px;
}

.mb-detail-star {
    font-size: .8rem;
    color: var(--c-star-empty);
}

.mb-detail-star.filled {
    color: var(--c-star);
}

.mb-review-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.mb-review-source {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mb-review-source a {
    color: var(--c-accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--c-accent);
}

.mb-review-source a:hover {
    color: #fff;
}

.mb-source-badge {
    background: rgba(0, 201, 167, .12);
    color: var(--c-accent);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: .72rem;
    font-weight: 700;
}

.mb-review-body {
    font-size: .93rem;
    line-height: 1.7;
    color: rgba(232, 234, 246, .85);
    margin-bottom: 14px;
}

.mb-review-text {
    overflow: hidden;
}

.mb-review-text.collapsed {
    max-height: 5.8em;
}

.mb-review-expand {
    color: var(--c-primary);
    font-size: .82rem;
    font-weight: 700;
    background: none;
    border: none;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    margin-top: 4px;
}

.mb-review-expand:hover {
    color: var(--c-primary-dark);
}

.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.mb-review-pros, .mb-review-cons {
    background: var(--c-surface2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: .85rem;
}

.mb-review-pros {
    border-left: 3px solid var(--c-green);
}

.mb-review-cons {
    border-left: 3px solid var(--c-red);
}

.mb-review-pros h5, .mb-review-cons h5 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.mb-review-pros h5 {
    color: var(--c-green);
}

.mb-review-cons h5 {
    color: var(--c-red);
}

.mb-pro-item, .mb-con-item {
    padding: 3px 0;
    color: var(--c-text);
    line-height: 1.5;
}

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

.mb-review-media-item {
    width: 100px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--c-border);
    cursor: pointer;
    transition: border-color var(--transition);
}

.mb-review-media-item:hover {
    border-color: var(--c-primary);
}

.mb-review-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.mb-vote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.mb-like-btn:hover {
    border-color: var(--c-green);
    color: var(--c-green);
    background: rgba(39, 174, 96, .1);
}

.mb-dislike-btn:hover {
    border-color: var(--c-red);
    color: var(--c-red);
    background: rgba(231, 76, 60, .1);
}

.mb-like-btn.voted {
    border-color: var(--c-green);
    color: var(--c-green);
    background: rgba(39, 174, 96, .1);
}

.mb-dislike-btn.voted {
    border-color: var(--c-red);
    color: var(--c-red);
    background: rgba(231, 76, 60, .1);
}

.mb-reply-btn {
    font-size: .82rem;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    background: none;
    font-weight: 600;
    transition: all var(--transition);
}

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

.mb-reply-form {
    background: var(--c-surface2);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 14px;
}

.mb-reply-form textarea {
    width: 100%;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--font-main);
    font-size: .9rem;
    padding: 10px 12px;
    resize: vertical;
    outline: none;
    transition: border-color var(--transition);
}

.mb-reply-form textarea:focus {
    border-color: var(--c-primary);
}

.mb-reply-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.mb-btn {
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 700;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.mb-btn-primary {
    background: var(--c-primary);
    color: var(--c-text-dark);
    border: none;
}

.mb-btn-primary:hover {
    background: var(--c-primary-dark);
}

.mb-btn-secondary {
    background: none;
    color: var(--c-text-muted);
    border: 1px solid var(--c-border);
}

.mb-btn-secondary:hover {
    border-color: var(--c-text-muted);
    color: var(--c-text);
}

/* =========== SUPPLEMENTARY CONTENT =========== */
.x7k-content-block {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
}

.x7k-content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 28px 0 14px;
}

.x7k-content-block h2:first-child {
    margin-top: 0;
}

.x7k-content-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-primary);
    margin: 22px 0 10px;
}

.x7k-content-block h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 16px 0 8px;
}

.x7k-content-block p {
    font-size: .93rem;
    line-height: 1.75;
    color: rgba(232, 234, 246, .85);
    margin-bottom: 14px;
}

.x7k-content-block ul, .x7k-content-block ol {
    margin: 10px 0 16px 20px;
}

.x7k-content-block ul {
    list-style: disc;
}

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

.x7k-content-block li {
    font-size: .93rem;
    line-height: 1.7;
    color: rgba(232, 234, 246, .85);
    margin-bottom: 5px;
}

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

.x7k-content-block a:hover {
    color: var(--c-primary-dark);
}

.x7k-content-block strong, .x7k-content-block b {
    color: #fff;
    font-weight: 700;
}

.x7k-content-block em, .x7k-content-block i {
    font-style: italic;
}

.x7k-content-block blockquote {
    border-left: 3px solid var(--c-primary);
    padding: 12px 20px;
    background: var(--c-surface2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: rgba(232, 234, 246, .7);
}

.x7k-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    overflow-x: auto;
    display: block;
}

.x7k-content-block thead th {
    background: var(--c-surface2);
    padding: 10px 14px;
    text-align: left;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--c-primary);
    border: 1.5px solid var(--c-border);
}

.x7k-content-block tbody td {
    padding: 10px 14px;
    font-size: .9rem;
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
}

.x7k-content-block tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

/* =========== AUTHOR =========== */
.x7k-author-box {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.x7k-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--c-surface2);
    border: 2px solid var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-primary);
    flex-shrink: 0;
}

.x7k-author-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.x7k-author-role {
    font-size: .82rem;
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.x7k-author-bio {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.x7k-author-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.x7k-author-link {
    font-size: .78rem;
    color: var(--c-accent);
    border: 1px solid rgba(0, 201, 167, .3);
    border-radius: 20px;
    padding: 3px 12px;
    transition: all var(--transition);
}

.x7k-author-link:hover {
    background: rgba(0, 201, 167, .1);
    color: var(--c-accent);
}

/* =========== FOOTER =========== */
.x7k-footer {
    background: #0a0c15;
    border-top: 1px solid var(--c-border);
    padding: 48px 0 28px;
    margin-top: 64px;
}

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

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

.x7k-footer-desc {
    font-size: .85rem;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.x7k-footer-col-title {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

.x7k-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.x7k-footer-links a {
    font-size: .88rem;
    color: rgba(232, 234, 246, .6);
    transition: color var(--transition);
}

.x7k-footer-links a:hover {
    color: var(--c-primary);
}

.x7k-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.x7k-trust-logo {
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.x7k-footer-bottom {
    padding-top: 22px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.x7k-copyright {
    font-size: .8rem;
    color: var(--c-text-muted);
    text-align: center;
}

.x7k-legal {
    font-size: .75rem;
    color: rgba(138, 144, 176, .6);
    text-align: center;
    line-height: 1.6;
}

/* =========== WIDGET =========== */
.x7k-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #10131f;
    border-top: 2px solid var(--c-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
}

.x7k-widget-text {
    font-size: .9rem;
    color: rgba(232, 234, 246, .8);
}

.x7k-widget-text strong {
    color: var(--c-primary);
}

.x7k-widget-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.x7k-widget-close:hover {
    background: var(--c-border);
    color: var(--c-text);
}

body.widget-closed .x7k-widget {
    display: none;
}

/* =========== MODAL =========== */
.x7k-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.x7k-modal-overlay.open {
    display: flex;
}

.x7k-modal {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
    animation: modalIn .2s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.x7k-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-surface2);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.x7k-modal-close:hover {
    background: var(--c-border);
    color: var(--c-text);
}

.x7k-modal-img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* =========== LIGHTBOX =========== */
.x7k-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.x7k-lightbox.open {
    display: flex;
}

.x7k-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.x7k-lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========== FAQ =========== */
.x7k-faq {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.x7k-faq-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.x7k-faq-q:hover {
    color: var(--c-primary);
}

.x7k-faq-q svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.x7k-faq-item.open .x7k-faq-q {
    color: var(--c-primary);
}

.x7k-faq-item.open .x7k-faq-q svg {
    transform: rotate(180deg);
}

.x7k-faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(232, 234, 246, .75);
    border-top: 1px solid var(--c-border);
}

.x7k-faq-item.open .x7k-faq-a {
    display: block;
    padding-top: 14px;
}

/* =========== UNUSED / DECOY =========== */
.wpp-list, .widget_recent_comments, .wp-block-latest-posts {
    display: none !important;
}

.elementor-widget-container > .elementor-hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.page-id-3872 .sidebar {
    display: none;
}

.wpml-ls-legacy-dropdown {
    opacity: 0;
    pointer-events: none;
}

/* =========== ANIMATIONS =========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, .4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
    }
}

.x7k-animate-in {
    animation: fadeUp .5s ease both;
}

.x7k-btn--reg {
    animation: pulse 2.5s infinite;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
    .x7k-casino-overview {
        grid-template-columns: 1fr;
    }

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

    .x7k-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .x7k-nav {
        display: none;
    }

    .x7k-burger {
        display: flex;
    }

    .x7k-section {
        padding: 40px 0;
    }

    .x7k-section-title {
        font-size: 1.4rem;
    }

    .x7k-hero-content {
        padding: 60px 0;
    }

    .x7k-pros-cons {
        grid-template-columns: 1fr;
    }

    .x7k-form-grid {
        grid-template-columns: 1fr;
    }

    .x7k-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .x7k-bonus-banner {
        flex-direction: column;
        text-align: center;
        padding: 22px;
    }

    .x7k-casino-tile {
        padding: 20px;
    }

    .x7k-info-grid {
        grid-template-columns: 1fr;
    }

    .x7k-rating-inputs {
        grid-template-columns: 1fr 1fr;
    }

    .mb-review-pros-cons {
        grid-template-columns: 1fr;
    }

    .x7k-content-block {
        padding: 22px 18px;
    }

    .x7k-author-box {
        flex-direction: column;
    }

    .x7k-widget {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .x7k-widget-close {
        top: 10px;
        right: 10px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .x7k-hero-actions {
        flex-direction: column;
    }

    .x7k-bonuses-row {
        grid-template-columns: 1fr 1fr;
    }

    .x7k-rating-inputs {
        grid-template-columns: 1fr;
    }

    .x7k-header-right .x7k-review-count {
        display: none;
    }
}

.ldmnhgd {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--c-surface, #161927);
    border: 1px solid var(--c-border, #2a2f4a);
    border-radius: 20px;
    box-shadow: var(--shadow, 0 4px 24px rgba(0, 0, 0, .45));
    color: var(--c-text, #e8eaf6);
}

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

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

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

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

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

.ldmnhgd h3 {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    color: var(--c-primary, #f5c518);
}

.ldmnhgd p,
.ldmnhgd li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-text-muted, #8a90b0);
}

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

.ldmnhgd a {
    color: var(--c-accent, #00c9a7);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: var(--transition, .22s ease);
}

.ldmnhgd a:hover {
    color: var(--c-primary, #f5c518);
}

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

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

.ldmnhgd ul {
    list-style: none;
}

.ldmnhgd ul li {
    position: relative;
    padding-left: 24px;
}

.ldmnhgd ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary, #f5c518);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, .14);
}

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

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

.ldmnhgd ol li::before {
    counter-increment: ldmnhgd-counter;
    content: counter(ldmnhgd-counter);
    position: absolute;
    top: 2px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--c-primary, #f5c518), var(--c-primary-dark, #d4a800));
    color: var(--c-text-dark, #0d0f1a);
    font-size: .95rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(245, 197, 24, .2);
}

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

.ldmnhgd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--c-primary, #f5c518);
    background: rgba(245, 197, 24, .08);
    border-radius: 0 14px 14px 0;
    color: var(--c-text, #e8eaf6);
}

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

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

.ldmnhgd table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
    background: var(--c-surface2, #1e2235);
    border: 1px solid var(--c-border, #2a2f4a);
    border-radius: 16px;
}

.ldmnhgd thead {
    background: rgba(255, 255, 255, .04);
}

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

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

.ldmnhgd td {
    color: var(--c-text-muted, #8a90b0);
    font-size: .95rem;
}

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

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

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

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

.ldmnhgd h1 + p {
    font-size: 1.08rem;
    color: var(--c-text, #e8eaf6);
    opacity: .9;
}

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

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

.ldmnhgd aside {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
}

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

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

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

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

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

    .ldmnhgd ol li {
        padding-left: 50px;
    }

    .ldmnhgd ol li::before {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: .85rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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