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

:root {
    --clr-bg: #111111;
    --clr-header: #030303;
    --clr-primary: #500202;
    --clr-primary-hover: #6e0303;
    --clr-secondary: #030303;
    --clr-text: #e8e8e8;
    --clr-text-muted: #9a9a9a;
    --clr-border: #2a2a2a;
    --clr-card: #1a1a1a;
    --clr-card2: #161616;
    --clr-gold: #c9a84c;
    --clr-win: #2ecc71;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --transition: 0.22s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

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

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif
}

ul {
    list-style: none
}

.xk7q2 {
    display: none
}

.bv91r {
    visibility: hidden;
    position: absolute;
    pointer-events: none
}

.wp-caption {
    max-width: 100%
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute
}

.alignnone {
    margin: 5px 20px 20px 0
}

.wp-block-image figure {
    margin: 0
}

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

.xcontainer {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    border: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    line-height: 1.2;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .4)
}

.btn:active {
    transform: translateY(0)
}

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

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

.btn--secondary {
    background: var(--clr-secondary);
    color: #fff;
    border: 1px solid #333
}

.btn--secondary:hover {
    background: #111;
    border-color: #555
}

.btn--gold {
    background: linear-gradient(135deg, #c9a84c, #e8c86a);
    color: #111;
    font-weight: 700
}

.btn--gold:hover {
    background: linear-gradient(135deg, #b8973b, #d4b458)
}

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

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

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    max-width: 1240px;
    margin: 0 auto
}

.header-logo {
    flex-shrink: 0
}

.header-logo img {
    height: 44px;
    width: auto;
    object-fit: contain
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color var(--transition), background var(--transition)
}

.header-nav a:hover, .header-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--clr-text-muted);
    padding: 5px 10px;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border)
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-dot 2s infinite
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, .5)
    }
    50% {
        box-shadow: 0 0 0 4px rgba(46, 204, 113, 0)
    }
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition)
}

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

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-header);
    border-top: 1px solid #1e1e1e;
    padding: 12px 16px 20px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    flex-direction: column;
    gap: 4px
}

.mobile-nav.is-open {
    display: flex
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color var(--transition), background var(--transition)
}

.mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07)
}

.mobile-nav a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.mobile-nav-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border)
}

.mobile-nav-actions .btn {
    flex: 1;
    justify-content: center
}

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

.slides-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.slide {
    min-width: 100%;
    position: relative
}

.slide-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .78) 40%, rgba(0, 0, 0, .15))
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1240px;
    padding: 0 24px
}

.slide-tag {
    display: inline-block;
    background: var(--clr-primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px
}

.slide-title {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    max-width: 560px;
    text-wrap: balance;
    margin-bottom: 10px
}

.slide-sub {
    font-size: clamp(.85rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, .75);
    max-width: 480px;
    margin-bottom: 22px
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition)
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.25)
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 10
}

.slider-arrow:hover {
    background: var(--clr-primary)
}

.slider-arrow--prev {
    left: 16px
}

.slider-arrow--next {
    right: 16px
}

/* ===== SECTION GENERIC ===== */
.section {
    padding: 64px 0
}

.section-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-wrap: balance
}

.section-sub {
    color: var(--clr-text-muted);
    font-size: .9rem;
    margin-bottom: 36px;
    max-width: 600px
}

.section-title-wrap {
    margin-bottom: 36px
}

.section-divider {
    height: 3px;
    width: 48px;
    background: var(--clr-primary);
    border-radius: 2px;
    margin: 10px 0 0
}

/* ===== FEATURES TILES ===== */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.feature-tile {
    flex: 1 1 220px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition)
}

.feature-tile:hover {
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(80, 2, 2, .2)
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(80, 2, 2, .18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--clr-primary)
}

.feature-tile h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.feature-tile p {
    font-size: .82rem;
    color: var(--clr-text-muted);
    line-height: 1.55
}

/* ===== TABLES ===== */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md)
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
    min-width: 640px
}

.data-table th {
    background: #1e1e1e;
    color: var(--clr-text-muted);
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--clr-border);
    white-space: nowrap
}

.data-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    vertical-align: middle
}

.data-table tbody tr {
    transition: background var(--transition)
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, .04)
}

.data-table tbody tr:last-child td {
    border-bottom: none
}

.pm-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600
}

.pm-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.pm-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 600
}

.pm-badge--fast {
    background: rgba(46, 204, 113, .15);
    color: #2ecc71
}

.pm-badge--std {
    background: rgba(201, 168, 76, .15);
    color: var(--clr-gold)
}

/* ===== WINNERS ===== */
.winners-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: border-color var(--transition)
}

.winner-item:hover {
    border-color: rgba(201, 168, 76, .4)
}

.winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    flex-shrink: 0
}

.winner-rank.gold {
    background: var(--clr-gold);
    color: #111
}

.winner-rank.silver {
    background: #9b9b9b;
    color: #111
}

.winner-rank.bronze {
    background: #cd7f32;
    color: #fff
}

.winner-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.winner-name {
    flex: 1;
    font-weight: 600;
    font-size: .88rem
}

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

.winner-amount {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-align: right;
    flex-shrink: 0
}

/* ===== APP SECTION ===== */
.app-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap
}

.app-info {
    flex: 1 1 340px
}

.app-download-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    transition: border-color var(--transition), background var(--transition)
}

.dl-btn:hover {
    border-color: var(--clr-primary);
    background: #1e1e1e
}

.dl-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #fff
}

.dl-btn-text {
    display: flex;
    flex-direction: column
}

.dl-btn-text span:first-child {
    font-size: .7rem;
    color: var(--clr-text-muted)
}

.dl-btn-text strong {
    font-size: .9rem;
    font-weight: 700;
    color: #fff
}

/* ===== SLOT MINI GAME ===== */
.slot-machine {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    max-width: 520px;
    margin: 0 auto
}

.slot-machine h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff
}

.slot-machine p {
    font-size: .85rem;
    color: var(--clr-text-muted);
    margin-bottom: 24px
}

.reels-wrap {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    background: #0e0e0e;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 16px;
    overflow: hidden
}

.reel {
    width: 80px;
    height: 88px;
    background: var(--clr-card2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    transition: transform var(--transition);
    overflow: hidden;
    position: relative
}

.reel.spinning {
    animation: reel-spin .12s linear infinite
}

@keyframes reel-spin {
    0% {
        transform: translateY(-4px)
    }
    50% {
        transform: translateY(4px)
    }
    100% {
        transform: translateY(-4px)
    }
}

.slot-win-msg {
    display: none;
    background: rgba(46, 204, 113, .1);
    border: 1px solid rgba(46, 204, 113, .3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
    color: var(--clr-win)
}

.slot-win-msg h3 {
    font-size: 1.1rem;
    margin-bottom: 4px
}

.slot-win-msg p {
    font-size: .85rem;
    color: rgba(46, 204, 113, .8)
}

.slot-lose-msg {
    display: none;
    background: rgba(255, 100, 100, .08);
    border: 1px solid rgba(255, 100, 100, .2);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-bottom: 16px;
    color: #ff7675;
    font-size: .85rem
}

.spin-btn {
    min-width: 180px
}

/* ===== CONTENT REVIEW ===== */
.review-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md)
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #500202, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-weight: 700;
    font-size: .95rem;
    color: #fff
}

.author-bio {
    font-size: .78rem;
    color: var(--clr-text-muted);
    margin-top: 2px
}

.author-link {
    font-size: .78rem;
    color: var(--clr-primary);
    text-decoration: none
}

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

.content-block {
    line-height: 1.75
}

.content-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--clr-border)
}

.content-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 22px 0 10px
}

.content-block h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--clr-gold);
    margin: 18px 0 8px
}

.content-block p {
    font-size: .92rem;
    color: var(--clr-text);
    margin-bottom: 14px
}

.content-block ul, .content-block ol {
    padding-left: 20px;
    margin-bottom: 14px
}

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

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

.content-block ul li, .content-block ol li {
    font-size: .92rem;
    color: var(--clr-text);
    margin-bottom: 5px
}

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

.content-block a:hover {
    color: var(--clr-primary-hover)
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-size: .85rem
}

.content-block table th {
    background: #1e1e1e;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted)
}

.content-block table td {
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    color: var(--clr-text)
}

.content-block blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 10px 16px;
    background: rgba(80, 2, 2, .1);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 14px;
    font-style: italic;
    color: var(--clr-text-muted)
}

.content-block img {
    border-radius: var(--radius-sm);
    margin: 12px 0
}

.content-block strong {
    color: #fff;
    font-weight: 600
}

.content-block em {
    color: var(--clr-gold)
}

.content-block hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 24px 0
}

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

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

.faq-item.open {
    border-color: rgba(80, 2, 2, .5)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: #fff
}

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--clr-text-muted);
    flex-shrink: 0;
    transition: transform var(--transition)
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--clr-primary)
}

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

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--clr-header);
    border-top: 1px solid #1e1e1e;
    margin-top: auto
}

.footer-top {
    padding: 48px 0 32px
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.footer-col {
    flex: 1 1 200px
}

.footer-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--clr-text-muted);
    margin-bottom: 12px
}

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

.footer-links a {
    font-size: .83rem;
    color: var(--clr-text-muted);
    transition: color var(--transition)
}

.footer-links a:hover {
    color: #fff
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition)
}

.social-btn:hover {
    background: rgba(255, 255, 255, .14)
}

.social-btn svg {
    width: 18px;
    height: 18px;
    color: var(--clr-text-muted)
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 10px
}

.footer-country svg {
    width: 20px;
    height: 16px;
    border-radius: 2px
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.footer-logo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #1e1e1e
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between
}

.footer-legal {
    font-size: .72rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 780px
}

.footer-copyright {
    font-size: .75rem;
    color: var(--clr-text-muted);
    white-space: nowrap
}

/* ===== WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: linear-gradient(90deg, #500202 0%, #3a0101 100%);
    border-top: 2px solid #700404;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 18px rgba(80, 2, 2, .4)
}

.promo-widget-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.promo-widget-icon {
    font-size: 1.4rem;
    line-height: 1
}

.promo-widget-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.promo-widget-text span {
    font-size: .75rem;
    color: rgba(255, 255, 255, .75)
}

.promo-widget-code {
    display: flex;
    align-items: center;
    gap: 8px
}

.promo-code-label {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7)
}

.promo-code-val {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px dashed rgba(255, 255, 255, .3);
    border-radius: 4px;
    padding: 3px 10px;
    letter-spacing: .06em
}

.promo-widget-close {
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition)
}

.promo-widget-close:hover {
    background: rgba(255, 255, 255, .22)
}

.promo-widget-close svg {
    width: 14px;
    height: 14px
}

body.widget-open {
    padding-bottom: 60px
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 12px 0;
    font-size: .78rem;
    color: var(--clr-text-muted)
}

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

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb span {
    color: var(--clr-text-muted);
    margin: 0 6px
}

/* ===== INFO PAGE ===== */
.info-page {
    padding: 48px 0 64px
}

.info-page h1 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.info-page .meta {
    font-size: .8rem;
    color: var(--clr-text-muted);
    margin-bottom: 32px
}

/* ===== MISC UNUSED FOR FINGERPRINT ===== */
.wp-block-paragraph {
    display: block
}

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

.has-small-font-size {
    font-size: .875rem
}

.is-root-container > .wp-block {
    margin-block-start: var(--wp--style--block-gap, 1.75rem);
    margin-block-end: var(--wp--style--block-gap, 1.75rem)
}

.wp-block-cover__background.has-background-dim-100 {
    opacity: 1
}

.entry-content {
    clear: both
}

.site-branding .site-title {
    display: none
}

.elementor-section-wrap {
    position: relative
}

.elementor-widget-container {
    -webkit-transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-transform .3s;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, -webkit-transform .3s, transform .3s
}

[data-elementor-type="wp-post"] {
    overflow: hidden
}

.wp-site-blocks > * + * {
    margin-block-start: var(--wp--style--block-gap)
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-nav {
        display: none
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap
    }

    .burger {
        display: flex
    }

    .online-badge {
        display: none
    }

    .header-actions {
        gap: 6px
    }

    .header-actions .btn {
        padding: 8px 12px;
        font-size: .78rem
    }

    .slide-img {
        height: 320px
    }

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

    .slide-sub {
        font-size: .82rem
    }

    .app-inner {
        flex-direction: column
    }

    .footer-grid {
        flex-direction: column;
        gap: 28px
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .promo-widget {
        flex-wrap: wrap
    }

    .section {
        padding: 44px 0
    }

    .reels-wrap {
        gap: 6px
    }

    .reel {
        width: 66px;
        height: 76px;
        font-size: 2.2rem
    }
}

@media (max-width: 480px) {
    .slide-img {
        height: 260px
    }

    .slide-content {
        padding: 0 14px
    }

    .slide-title {
        font-size: 1.15rem;
        max-width: 280px
    }

    .slide-sub {
        display: none
    }

    .features-grid {
        flex-direction: column
    }

    .feature-tile {
        flex: 1 1 auto
    }

    .winners-list {
        gap: 6px
    }

    .dl-btn {
        padding: 10px 14px
    }

    .promo-widget-code {
        display: none
    }
}

@media (max-width: 768px) {
    #app {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    #app .xcontainer {
        width: 100%;
        max-width: 100%;
        padding: 0 14px;
        overflow: hidden;
    }

    #app .section-title-wrap,
    #app .app-inner,
    #app .app-info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    #app .section-title {
        font-size: 24px;
        line-height: 1.25;
    }

    #app .section-sub {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    #app .table-scroll {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--clr-border);
        border-radius: 12px;
    }

    #app .data-table {
        width: 100%;
        min-width: 520px;
        font-size: 13px;
    }

    #app .data-table th,
    #app .data-table td {
        padding: 10px 12px;
        white-space: nowrap;
    }

    #app .app-download-btns {
        display: grid;
        grid-template-columns:1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-top: 18px;
    }

    #app .dl-btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 12px 14px;
    }

    #app .dl-btn svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    #app .dl-btn-text {
        min-width: 0;
    }

    #app .dl-btn-text span,
    #app .dl-btn-text strong {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 480px) {
    #app .xcontainer {
        padding: 0 12px;
    }

    #app .section-title {
        font-size: 22px;
    }

    #app .data-table {
        min-width: 460px;
        font-size: 12px;
    }

    #app .data-table th,
    #app .data-table td {
        padding: 9px 10px;
    }
}

.vdcds {
    width: 100%;
    max-width: 100%;
    padding: 32px;
    margin: 32px auto;
    background: #161616;
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

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

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

.vdcds h2,
.vdcds h3,
.vdcds h4 {
    color: #fff;
    line-height: 1.3;
    margin: 28px 0 14px;
}

.vdcds p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: #e6e6e6;
}

.vdcds ul,
.vdcds ol {
    margin: 18px 0;
    padding-left: 22px;
}

.vdcds li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.vdcds a {
    color: #d9b64c;
    text-decoration: underline;
    overflow-wrap: anywhere;
}

.vdcds blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #d9b64c;
    background: #1d1d1d;
    border-radius: 12px;
}

.vdcds img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.vdcds table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.vdcds th,
.vdcds td {
    padding: 12px 14px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.vdcds th {
    background: #202020;
}

.vdcds table {
    display: table;
}

.vdcds {
    scrollbar-width: thin;
}

@media (max-width: 768px) {

    .vdcds {
        padding: 18px;
        margin: 20px 0;
        border-radius: 14px;
    }

    .vdcds h2 {
        font-size: 24px;
    }

    .vdcds h3 {
        font-size: 20px;
    }

    .vdcds p,
    .vdcds li {
        font-size: 15px;
    }

    .vdcds table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vdcds th,
    .vdcds td {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 12px;
    }

    .vdcds blockquote {
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {

    .vdcds {
        padding: 14px;
        border-radius: 12px;
    }

    .vdcds h2 {
        font-size: 22px;
    }

    .vdcds h3 {
        font-size: 18px;
    }

    .vdcds p,
    .vdcds li {
        font-size: 14px;
        line-height: 1.7;
    }

    .vdcds ul,
    .vdcds ol {
        padding-left: 18px;
    }

    .vdcds table {
        min-width: 520px;
    }
}