@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700,900&display=swap');

:root {
    --c-bg: #15161a;
    --c-header: #16171b;
    --c-primary: #13ca90;
    --c-secondary: #3d18a4;
    --c-text: #e8eaf0;
    --c-text-muted: #8a8fa8;
    --c-border: rgba(255, 255, 255, 0.08);
    --c-card: #1c1d24;
    --c-card2: #1e2030;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: 0.22s cubic-bezier(.4, 0, .2, 1);
    --shadow-glow: 0 0 24px rgba(19, 202, 144, 0.18);
    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.36);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--c-bg);
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: #1ae8a8;
}

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

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

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

.container--full {
    max-width: 100%;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.07);
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background: var(--c-primary);
    color: #0a2118;
}

.btn--primary:hover {
    box-shadow: 0 0 20px rgba(19, 202, 144, 0.45);
    color: #0a2118;
}

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

.btn--secondary:hover {
    box-shadow: 0 0 20px rgba(61, 24, 164, 0.55);
    color: #fff;
}

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

.btn--outline:hover {
    background: rgba(19, 202, 144, 0.1);
    color: var(--c-primary);
}

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

.btn--sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.btn--icon {
    padding: 10px 14px;
}

.btn-pulse {
    animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(19, 202, 144, 0.3);
    }
    50% {
        box-shadow: 0 0 28px rgba(19, 202, 144, 0.65), 0 0 50px rgba(19, 202, 144, 0.2);
    }
}

/* ===== HEADER ===== */
.header {
    background: var(--c-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--c-border);
    backdrop-filter: blur(12px);
}

.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo img {
    height: 40px;
    width: auto;
}

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

.header__nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--c-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.06);
}

.header__nav a svg {
    flex-shrink: 0;
}

.header__status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(19, 202, 144, 0.1);
    border: 1px solid rgba(19, 202, 144, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--c-primary);
    font-weight: 600;
}

.players-count {
    font-weight: 700;
    color: var(--c-primary);
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 22, 26, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    flex-direction: column;
    padding: 24px 20px;
    gap: 8px;
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: var(--c-text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-border);
    transition: background var(--transition);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/trueluck-banner.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(21, 22, 26, 0.92) 40%, rgba(21, 22, 26, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 80px 0 60px;
    max-width: 580px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(19, 202, 144, 0.12);
    border: 1px solid rgba(19, 202, 144, 0.3);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 18px;
    color: #fff;
}

.hero__title span {
    color: var(--c-primary);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 480px;
}

.hero__promo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero__promo-label {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero__promo-code {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: 0.15em;
    font-family: 'Courier New', monospace;
    background: rgba(19, 202, 144, 0.1);
    border: 1px dashed rgba(19, 202, 144, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition);
    user-select: all;
}

.hero__promo-code:hover {
    background: rgba(19, 202, 144, 0.2);
}

.btn-copy-hero {
    padding: 8px 14px;
    font-size: 0.8rem;
    background: rgba(19, 202, 144, 0.15);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-copy-hero:hover {
    background: rgba(19, 202, 144, 0.25);
}

.btn-copy-hero.copied {
    color: #fff;
    background: var(--c-primary);
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 72px 0;
}

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

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.section__desc {
    color: var(--c-text-muted);
    font-size: 1rem;
    margin-top: 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 202, 144, 0.3);
    box-shadow: var(--shadow-card);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(19, 202, 144, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--c-primary);
}

.feature-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card__text {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

/* ===== JACKPOTS ===== */
.jackpots-bg {
    background: linear-gradient(135deg, #1a1035 0%, var(--c-bg) 60%);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.jackpot-card {
    background: var(--c-card2);
    border: 1px solid rgba(61, 24, 164, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-secondary), transparent);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(61, 24, 164, 0.25);
}

.jackpot-card--mega::before {
    background: linear-gradient(90deg, transparent, #f0c040, transparent);
}

.jackpot-card--mega {
    border-color: rgba(240, 192, 64, 0.3);
}

.jackpot-card--mega .jackpot__amount {
    color: #f0c040;
    text-shadow: 0 0 20px rgba(240, 192, 64, 0.4);
}

.jackpot__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(61, 24, 164, 0.25);
    color: #a98af5;
    margin-bottom: 12px;
}

.jackpot-card--mega .jackpot__badge {
    background: rgba(240, 192, 64, 0.15);
    color: #f0c040;
}

.jackpot__name {
    font-size: 1rem;
    color: var(--c-text-muted);
    margin-bottom: 10px;
}

.jackpot__amount {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.jackpot__sub {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-top: 8px;
}

/* ===== MIRRORS ===== */
.mirrors-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
}

.mirrors-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.mirrors-table th,
.mirrors-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--c-border);
}

.mirrors-table th {
    background: var(--c-card);
    color: var(--c-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}

.mirrors-table td {
    background: rgba(28, 29, 36, 0.5);
    color: var(--c-text);
}

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

.mirrors-table tbody tr:hover td {
    background: rgba(19, 202, 144, 0.04);
}

.mirror-link {
    color: var(--c-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mirror-link:hover {
    text-decoration: underline;
    color: #1ae8a8;
}

.mirror-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--c-primary);
    font-weight: 600;
}

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

.tournament-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.tournament-card__header {
    background: linear-gradient(135deg, var(--c-secondary) 0%, #5a2ee0 100%);
    padding: 24px 20px 20px;
    position: relative;
}

.tournament-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.tournament-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.tournament-card__sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.tournament-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tournament-card__desc {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.tournament-prize {
    background: rgba(19, 202, 144, 0.08);
    border: 1px solid rgba(19, 202, 144, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
}

.tournament-prize__label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.tournament-prize__amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--c-primary);
}

.tournament-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    margin-top: auto;
}

.tournament-timer strong {
    color: var(--c-text);
    font-variant-numeric: tabular-nums;
}

/* ===== APP INFO ===== */
.app-section {
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    overflow: hidden;
}

.app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.app-info-col {
    padding: 40px 36px;
}

.app-dl-col {
    background: linear-gradient(135deg, #1a1035, #0f1018);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    border-left: 1px solid var(--c-border);
}

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

.app-dl-col p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-bottom: 8px;
}

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

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

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

.app-table th,
.app-table td {
    padding: 12px 0;
    font-size: 0.875rem;
    text-align: left;
}

.app-table th {
    color: var(--c-text-muted);
    width: 45%;
    font-weight: 500;
}

.app-table td {
    color: var(--c-text);
    font-weight: 600;
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    color: var(--c-text);
    text-decoration: none;
    transition: all var(--transition);
}

.dl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-primary);
    color: var(--c-text);
    transform: translateX(3px);
}

.dl-btn__icon {
    color: var(--c-primary);
    flex-shrink: 0;
}

.dl-btn__text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.dl-btn__text span {
    font-size: 0.78rem;
    color: var(--c-text-muted);
}

/* ===== SLOT MINI GAME ===== */
.slot-section {
    background: linear-gradient(135deg, #10121a 0%, #1a1035 50%, #10121a 100%);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.slot-machine {
    max-width: 520px;
    margin: 0 auto;
    background: var(--c-card);
    border: 1px solid rgba(61, 24, 164, 0.4);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 0 60px rgba(61, 24, 164, 0.2);
    text-align: center;
}

.slot__reels {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 28px;
    perspective: 400px;
}

.slot__reel {
    width: 90px;
    height: 90px;
    background: #0e0f16;
    border: 2px solid rgba(61, 24, 164, 0.5);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
}

.slot__reel.spin {
    animation: reel-spin 0.5s linear infinite;
}

@keyframes reel-spin {
    0% {
        transform: rotateX(0deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.slot__reel-symbol {
    transition: opacity 0.15s;
    line-height: 1;
    user-select: none;
}

.slot__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.slot__desc {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.slot__result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.slot__result-win {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-primary);
    animation: fade-in-up 0.4s ease;
}

.slot__result-loss {
    font-size: 0.95rem;
    color: var(--c-text-muted);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTENT REVIEW ===== */
.content-review {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
}

.author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.author-info__name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.author-info__title {
    font-size: 0.8rem;
    color: var(--c-primary);
    margin-bottom: 4px;
}

.author-info__bio {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}

.author-info__link {
    font-size: 0.8rem;
    color: var(--c-primary);
    margin-top: 4px;
    display: inline-block;
}

.review-content h2,
.review-content h3,
.review-content h4 {
    color: #fff;
    font-weight: 700;
    margin: 28px 0 12px;
    line-height: 1.3;
}

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

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

.review-content h4 {
    font-size: 1.05rem;
}

.review-content p {
    color: var(--c-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-content ul, .review-content ol {
    margin: 0 0 16px 24px;
}

.review-content li {
    color: var(--c-text-muted);
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-content a {
    color: var(--c-primary);
}

.review-content strong {
    color: var(--c-text);
    font-weight: 600;
}

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

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

.review-content th, .review-content td {
    padding: 10px 16px;
    text-align: left;
    border: 1px solid var(--c-border);
    font-size: 0.875rem;
}

.review-content th {
    background: var(--c-card2);
    color: var(--c-text);
    font-weight: 600;
}

.review-content td {
    color: var(--c-text-muted);
}

.review-content blockquote {
    border-left: 3px solid var(--c-primary);
    padding-left: 20px;
    margin: 20px 0;
    color: var(--c-text-muted);
    font-style: italic;
}

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

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

.review-content code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--c-primary);
}

.review-content pre {
    background: #0e0f16;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 16px 0;
}

.review-content pre code {
    background: none;
    padding: 0;
    color: var(--c-text);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-header);
    border-top: 1px solid var(--c-border);
    padding: 64px 0 32px;
    margin-top: auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__logo img {
    height: 36px;
    margin-bottom: 16px;
}

.footer__brand-desc {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--c-primary);
    border-color: rgba(19, 202, 144, 0.3);
}

.footer__email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.footer__email:hover {
    color: var(--c-primary);
}

.footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--c-primary);
}

.flag-country {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 0 0 40px;
}

.footer__payments {
    margin-bottom: 32px;
}

.footer__sub-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}

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

.footer__logo-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.footer__logo-badge--trust {
    border-color: rgba(19, 202, 144, 0.25);
    color: #8dd8be;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

.footer__copy strong {
    color: var(--c-text);
}

.footer__legal {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    max-width: 700px;
    line-height: 1.55;
    margin-top: 20px;
}

.footer__age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--c-text-muted);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

/* ===== PROMO WIDGET ===== */
.promo-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #1a1b24;
    border-top: 1px solid rgba(19, 202, 144, 0.3);
    padding: 12px 20px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    animation: slide-up 0.6s 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes slide-up {
    to {
        transform: translateY(0);
    }
}

.promo-widget__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-widget__bonus {
    font-size: 0.875rem;
    color: var(--c-text);
    font-weight: 600;
}

.promo-widget__bonus span {
    color: var(--c-primary);
}

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

.promo-widget__label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.promo-widget__code {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1rem;
    color: var(--c-primary);
    letter-spacing: 0.12em;
    background: rgba(19, 202, 144, 0.1);
    border: 1px dashed rgba(19, 202, 144, 0.4);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    user-select: all;
}

.btn-copy-widget {
    padding: 7px 14px;
    font-size: 0.8rem;
    background: rgba(19, 202, 144, 0.15);
    border: 1px solid rgba(19, 202, 144, 0.3);
    color: var(--c-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-copy-widget:hover {
    background: rgba(19, 202, 144, 0.25);
}

.btn-copy-widget.copied {
    background: var(--c-primary);
    color: #0a2118;
    border-color: var(--c-primary);
}

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

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

/* ===== TRANSITIONS BETWEEN SECTIONS ===== */
.section-wave {
    height: 48px;
    overflow: hidden;
    line-height: 0;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== INFO PAGE ===== */
.info-page {
    padding: 60px 0;
    max-width: 820px;
    margin: 0 auto;
}

.info-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.info-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}

.info-page p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.info-page ul, .info-page ol {
    margin: 0 0 16px 24px;
}

.info-page li {
    color: var(--c-text-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-page a {
    color: var(--c-primary);
}

.info-page strong {
    color: var(--c-text);
}

/* ===== WP-STYLE UNUSED ARTIFACTS ===== */
.wp-block-separator {
    display: none;
}

.wp-caption, .gallery-caption {
    display: none;
}

.alignleft, .alignright, .aligncenter {
    display: inline;
}

#wpadminbar {
    display: none !important;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.widget {
    overflow: hidden;
}

.entry-content, .entry-meta {
    display: inherit;
}

.post-thumbnail {
    display: inherit;
}

.site-footer__widgets {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

#elementor-preview-loading {
    display: none;
}

.e-col-inner {
    display: contents;
}

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

.eae_el_text_shadow {
    display: none;
}

.wp-content {
    display: inherit;
}

[data-elementor-type] {
    display: inherit;
}

/* ===== UNUSED JS/CSS ARTIFACTS ===== */
.tl-xq7r9 {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.j4k2v-f9s8 {
    display: none;
    pointer-events: none;
}

.p3r0t-c91m7 {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}

.q8t4v-n21j1 {
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jackpots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .app-dl-col {
        border-left: none;
        border-top: 1px solid var(--c-border);
    }

    .header__inner {
        grid-template-columns: auto auto 1fr auto;
    }

    .header__nav {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header__inner {
        grid-template-columns: auto 1fr auto;
        padding: 12px 16px;
    }

    .header__status {
        display: none;
    }

    .hero__content {
        padding: 56px 0 40px;
    }

    .hero__actions {
        gap: 10px;
    }

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

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

    .tournaments-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .content-review {
        padding: 28px 20px;
    }

    .promo-widget__inner {
        gap: 12px;
    }

    .promo-widget__bonus {
        font-size: 0.8rem;
    }

    .section {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__promo {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__buttons .btn--secondary {
        display: none;
    }

    .promo-widget {
        padding: 10px 16px;
    }

    .promo-widget__inner {
        gap: 10px;
    }

    .promo-widget__code-wrap {
        flex-wrap: wrap;
    }
}

#tournaments {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#tournaments .container {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
}

#tournaments .section__header {
    width: 100%;
    max-width: 100%;
}

#tournaments .section__title,
#tournaments .section__desc,
#tournaments .section__label {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tournaments-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tournament-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
}

.tournament-card__header,
.tournament-card__body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.tournament-card__title,
.tournament-card__sub,
.tournament-card__desc,
.tournament-prize__label,
.tournament-prize__amount,
.tournament-timer {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tournament-card__body .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

@media (max-width: 1024px) {
    .tournaments-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    #tournaments {
        overflow: visible;
    }

    #tournaments .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    #tournaments .section__header {
        margin-bottom: 28px;
        text-align: center;
    }

    #tournaments .section__label {
        justify-content: center;
        font-size: 11px;
    }

    #tournaments .section__title {
        font-size: 26px;
        line-height: 1.2;
    }

    #tournaments .section__desc {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 8px;
    }

    .tournaments-grid {
        display: flex;
        width: 100%;
        max-width: 100%;
        gap: 14px;
        padding: 0 0 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }

    .tournaments-grid::-webkit-scrollbar {
        display: none;
    }

    .tournament-card {
        flex: 0 0 calc(100% - 24px);
        width: calc(100% - 24px);
        min-width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .tournament-card__header {
        min-height: 150px;
        padding: 22px 18px 18px;
    }

    .tournament-card__badge {
        top: 10px;
        right: 10px;
        font-size: 10px;
        padding: 3px 8px;
    }

    .tournament-card__title {
        padding-right: 70px;
        font-size: 18px;
        line-height: 1.25;
    }

    .tournament-card__sub {
        font-size: 12px;
        line-height: 1.45;
    }

    .tournament-card__body {
        padding: 18px 16px;
        gap: 12px;
    }

    .tournament-card__desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .tournament-prize {
        width: 100%;
        padding: 12px 10px;
    }

    .tournament-prize__label {
        font-size: 11px;
    }

    .tournament-prize__amount {
        font-size: 24px;
        line-height: 1.2;
    }

    .tournament-timer {
        display: grid;
        grid-template-columns:auto 1fr;
        align-items: center;
        width: 100%;
        gap: 7px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--c-border);
        border-radius: 10px;
        font-size: 13px;
        line-height: 1.45;
    }

    .tournament-timer svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .tournament-timer strong {
        grid-column: 1 / -1;
        width: 100%;
        padding-top: 4px;
        color: var(--c-primary);
        font-size: 18px;
        text-align: center;
        letter-spacing: .04em;
    }

    .tournament-card__body .btn {
        min-height: 46px;
        padding: 11px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #tournaments .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    #tournaments .section__title {
        font-size: 23px;
    }

    #tournaments .section__desc {
        font-size: 13px;
    }

    .tournaments-grid {
        gap: 10px;
    }

    .tournament-card {
        flex-basis: calc(100% - 14px);
        width: calc(100% - 14px);
        min-width: calc(100% - 14px);
        max-width: calc(100% - 14px);
    }

    .tournament-card__header {
        min-height: 135px;
        padding: 20px 14px 16px;
    }

    .tournament-card__title {
        padding-right: 62px;
        font-size: 17px;
    }

    .tournament-card__body {
        padding: 16px 12px;
    }

    .tournament-card__desc {
        font-size: 13px;
    }

    .tournament-prize__amount {
        font-size: 22px;
    }

    .tournament-timer {
        padding: 9px 10px;
        font-size: 12px;
    }

    .tournament-timer strong {
        font-size: 17px;
    }
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100000;
}

.header__inner {
    position: relative;
    z-index: 100002;
}

.mobile-menu {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 68px);
        padding: 18px 16px 32px;
        background: rgba(21, 22, 26, .99);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid var(--c-border);
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        z-index: 100001;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .mobile-menu.active,
    .mobile-menu.open,
    .mobile-menu.is-open {
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        gap: 12px;
        padding: 13px 15px;
        color: var(--c-text);
        background: rgba(255, 255, 255, .04);
        border: 1px solid var(--c-border);
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-menu a svg {
        width: 19px;
        height: 19px;
        flex: 0 0 19px;
        color: var(--c-primary);
    }

    .burger {
        position: relative;
        z-index: 100003;
    }

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

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

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

@media (max-width: 768px) {
    .mobile-menu {
        top: 64px;
        height: calc(100dvh - 64px);
    }
}