/* Dragon Money — main stylesheet ver=1.7 */
/* ============================================================
   ROOT & TOKENS
============================================================ */
:root {
    --clr-bg: #0A0A0A;
    --clr-surface: #111111;
    --clr-surface2: #1A1A1A;
    --clr-accent: #FF9933;
    --clr-accent-d: #e07d18;
    --clr-accent-g: #FFB347;
    --clr-text: #EEEEEE;
    --clr-text-muted: #AAAAAA;
    --clr-border: #2A2A2A;
    --clr-green: #2ECC71;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --trans: .25s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--clr-accent-g);
}

ul {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY — bare tags inside .dm-content
============================================================ */
.dm-content h1, .dm-content h2, .dm-content h3,
.dm-content h4, .dm-content h5, .dm-content h6 {
    color: var(--clr-accent);
    margin: 1.4em 0 .6em;
    line-height: 1.3;
}

.dm-content h1 {
    font-size: 1.9rem;
}

.dm-content h2 {
    font-size: 1.5rem;
}

.dm-content h3 {
    font-size: 1.25rem;
}

.dm-content p {
    margin-bottom: 1rem;
}

.dm-content ul, .dm-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.dm-content ul li {
    list-style: disc;
    margin-bottom: .3rem;
}

.dm-content ol li {
    list-style: decimal;
    margin-bottom: .3rem;
}

.dm-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem auto;
    font-size: .9rem;
    background: var(--clr-surface);
}

.dm-content table th, .dm-content table td {
    border: 1px solid var(--clr-border);
    padding: 10px 14px;
    text-align: left;
}

.dm-content table th {
    background: var(--clr-surface2);
    color: var(--clr-accent);
}

.dm-content blockquote {
    border-left: 3px solid var(--clr-accent);
    padding: .6rem 1rem;
    background: var(--clr-surface);
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.dm-content a {
    color: var(--clr-accent);
}

.dm-content strong {
    color: var(--clr-accent-g);
}

/* ============================================================
   SCROLLBAR
============================================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-surface2);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-accent);
    border-radius: 3px;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.sec {
    padding: 60px 0;
}

.sec-sm {
    padding: 40px 0;
}

.sec-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.sec-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 60%;
    min-width: 60px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin-top: 6px;
}

.sec-subtitle {
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    font-size: .95rem;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--clr-accent);
}

/* unused stubs for unikalization */
.x7k2m {
    display: none;
}

.q9w3r {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.z1p4v {
    position: absolute;
    left: -9999px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-dm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all var(--trans);
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-accent {
    background: var(--clr-accent);
    color: #111 !important;
}

.btn-accent:hover {
    background: var(--clr-accent-g);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, .4);
}

.btn-outline {
    background: transparent;
    color: var(--clr-accent) !important;
    border: 1.5px solid var(--clr-accent);
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #111 !important;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 7px 14px;
    font-size: .8rem;
}

/* ============================================================
   HEADER
============================================================ */
#dm-header {
    background: var(--clr-surface2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.header-logo img {
    height: 46px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    color: var(--clr-text-muted);
    font-size: .88rem;
    font-weight: 600;
    transition: color var(--trans);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.header-nav a:hover {
    color: var(--clr-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: .75rem;
    color: var(--clr-green);
}

.online-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    display: block;
    transition: all var(--trans);
    border-radius: 2px;
}

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

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

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

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--clr-surface2);
    z-index: 999;
    padding: 80px 30px 40px;
    flex-direction: column;
    gap: 16px;
    transition: right .3s ease;
    overflow-y: auto;
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav-overlay.is-open {
    display: block;
}

.mobile-nav a {
    color: var(--clr-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-slides {
    display: flex;
    transition: transform .6s ease;
}

.hero-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .3) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 560px;
    animation: fadeInLeft .7s ease both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-tag {
    display: inline-block;
    background: var(--clr-accent);
    color: #111;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.hero-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    margin-bottom: 24px;
}

.hero-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    padding: 0;
}

.hero-dot.active {
    background: var(--clr-accent);
    width: 28px;
    border-radius: 5px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 153, 51, .2);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--trans);
    font-size: 1.1rem;
}

.hero-arrow:hover {
    background: var(--clr-accent);
    color: #111;
}

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

/* ============================================================
   SECTION WRAPPERS
============================================================ */
.dm-section {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    padding: 36px 32px;
    margin: 0 16px 32px;
    box-shadow: var(--shadow);
}

/* ============================================================
   INFO TABLE (казино)
============================================================ */
.info-table-wrap {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.info-table tr {
    border-bottom: 1px solid var(--clr-border);
}

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

.info-table tr:nth-child(even) td:first-child {
    background: rgba(255, 153, 51, .05);
}

.info-table td {
    padding: 12px 16px;
    vertical-align: middle;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.info-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    width: 42%;
    background: rgba(255, 255, 255, .02);
}

.info-table td:last-child {
    color: var(--clr-text);
    font-weight: 500;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, .15);
    color: var(--clr-green);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

.badge-orange {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 153, 51, .15);
    color: var(--clr-accent);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

/* ============================================================
   TOURNAMENTS
============================================================ */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tournament-card {
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, .2);
}

.tournament-card-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #222 100%);
    padding: 20px;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
}

.tournament-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 153, 51, .08);
    border: 1px solid rgba(255, 153, 51, .15);
}

.tournament-badge {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--clr-accent);
    margin-bottom: 8px;
    display: block;
}

.tournament-card-header h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
}

.tournament-prize {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-accent);
    letter-spacing: -.02em;
}

.tournament-card-body {
    padding: 18px 20px;
}

.tournament-desc {
    color: var(--clr-text-muted);
    font-size: .88rem;
    margin-bottom: 14px;
    line-height: 1.55;
}

.tournament-timer {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.timer-unit {
    background: rgba(255, 153, 51, .1);
    border: 1px solid rgba(255, 153, 51, .2);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    min-width: 52px;
}

.timer-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: .65rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 3px;
}

/* ============================================================
   APP BLOCK
============================================================ */
.app-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.app-table tr {
    border-bottom: 1px solid var(--clr-border);
}

.app-table td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
}

.app-table td:first-child {
    color: var(--clr-text-muted);
    font-weight: 600;
    background: rgba(255, 255, 255, .02);
}

.app-download-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: all var(--trans);
    cursor: pointer;
    text-decoration: none !important;
}

.app-download-btn:hover {
    border-color: var(--clr-accent);
    background: rgba(255, 153, 51, .08);
    transform: translateX(4px);
}

.app-download-btn svg {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.app-download-btn .adb-texts {
    display: flex;
    flex-direction: column;
}

.app-download-btn .adb-sub {
    font-size: .7rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.app-download-btn .adb-main {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-text);
}

/* ============================================================
   BONUSES
============================================================ */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    position: relative;
    transition: transform var(--trans), box-shadow var(--trans);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 153, 51, .2);
}

.bonus-card-ribbon {
    position: absolute;
    top: 14px;
    right: -28px;
    background: var(--clr-accent);
    color: #111;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 36px;
    transform: rotate(30deg);
    letter-spacing: .06em;
}

.bonus-card-img {
    height: 140px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 60%, #1f1a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.bonus-card-body {
    padding: 20px;
}

.bonus-card-body h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
}

.bonus-amount {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.bonus-tag {
    display: inline-block;
    background: rgba(255, 153, 51, .12);
    color: var(--clr-accent);
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px 2px 0 0;
}

/* ============================================================
   SLOT MINI GAME
============================================================ */
.slot-machine {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 24px 0;
}

.reel {
    width: 100px;
    height: 110px;
    background: var(--clr-surface2);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .4);
}

.reel.spinning {
    animation: reelSpin .15s linear infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(-8px)
    }
    75% {
        transform: translateY(8px)
    }
    100% {
        transform: translateY(0)
    }
}

.reel-highlight {
    border-color: var(--clr-accent);
    box-shadow: 0 0 20px rgba(255, 153, 51, .5);
}

.slot-win-msg {
    display: none;
    background: rgba(255, 153, 51, .1);
    border: 1px solid var(--clr-accent);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 16px;
    animation: fadeIn .5s ease both;
}

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

.slot-win-msg h4 {
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.slot-win-msg p {
    color: var(--clr-text-muted);
    font-size: .9rem;
    margin-bottom: 14px;
}

.slot-lose-msg {
    display: none;
    color: var(--clr-text-muted);
    margin-top: 12px;
    font-size: .9rem;
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.review-card {
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 22px;
    position: relative;
    transition: box-shadow var(--trans);
}

.review-card:hover {
    box-shadow: 0 6px 20px rgba(255, 153, 51, .15);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 3rem;
    color: rgba(255, 153, 51, .15);
    line-height: 1;
    font-family: Georgia, serif;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.review-meta h4 {
    font-size: .95rem;
    color: #fff;
    margin-bottom: 2px;
}

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

.stars {
    color: var(--clr-accent);
    font-size: .9rem;
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-text {
    font-size: .87rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Review form */
.review-form {
    background: var(--clr-surface2);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    padding: 28px;
}

.review-form h3 {
    font-size: 1.1rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: .82rem;
    color: var(--clr-text-muted);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    padding: 10px 14px;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color var(--trans);
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, .15);
}

.form-success {
    display: none;
    background: rgba(46, 204, 113, .1);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: var(--radius-md);
    padding: 16px;
    color: var(--clr-green);
    font-size: .9rem;
    text-align: center;
}

/* ============================================================
   FOOTER
============================================================ */
#dm-footer {
    background: var(--clr-surface2);
    border-top: 1px solid var(--clr-border);
    padding: 50px 0 24px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 44px;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.footer-col h5 {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--clr-text-muted);
    font-size: .85rem;
    transition: color var(--trans);
}

.footer-col ul li a:hover {
    color: var(--clr-accent);
}

.footer-logos {
    padding: 20px;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 20px;
}

.footer-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-logos-row:last-child {
    margin-bottom: 0;
}

.logo-chip {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .78rem;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding: 0 20px;
}

.footer-legal {
    font-size: .75rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

.footer-legal a {
    color: var(--clr-text-muted);
    text-decoration: underline;
}

/* ============================================================
   BOTTOM WIDGET
============================================================ */
#dm-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #1A0A00 0%, #1A1A1A 100%);
    border-top: 2px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 -4px 20px rgba(255, 153, 51, .2);
}

.widget-text {
    font-size: .88rem;
    color: var(--clr-text);
}

.widget-text strong {
    color: var(--clr-accent);
}

.widget-close {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    transition: color var(--trans);
    flex-shrink: 0;
}

.widget-close:hover {
    color: var(--clr-text);
}

body.widget-closed #dm-widget {
    display: none;
}

body {
    padding-bottom: 62px;
}

body.widget-closed {
    padding-bottom: 0;
}

/* ============================================================
   SLIDER (mobile bonuses/tournaments)
============================================================ */
.dm-swiper {
    overflow: hidden;
}

.dm-swiper-wrap {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
}

.dm-swiper-wrap > * {
    flex-shrink: 0;
}

.swiper-nav {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    border: none;
    cursor: pointer;
    transition: all var(--trans);
    padding: 0;
}

.swiper-dot.active {
    background: var(--clr-accent);
    width: 22px;
    border-radius: 4px;
}

/* ============================================================
   AUTHOR BOX
============================================================ */
.author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 153, 51, .05);
    border: 1px solid rgba(255, 153, 51, .2);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 28px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--clr-accent);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: .92rem;
    color: #fff;
    margin-bottom: 3px;
}

.author-info p {
    font-size: .78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.author-info a {
    color: var(--clr-accent);
    font-size: .78rem;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.dm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--clr-text-muted);
    padding: 12px 0 0;
}

.dm-breadcrumb a {
    color: var(--clr-text-muted);
}

.dm-breadcrumb a:hover {
    color: var(--clr-accent);
}

.dm-breadcrumb span {
    color: var(--clr-text-muted);
}

.dm-breadcrumb .current {
    color: var(--clr-accent);
}

/* ============================================================
   FAQ
============================================================ */
.faq-item {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-text);
    font-size: .95rem;
    font-weight: 600;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: color var(--trans);
}

.faq-question:hover {
    color: var(--clr-accent);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--trans);
    flex-shrink: 0;
    color: var(--clr-accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    color: var(--clr-text-muted);
    font-size: .88rem;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ============================================================
   WP / CMS FAKE ELEMENTS (fingerprint obfuscation)
============================================================ */
.wp-block-group {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-widget-container {
    display: block;
}

.wp-pagenavi {
    display: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .tournaments-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .footer-inner .footer-col:first-child {
        grid-column: 1/-1;
    }

    .app-block {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-slide {
        height: 380px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 1.35rem;
    }

    .dm-section {
        padding: 24px 16px;
        margin: 0 8px 20px;
    }

    .sec {
        padding: 36px 0;
    }

    .tournaments-grid {
        grid-template-columns: 1fr;
    }

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

    .swiper-nav {
        display: flex;
    }

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

    #dm-widget {
        flex-wrap: wrap;
        gap: 8px;
    }

    .slot-reels .reel {
        width: 80px;
        height: 90px;
        font-size: 2.4rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .hero-slide {
        height: 300px;
    }

    .header-logo img {
        height: 36px;
    }

    .sec-title {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .btn-dm {
        padding: 9px 16px;
        font-size: .85rem;
    }
}

.vrstsv {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 72px;
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    color: #e9e9e9;
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.72;
}

.vrstsv * {
    box-sizing: border-box;
}

.vrstsv h1,
.vrstsv h2,
.vrstsv h3,
.vrstsv h4,
.vrstsv h5,
.vrstsv h6 {
    margin: 0 0 18px;
    line-height: 1.25;
    color: #ffffff;
}

.vrstsv h1 {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 800;
    margin-bottom: 24px;
}

.vrstsv h2 {
    font-size: clamp(1.38rem, 2.8vw, 2rem);
    font-weight: 800;
    margin-top: 40px;
    padding-left: 16px;
    border-left: 4px solid #ff9933;
}

.vrstsv h3 {
    font-size: clamp(1.08rem, 2vw, 1.38rem);
    font-weight: 700;
    margin-top: 28px;
    color: #ffb347;
}

.vrstsv p {
    margin: 0 0 18px;
    color: #d8d8d8;
    font-size: 1rem;
}

.vrstsv a {
    color: #ff9933;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    word-break: break-word;
}

.vrstsv a:hover {
    color: #ffb347;
}

.vrstsv strong {
    color: #ffffff;
}

.vrstsv ul,
.vrstsv ol {
    margin: 0 0 24px;
    padding-left: 0;
}

.vrstsv ul li,
.vrstsv ol li {
    color: #dadada;
    margin-bottom: 12px;
}

.vrstsv ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.vrstsv ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ffb347 100%);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.12);
}

.vrstsv ol {
    counter-reset: vrstsv-counter;
}

.vrstsv ol li {
    list-style: none;
    position: relative;
    padding-left: 46px;
    counter-increment: vrstsv-counter;
}

.vrstsv ol li::before {
    content: counter(vrstsv-counter);
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9933 0%, #ffb347 100%);
    color: #111111;
    font-size: 0.86rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vrstsv li p {
    margin-bottom: 0;
}

.vrstsv table,
.vrstsv .table {
    width: 100%;
    margin: 24px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    background: #181818 !important;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
}

.vrstsv thead,
.vrstsv thead tr,
.vrstsv .table thead,
.vrstsv .table thead tr {
    background: linear-gradient(135deg, #ff9933 0%, #ffb347 100%) !important;
}

.vrstsv th,
.vrstsv .table th {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.vrstsv td,
.vrstsv .table td {
    padding: 15px 18px;
    font-size: 0.96rem;
    color: #d8d8d8;
    vertical-align: top;
    border: 0 !important;
    border-top: 1px solid #2a2a2a !important;
    background: transparent !important;
    box-shadow: none !important;
}

.vrstsv tbody tr,
.vrstsv .table tbody tr {
    background: transparent !important;
}

.vrstsv tbody tr:nth-child(even) td,
.vrstsv table tr:nth-child(even) td,
.vrstsv .table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.02) !important;
}

.vrstsv blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(255, 153, 51, 0.08);
    border-left: 4px solid #ff9933;
    border-radius: 0 14px 14px 0;
    color: #e3e3e3;
}

.vrstsv hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

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

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

@media (max-width: 991px) {
    .vrstsv {
        padding: 32px 20px 60px;
        border-radius: 20px;
    }

    .vrstsv h2 {
        margin-top: 34px;
    }

    .vrstsv table,
    .vrstsv .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .vrstsv {
        padding: 24px 16px 48px;
        border-radius: 18px;
        line-height: 1.64;
    }

    .vrstsv h1 {
        margin-bottom: 20px;
    }

    .vrstsv h2 {
        margin-top: 28px;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .vrstsv p,
    .vrstsv li,
    .vrstsv td,
    .vrstsv th {
        font-size: 0.95rem;
    }

    .vrstsv th,
    .vrstsv td {
        padding: 13px 14px;
    }

    .vrstsv ol li {
        padding-left: 40px;
    }

    .vrstsv ol li::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .vrstsv {
        padding: 20px 12px 40px;
        border-radius: 16px;
    }

    .vrstsv h1 {
        font-size: 1.72rem;
    }

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

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

    .vrstsv p {
        font-size: 0.93rem;
        margin-bottom: 16px;
    }

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

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

    .vrstsv table,
    .vrstsv .table {
        border-radius: 14px;
    }

    .vrstsv th,
    .vrstsv td {
        padding: 12px;
        font-size: 0.9rem;
    }
}