@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #07041C;
    --bg2: #0d0a2e;
    --bg3: #110d38;
    --accent: #A0F8B5;
    --accent2: #7de8a0;
    --accent-dark: #2a6640;
    --text: #e2f0e6;
    --text-muted: #8fa898;
    --border: rgba(160, 248, 181, 0.15);
    --border2: rgba(160, 248, 181, 0.08);
    --card: #0c0926;
    --card2: #100e32;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --transition: 0.25s ease;
    --font: 'Kanit', sans-serif;
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent2);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
}

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

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: #07041C;
}

.btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 248, 181, 0.3);
    color: #07041C;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(160, 248, 181, 0.08);
    transform: translateY(-2px);
}

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

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

/* ---- HEADER ---- */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

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

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

.logo-wrap img {
    height: 44px;
    width: auto;
    border-radius: 6px;
}

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

.header-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header-nav a:hover, .header-nav a.active {
    color: var(--accent);
    background: rgba(160, 248, 181, 0.07);
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(160, 248, 181, 0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(160, 248, 181, 0);
    }
}

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

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

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

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

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

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

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

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
    background: rgba(160, 248, 181, 0.07);
}

.mobile-menu .mobile-btns {
    display: flex;
    gap: 10px;
    padding: 8px 12px 0;
}

.mobile-menu .mobile-btns .btn {
    flex: 1;
}

/* ---- HERO ---- */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/21bit-banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 4, 28, 0.95) 0%, rgba(7, 4, 28, 0.6) 60%, rgba(7, 4, 28, 0.8) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(160, 248, 181, 0.1);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 480px;
}

.promo-box {
    background: rgba(160, 248, 181, 0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    max-width: 440px;
}

.promo-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 3px;
    flex: 1;
}

.copy-btn {
    background: rgba(160, 248, 181, 0.1);
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--accent);
    color: var(--bg);
}

.bonus-text {
    font-size: 0.88rem;
    color: var(--text);
    margin-top: 10px;
}

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

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(160, 248, 181, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    flex-shrink: 0;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.hero-stat .val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-sep {
    height: 1px;
    background: var(--border);
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs-wrap {
    padding: 14px 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border2);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.82rem;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--accent);
    font-weight: 500;
}

/* ---- SECTIONS ---- */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title svg {
    color: var(--accent);
}

.section-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.section-head {
    margin-bottom: 28px;
}

/* ---- INFO TABLE ---- */
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

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

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

.info-table tr:hover {
    background: rgba(160, 248, 181, 0.03);
}

.info-table td {
    padding: 13px 18px;
    font-size: 0.9rem;
    text-align: left;
    vertical-align: middle;
}

.info-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 42%;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.td-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---- MIRRORS TABLE ---- */
.mirrors-block {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 0;
}

.mirror-timestamp {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mirror-timestamp span {
    color: var(--accent);
    font-weight: 600;
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
}

.mirror-table th {
    text-align: left;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.mirror-table td {
    padding: 12px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border2);
}

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

.mirror-link {
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(160, 248, 181, 0.1);
    color: var(--accent);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ---- TOURNAMENTS ---- */
.tournaments-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.tournaments-grid::-webkit-scrollbar {
    height: 4px;
}

.tournaments-grid::-webkit-scrollbar-track {
    background: transparent;
}

.tournaments-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.tournament-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    min-width: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
}

.tournament-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.t-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(160, 248, 181, 0.1);
    color: var(--accent);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.t-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.t-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.t-prize {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.t-prize-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.t-timer {
    display: flex;
    gap: 8px;
    align-items: center;
}

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

.timer-val {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    min-width: 36px;
    display: block;
    text-align: center;
}

.timer-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2px;
}

.timer-sep {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
}

/* ---- APP BLOCK ---- */
.app-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    overflow: hidden;
    position: relative;
}

.app-block::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 248, 181, 0.08) 0%, transparent 70%);
}

.app-info {
    flex: 1;
}

.app-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.app-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
}

.app-table td {
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border2);
}

.app-table td:first-child {
    color: var(--text-muted);
    width: 50%;
}

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

.app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    transition: all var(--transition);
    color: var(--text);
}

.store-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.store-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

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

.store-btn-text small {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.store-btn-text span {
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---- LUCKY WHEEL ---- */
.wheel-section-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.wheel-wrap {
    flex-shrink: 0;
    position: relative;
}

#wheelCanvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(160, 248, 181, 0.15);
}

.wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.wheel-info {
    flex: 1;
    min-width: 240px;
}

.wheel-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.wheel-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

#spinBtn {
    background: var(--accent);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    border: none;
    transition: all var(--transition);
    margin-bottom: 20px;
}

#spinBtn:hover:not(:disabled) {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 248, 181, 0.35);
}

#spinBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-result {
    background: rgba(160, 248, 181, 0.08);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result.win {
    border-color: var(--accent);
}

.wheel-result.loss {
    border-color: rgba(255, 80, 80, 0.3);
    background: rgba(255, 80, 80, 0.05);
}

.wheel-result h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.wheel-result p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.wheel-result .btn {
    display: inline-flex;
}

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

/* ---- REVIEW CONTENT ---- */
.review-section .content-body {
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-section .content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 24px 0 12px;
}

.review-section .content-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent);
    margin: 20px 0 10px;
}

.review-section .content-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 16px 0 8px;
}

.review-section .content-body p {
    margin-bottom: 14px;
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--text);
}

.review-section .content-body ul, .review-section .content-body ol {
    margin: 12px 0 16px 20px;
}

.review-section .content-body li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text);
}

.review-section .content-body ul li {
    list-style: disc;
}

.review-section .content-body ol li {
    list-style: decimal;
}

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

.review-section .content-body strong, .review-section .content-body b {
    color: #fff;
    font-weight: 600;
}

.review-section .content-body em {
    color: var(--text-muted);
    font-style: italic;
}

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

.review-section .content-body table th {
    background: var(--bg3);
    color: var(--accent);
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
    font-size: 0.85rem;
}

.review-section .content-body table td {
    padding: 10px 14px;
    border: 1px solid var(--border2);
    font-size: 0.85rem;
    vertical-align: top;
}

.review-section .content-body table tr:nth-child(even) td {
    background: rgba(160, 248, 181, 0.02);
}

.review-section .content-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 18px;
    background: rgba(160, 248, 181, 0.05);
    margin: 16px 0;
    color: var(--text-muted);
    font-style: italic;
}

.review-section .content-body img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 12px 0;
}

.review-section .content-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

/* Author box */
.author-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-top: 28px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    flex-shrink: 0;
    background: var(--card2);
}

.author-info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.author-links {
    display: flex;
    gap: 10px;
}

.author-links a {
    font-size: 0.8rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

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

.faq-item.open {
    border-color: rgba(160, 248, 181, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text);
    font-family: var(--font);
}

.faq-question span {
    font-size: 0.95rem;
    font-weight: 600;
    flex: 1;
    color: #fff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

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

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 18px;
}

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

/* ---- FOOTER ---- */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 0;
    margin-top: auto;
}

.footer-top {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.footer-brand {
    flex: 1.5;
    min-width: 220px;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
    border-radius: 6px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.flag-emoji {
    font-size: 1.4rem;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

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

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

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

.footer-logos {
    margin-bottom: 28px;
}

.footer-logos h4 {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
}

.logo-chip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: all var(--transition);
}

.logo-chip:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.age-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.age-num {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 800;
}

/* ---- BOTTOM WIDGET ---- */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, #0d0a2e 0%, #07041C 100%);
    border-top: 1px solid var(--border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    animation: slideUp 0.8s 2s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.widget-text {
    flex: 1;
}

.widget-text .w-bonus {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
}

.widget-text .w-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.widget-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    transition: color var(--transition);
}

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

.widget-promo {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.widget-promo span {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
}

body.widget-on {
    padding-bottom: 68px;
}

/* ---- MISC UTILS ---- */
.box {
    border-radius: var(--radius);
}

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

.text-muted {
    color: var(--text-muted);
}

.fw7 {
    font-weight: 700;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mb-6 {
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 48px 0;
}

/* ---- FAKE/UNUSED UTILITY CLASSES (uniqualization) ---- */
.zx9k2m {
    display: none;
    visibility: hidden;
}

.b8qm1r {
    opacity: 0;
    pointer-events: none;
}

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

.kf2j9s, .pl3m8n, .qr5t1v {
    display: none;
}

.elementor-widget-container {
    line-height: inherit;
}

.wp-block-group {
    box-sizing: border-box;
}

.wp-caption-text {
    font-size: 0.75rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ---- INFO PAGES ---- */
.info-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 0;
}

.info-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.info-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin: 28px 0 12px;
}

.info-content p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 14px;
}

.info-content ul {
    margin: 12px 0 16px 20px;
}

.info-content li {
    font-size: 0.9rem;
    color: var(--text);
    list-style: disc;
    margin-bottom: 6px;
}

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-card {
        width: 100%;
        flex-direction: row;
    }

    .app-block {
        flex-direction: column;
    }
}

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

    .online-badge {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-inner {
        padding: 40px 0;
    }

    .hero-card {
        display: none;
    }

    .promo-box {
        max-width: 100%;
    }

    .section {
        padding: 40px 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wheel-section-inner {
        flex-direction: column;
        align-items: center;
    }

    .wheel-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .app-block {
        padding: 22px;
    }

    .info-content {
        padding: 32px 0;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }
}

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

    .hero-btns .btn {
        width: 100%;
    }

    .app-btns {
        flex-direction: column;
    }

    .store-btn {
        justify-content: center;
    }

    #spinBtn {
        width: 100%;
    }
}

.jshgs {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 32px;
    background: var(--card, #110d2e);
    border: 1px solid var(--border, rgba(160, 248, 181, .15));
    border-radius: 16px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.jshgs * {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.jshgs h1,
.jshgs h2,
.jshgs h3,
.jshgs h4,
.jshgs h5,
.jshgs h6 {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 18px;
}

.jshgs p {
    margin: 0 0 18px;
    line-height: 1.8;
}

.jshgs ul,
.jshgs ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.jshgs li {
    margin-bottom: 8px;
}

.jshgs img,
.jshgs svg,
.jshgs video,
.jshgs canvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.jshgs iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 12px;
}

.jshgs table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    border: 1px solid var(--border, rgba(160, 248, 181, .15));
    border-radius: 12px;
}

.jshgs th,
.jshgs td {
    padding: 12px 14px;
    border: 1px solid var(--border, rgba(160, 248, 181, .15));
    white-space: nowrap;
}

.jshgs blockquote {
    margin: 20px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--accent, #A0F8B5);
    background: rgba(160, 248, 181, .06);
    border-radius: 10px;
}

.jshgs pre {
    width: 100%;
    overflow: auto;
    padding: 18px;
    border-radius: 12px;
    background: #07041c;
}

.jshgs code {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.jshgs a {
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .jshgs {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .jshgs h1 {
        font-size: 30px;
    }

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

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

    .jshgs p,
    .jshgs li {
        font-size: 15px;
        line-height: 1.75;
    }

    .jshgs iframe {
        min-height: 220px;
    }

    .jshgs table {
        font-size: 14px;
    }

    .jshgs th,
    .jshgs td {
        padding: 10px 12px;
    }
}

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

    .jshgs h1 {
        font-size: 26px;
    }

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

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

    .jshgs p,
    .jshgs li {
        font-size: 14px;
    }

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

    .jshgs table {
        font-size: 13px;
    }

    .jshgs th,
    .jshgs td {
        padding: 8px 10px;
    }
}