/* ================================================
   Nomad Casino — Main Stylesheet v1.7
   Colors: #1d2158 (header/footer), #2d3447 (bg),
           #96a5d1 (login/accent), #eaae16 (signup/bonus)
   Font: Roboto
   ================================================ */

/* --- CSS Variables --- */
:root {
    --nd-bg: #2d3447;
    --nd-hdr: #1d2158;
    --nd-accent: #96a5d1;
    --nd-gold: #eaae16;
    --nd-gold-dark: #c8920e;
    --nd-text: #e8ecf4;
    --nd-text-muted: #a0aabf;
    --nd-border: rgba(150, 165, 209, 0.18);
    --nd-card: rgba(29, 33, 88, 0.72);
    --nd-card-solid: #232755;
    --nd-radius: 12px;
    --nd-radius-sm: 7px;
    --nd-shadow: 0 4px 24px rgba(0, 0, 0, 0.38);
    --nd-trans: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--nd-bg);
}

body.nd-body {
    font-family: 'Roboto', sans-serif;
    background: var(--nd-bg);
    color: var(--nd-text);
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 80px; /* widget bar clearance */
}

a {
    color: var(--nd-accent);
    text-decoration: none;
    transition: color var(--nd-trans);
}

a:hover {
    color: var(--nd-gold);
}

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

/* Unused styles for uniqualization */
.nd-unused-xk3f {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.nd-ghost-zp77 {
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.nd-empty-rq12 {
}

.xz99a-pad {
    padding: 0;
}

/* ================================================
   HEADER
   ================================================ */
.nd-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nd-hdr);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.nd-hdr-wrap {
    padding: 0;
}

.nd-hdr-inner {
    min-height: 64px;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.nd-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nd-footer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* Nav */
.nd-nav-list {
    gap: 4px !important;
}

.nd-nav-link {
    color: var(--nd-text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--nd-radius-sm);
    transition: background var(--nd-trans), color var(--nd-trans);
    white-space: nowrap;
}

.nd-nav-link:hover {
    background: rgba(150, 165, 209, 0.15);
    color: var(--nd-gold);
}

/* Online badge */
.nd-online-badge {
    background: rgba(150, 165, 209, 0.12);
    border: 1px solid var(--nd-border);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 13px;
    color: var(--nd-text-muted);
}

.nd-online-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: ndPulseGreen 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes ndPulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(74, 222, 128, 0);
    }
}

.nd-online-count {
    color: #4ade80;
    font-weight: 700;
    font-size: 14px;
}

/* Buttons */
.btn.nd-btn-login {
    background: var(--nd-accent);
    color: #fff;
    border: none;
    border-radius: var(--nd-radius-sm);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    transition: background var(--nd-trans), transform var(--nd-trans), box-shadow var(--nd-trans);
    white-space: nowrap;
}

.btn.nd-btn-login:hover {
    background: #7d8fc0;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(150, 165, 209, 0.4);
}

.btn.nd-btn-signup {
    background: var(--nd-gold);
    color: #1a1a2e;
    border: none;
    border-radius: var(--nd-radius-sm);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    transition: background var(--nd-trans), transform var(--nd-trans), box-shadow var(--nd-trans);
    white-space: nowrap;
}

.btn.nd-btn-signup:hover {
    background: var(--nd-gold-dark);
    color: #1a1a2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(234, 174, 22, 0.45);
}

.nd-btn-lg {
    font-size: 16px !important;
    padding: 12px 28px !important;
}

/* Pulse animation */
@keyframes ndPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(234, 174, 22, 0.55);
    }
    60% {
        box-shadow: 0 0 0 10px rgba(234, 174, 22, 0);
    }
}

.nd-btn-pulse {
    animation: ndPulse 2.2s ease-in-out infinite;
}

/* Burger */
.nd-burger {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius-sm);
    cursor: pointer;
    padding: 6px;
    gap: 4px;
    transition: border-color var(--nd-trans);
}

.nd-burger:hover {
    border-color: var(--nd-accent);
}

.nd-burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nd-text);
    border-radius: 2px;
    transition: transform var(--nd-trans), opacity var(--nd-trans);
}

.nd-burger.is-open .nd-burger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nd-burger.is-open .nd-burger-bar:nth-child(2) {
    opacity: 0;
}

.nd-burger.is-open .nd-burger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.nd-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--nd-trans);
    background: var(--nd-hdr);
    border-top: 1px solid var(--nd-border);
}

.nd-mobile-menu.is-open {
    max-height: 400px;
    padding: 12px 0 16px;
}

.nd-mob-link {
    display: block;
    color: var(--nd-text);
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--nd-border);
    transition: color var(--nd-trans), background var(--nd-trans);
}

.nd-mob-link:hover {
    background: rgba(150, 165, 209, 0.1);
    color: var(--nd-gold);
}

.nd-hero-section {
    position: relative;
    background: url('/Nomad-Casino-Banner.png') center center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.nd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(29, 33, 88, 0.93) 0%, rgba(45, 52, 71, 0.75) 60%, rgba(29, 33, 88, 0.5) 100%);
}

.nd-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.nd-hero-text {
    max-width: 560px;
}

.nd-hero-badge {
    display: inline-block;
    background: rgba(150, 165, 209, 0.2);
    border: 1px solid var(--nd-accent);
    color: var(--nd-accent);
    font-size: 13px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.nd-hero-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
    text-wrap: balance;
}

.nd-hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--nd-text);
    line-height: 1.55;
    margin-bottom: 0;
}

.nd-hero-subtitle strong {
    color: var(--nd-gold);
    font-weight: 700;
}

/* ================================================
   SECTIONS (shared)
   ================================================ */
.nd-section {
    background: var(--nd-card);
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius);
    padding: 36px 32px;
    margin: 32px 0;
    box-shadow: var(--nd-shadow);
    animation: ndFadeUp 0.55s ease both;
}

@keyframes ndFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nd-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance;
}

.nd-section-sub {
    color: var(--nd-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.nd-section-cta {
    margin-top: 20px;
}

/* ================================================
   CASINO INFO TABLE
   ================================================ */
.nd-table-wrap {
    border-radius: var(--nd-radius-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nd-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
    color: var(--nd-text);
    min-width: 340px;
}

.nd-info-table tbody tr {
    border-bottom: 1px solid var(--nd-border);
    transition: background var(--nd-trans);
}

.nd-info-table tbody tr:hover {
    background: rgba(150, 165, 209, 0.07);
}

.nd-info-table tbody tr:last-child {
    border-bottom: none;
}

.nd-tbl-param, .nd-tbl-val {
    padding: 10px 14px;
    font-size: 15px;
    text-align: left;
    vertical-align: middle;
}

.nd-tbl-param {
    color: var(--nd-text-muted);
    font-weight: 500;
    width: 42%;
    border-right: 1px solid var(--nd-border);
}

.nd-tbl-val {
    color: var(--nd-text);
    font-weight: 400;
}

.nd-tbl-val strong {
    color: var(--nd-gold);
}

/* ================================================
   REVIEW / CONTENT BLOCK
   ================================================ */
.nd-content-review {
    padding: 36px 32px;
}

/* Author card */
.nd-author-card {
    background: rgba(29, 33, 88, 0.5);
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius-sm);
    padding: 16px;
}

.nd-author-avatar img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border: 2px solid var(--nd-accent);
}

.nd-author-name {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.nd-author-link {
    color: var(--nd-accent);
}

.nd-author-title {
    font-size: 13px;
    color: var(--nd-text-muted);
    margin-top: 2px;
}

.nd-author-contacts {
    font-size: 13px;
}

/* Review body — styled bare HTML */
.nd-review-body {
    color: var(--nd-text);
    font-size: 16px;
    line-height: 1.7;
}

.nd-review-body h1,
.nd-review-body h2,
.nd-review-body h3,
.nd-review-body h4 {
    color: #fff;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 10px;
}

.nd-review-body h2 {
    font-size: 22px;
    border-bottom: 1px solid var(--nd-border);
    padding-bottom: 6px;
}

.nd-review-body h3 {
    font-size: 18px;
    color: var(--nd-accent);
}

.nd-review-body p {
    margin-bottom: 14px;
}

.nd-review-body ul, .nd-review-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.nd-review-body li {
    margin-bottom: 6px;
}

.nd-review-body a {
    color: var(--nd-accent);
    text-decoration: underline;
}

.nd-review-body strong {
    color: var(--nd-gold);
}

.nd-review-body em {
    color: var(--nd-text-muted);
}

.nd-review-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
    overflow-x: auto;
    display: block;
}

.nd-review-body table th,
.nd-review-body table td {
    border: 1px solid var(--nd-border);
    padding: 8px 12px;
    text-align: left;
    color: var(--nd-text);
}

.nd-review-body table th {
    background: rgba(29, 33, 88, 0.6);
    color: var(--nd-accent);
    font-weight: 600;
}

.nd-review-body blockquote {
    border-left: 3px solid var(--nd-accent);
    margin-left: 0;
    padding: 8px 16px;
    background: rgba(150, 165, 209, 0.07);
    border-radius: 0 var(--nd-radius-sm) var(--nd-radius-sm) 0;
    color: var(--nd-text-muted);
    font-style: italic;
}

/* ================================================
   JACKPOTS
   ================================================ */
.nd-jackpot-card {
    background: var(--nd-card-solid);
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--nd-trans), box-shadow var(--nd-trans);
    height: 100%;
}

.nd-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nd-jackpot-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.nd-jackpot-mega .nd-jackpot-label {
    color: #ff6b35;
}

.nd-jackpot-major .nd-jackpot-label {
    color: var(--nd-gold);
}

.nd-jackpot-minor .nd-jackpot-label {
    color: var(--nd-accent);
}

.nd-jackpot-mini .nd-jackpot-label {
    color: #a3e635;
}

.nd-jackpot-game {
    font-size: 14px;
    color: var(--nd-text-muted);
    margin-bottom: 10px;
}

.nd-jackpot-amount {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    min-height: 38px;
    transition: color 0.3s;
}

.nd-jackpot-mega .nd-jackpot-amount {
    color: #ff6b35;
}

.nd-jackpot-major .nd-jackpot-amount {
    color: var(--nd-gold);
}

.nd-jackpot-minor .nd-jackpot-amount {
    color: var(--nd-accent);
}

.nd-jackpot-mini .nd-jackpot-amount {
    color: #a3e635;
}

/* ================================================
   TOURNAMENTS
   ================================================ */
.nd-tournaments-slider {
    position: relative;
    overflow: hidden;
}

.nd-tournaments-track {
    display: flex;
    gap: 20px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nd-tournament-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--nd-card-solid);
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius);
    padding: 24px 20px;
    position: relative;
    transition: transform var(--nd-trans), box-shadow var(--nd-trans);
}

.nd-tournament-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.nd-tourn-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    background: rgba(150, 165, 209, 0.2);
    color: var(--nd-accent);
    letter-spacing: 0.5px;
}

.nd-tourn-badge--hot {
    background: rgba(234, 174, 22, 0.2);
    color: var(--nd-gold);
}

.nd-tourn-badge--live {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.nd-tourn-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.nd-tourn-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.nd-tourn-desc {
    font-size: 14px;
    color: var(--nd-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.nd-tourn-prize {
    font-size: 24px;
    font-weight: 900;
    color: var(--nd-gold);
    margin-bottom: 6px;
}

.nd-tourn-timer-label {
    font-size: 12px;
    color: var(--nd-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nd-tourn-timer {
    font-size: 20px;
    font-weight: 700;
    color: var(--nd-accent);
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
}

/* Slider dots */
.nd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nd-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--nd-trans), transform var(--nd-trans);
}

.nd-dot--active, .nd-dot:hover {
    background: var(--nd-gold);
    transform: scale(1.25);
}

/* ================================================
   SLOT MINI-GAME
   ================================================ */
.nd-slot-machine {
    max-width: 460px;
    margin: 0 auto;
}

.nd-reel {
    width: 90px;
    height: 90px;
    background: var(--nd-card-solid);
    border: 2px solid var(--nd-border);
    border-radius: var(--nd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s;
}

.nd-reel.is-spinning {
    border-color: var(--nd-gold);
}

.nd-reel-inner {
    transition: transform 0.08s linear;
    line-height: 1;
    user-select: none;
}

.nd-slot-result {
    min-height: 28px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--nd-text-muted);
    transition: color 0.3s;
}

.nd-slot-result.win {
    color: var(--nd-gold);
}

.nd-slot-result.lose {
    color: #f87171;
}

.btn.nd-btn-spin {
    background: linear-gradient(135deg, var(--nd-hdr) 0%, #2a2f72 100%);
    color: #fff;
    border: 2px solid var(--nd-accent);
    border-radius: var(--nd-radius-sm);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 32px;
    cursor: pointer;
    transition: background var(--nd-trans), transform var(--nd-trans), box-shadow var(--nd-trans);
    letter-spacing: 0.5px;
}

.btn.nd-btn-spin:hover:not(:disabled) {
    background: linear-gradient(135deg, #2a2f72 0%, var(--nd-hdr) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 165, 209, 0.35);
}

.btn.nd-btn-spin:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.nd-spin-icon {
    display: inline-block;
    margin-right: 6px;
}

.btn.nd-btn-spin.is-spinning .nd-spin-icon {
    animation: ndSpin 0.5s linear infinite;
}

@keyframes ndSpin {
    to {
        transform: rotate(360deg);
    }
}

.nd-slot-win-block {
    text-align: center;
    background: rgba(234, 174, 22, 0.1);
    border: 1px solid rgba(234, 174, 22, 0.35);
    border-radius: var(--nd-radius);
    padding: 24px;
    margin-top: 20px;
    animation: ndFadeUp 0.4s ease both;
}

.nd-slot-win-text {
    font-size: 16px;
    color: var(--nd-text-muted);
    margin-bottom: 6px;
}

.nd-slot-win-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--nd-gold);
}

/* ================================================
   FAQ
   ================================================ */
.nd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nd-faq-item {
    background: var(--nd-card-solid);
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius-sm);
    overflow: hidden;
    transition: border-color var(--nd-trans);
}

.nd-faq-item:hover {
    border-color: var(--nd-accent);
}

.nd-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--nd-trans);
    line-height: 1.45;
}

.nd-faq-question:hover {
    color: var(--nd-gold);
}

.nd-faq-arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--nd-accent);
    border-bottom: 2px solid var(--nd-accent);
    transform: rotate(45deg);
    transition: transform var(--nd-trans), border-color var(--nd-trans);
    margin-top: -4px;
}

.nd-faq-question[aria-expanded="true"] .nd-faq-arrow {
    transform: rotate(-135deg);
    margin-top: 4px;
    border-color: var(--nd-gold);
}

.nd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding var(--nd-trans);
    color: var(--nd-text);
    font-size: 15px;
    line-height: 1.65;
    padding: 0 18px;
}

.nd-faq-answer--open {
    max-height: 300px;
    padding: 0 18px 16px;
}

.nd-faq-answer div {
    padding: 0;
}

/* ================================================
   WIDGET BAR
   ================================================ */
.nd-widget-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--nd-hdr);
    border-top: 2px solid var(--nd-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
    padding: 10px 0;
    transition: transform 0.35s ease;
}

.nd-widget-bar.is-hidden {
    transform: translateY(100%);
}

.nd-widget-inner {
    flex-wrap: wrap;
    gap: 8px;
}

.nd-widget-label {
    font-size: 14px;
    color: var(--nd-text-muted);
    margin-right: 6px;
}

.nd-widget-bonus {
    font-size: 16px;
    font-weight: 800;
    color: var(--nd-gold);
}

.nd-widget-btn {
    font-size: 15px !important;
    padding: 9px 22px !important;
}

.nd-widget-close {
    background: transparent;
    border: 1px solid var(--nd-border);
    border-radius: var(--nd-radius-sm);
    color: var(--nd-text-muted);
    font-size: 18px;
    line-height: 1;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--nd-trans), color var(--nd-trans);
    flex-shrink: 0;
}

.nd-widget-close:hover {
    border-color: #f87171;
    color: #f87171;
}

/* ================================================
   FOOTER
   ================================================ */
.nd-site-footer {
    background: var(--nd-hdr);
    color: var(--nd-text);
    margin-top: 0;
}

.nd-footer-wrap {
    padding: 0;
}

.nd-footer-top {
    row-gap: 28px !important;
}

.nd-footer-desc {
    font-size: 13px;
    color: var(--nd-text-muted);
    line-height: 1.55;
    margin-bottom: 0;
    margin-top: 10px;
}

.nd-footer-nav-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nd-accent);
    font-weight: 600;
}

.nd-footer-link {
    color: var(--nd-text-muted);
    font-size: 14px;
    display: inline-block;
    transition: color var(--nd-trans);
    padding: 2px 0;
}

.nd-footer-link:hover {
    color: var(--nd-gold);
}

.nd-pay-badge, .nd-prov-badge {
    display: inline-block;
    background: rgba(150, 165, 209, 0.12);
    border: 1px solid var(--nd-border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    color: var(--nd-text);
    white-space: nowrap;
}

.nd-footer-hr {
    border-color: var(--nd-border);
    margin: 0;
}

.nd-legal-text {
    font-size: 12px;
    color: var(--nd-text-muted);
    line-height: 1.6;
    margin-bottom: 4px;
}

.nd-age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #f87171;
    color: #f87171;
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991.98px) {
    .nd-section {
        padding: 26px 20px;
        margin: 20px 0;
    }

    .nd-content-review {
        padding: 26px 20px;
    }

    .nd-tournament-card {
        flex: 0 0 calc(100% - 0px);
    }

    .nd-tournaments-track {
        gap: 0;
    }
}

@media (max-width: 767.98px) {
    body.nd-body {
        padding-bottom: 70px;
    }

    .nd-hero-section {
        min-height: 380px;
    }

    .nd-hero-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .nd-reel {
        width: 76px;
        height: 76px;
        font-size: 36px;
    }

    .nd-author-card {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

@media (max-width: 575.98px) {
    .nd-hdr-inner {
        gap: 6px;
    }

    .btn.nd-btn-login, .btn.nd-btn-signup {
        font-size: 12px !important;
        padding: 7px 11px !important;
    }

    .nd-section {
        padding: 18px 14px;
    }

    .nd-content-review {
        padding: 18px 14px;
    }
}

.nd-info-table {
    background: transparent !important;
}

.nd-info-table td,
.nd-info-table tr {
    background: transparent !important;
}

.table.nd-info-table {
    background: transparent !important;
}

.table.nd-info-table > :not(caption) > * > * {
    background: transparent !important;
}

.nd-info-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.nd-info-table tbody tr:nth-child(even) {
    background: transparent;
}

.nd-tbl-val {
    color: #ffffff !important;
    font-weight: 500;
}

.nd-tbl-param {
    color: #b8c2ff !important;
}