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

:root {
    --color-header: #0f1a2d;
    --color-footer: #0a1220;
    --color-bg: #24344f;
    --color-bg-alt: #1a2840;
    --color-bg-card: #1c2e47;
    --color-btn-dark: #0f1a2d;
    --color-btn-blue: #3388ff;
    --color-btn-blue-hover: #1a6fe0;
    --color-accent: #3388ff;
    --color-accent2: #ffd700;
    --color-text: #e8edf5;
    --color-text-muted: #8fa3be;
    --color-border: rgba(51, 136, 255, 0.18);
    --color-white: #ffffff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: "Montserrat", "Roboto", Arial, Helvetica, sans-serif;
    --font-body: "Roboto", Arial, Helvetica, sans-serif;
    --transition: 0.25s ease;
}

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

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

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

body.fixed {
    overflow: hidden;
}

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

a:hover {
    color: var(--color-btn-blue-hover);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
}

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

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

main {
    flex: 1;
}

.section {
    padding: 60px 0;
}

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

.box {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.box--accent {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a2e50 100%);
    border: 1px solid rgba(51, 136, 255, 0.35);
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.col {
    flex: 1;
    min-width: 0;
}

.col-2 {
    flex: 0 0 calc(50% - 8px);
}

.col-3 {
    flex: 0 0 calc(33.333% - 11px);
}

.mb1 {
    margin-bottom: 8px;
}

.mb2 {
    margin-bottom: 16px;
}

.mb3 {
    margin-bottom: 24px;
}

.mt1 {
    margin-top: 8px;
}

.p05 {
    padding: 0 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.2;
}

.btn--md {
    padding: 11px 24px;
    font-size: 15px;
}

.btn--lg {
    padding: 15px 36px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

.btn--xl {
    padding: 18px 48px;
    font-size: 18px;
    border-radius: var(--radius-md);
    font-weight: 800;
}

.btn--dark {
    background: var(--color-btn-dark);
    color: var(--color-white);
}

.btn--dark:hover {
    background: #1a2d4a;
    color: var(--color-white);
}

.btn--blue {
    background: var(--color-btn-blue);
    color: var(--color-white);
}

.btn--blue:hover {
    background: var(--color-btn-blue-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(51, 136, 255, 0.4);
}

.btn--gold {
    background: var(--color-accent2);
    color: #0f1a2d;
}

.btn--gold:hover {
    background: #f0c800;
    color: #0f1a2d;
    transform: translateY(-1px);
}

.btn--signin {
    background: var(--color-btn-dark);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--signin:hover {
    background: #1a2d4a;
    color: var(--color-white);
}

.btn--signup {
    background: var(--color-btn-blue);
    color: var(--color-white);
}

.btn--signup:hover {
    background: var(--color-btn-blue-hover);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(51, 136, 255, 0.4);
}

.btn--bonus {
    background: linear-gradient(90deg, #ffd700, #ff9900);
    color: #0f1a2d;
    font-weight: 700;
}

.btn--bonus:hover {
    background: linear-gradient(90deg, #f0c800, #e08800);
    color: #0f1a2d;
    transform: translateY(-1px);
}

.btn--red {
    background: #e03030;
    color: var(--color-white);
}

.btn--red:hover {
    background: #c42020;
    color: var(--color-white);
}

.btn--green {
    background: #2ab55a;
    color: var(--color-white);
}

.btn--green:hover {
    background: #229e4d;
    color: var(--color-white);
}

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

.btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.section-header {
    margin-bottom: 32px;
}

.badge {
    display: inline-block;
    background: rgba(51, 136, 255, 0.18);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(51, 136, 255, 0.3);
}

.divider {
    width: 48px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin: 12px 0 20px;
}

.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(51, 136, 255, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

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

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

.header-nav a {
    color: var(--color-text-muted);
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-white);
    background: rgba(51, 136, 255, 0.12);
}

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

.header-online {
    font-size: 12px;
    color: var(--color-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-online .dot {
    width: 7px;
    height: 7px;
    background: #2ab55a;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    display: inline-block;
    flex-shrink: 0;
}

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

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

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

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mob-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    opacity: 0;
    transition: opacity var(--transition);
}

.mob-nav-overlay.active {
    opacity: 1;
    display: block;
}

.mob-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--color-header);
    z-index: 950;
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(51, 136, 255, 0.15);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
}

.mob-nav.active {
    transform: translateY(0);
}

.mob-nav a {
    display: block;
    padding: 12px 0;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

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

.mob-nav a:last-of-type {
    border-bottom: none;
}

.site-footer {
    background: var(--color-footer);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(51, 136, 255, 0.12);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

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

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-size: 13.5px;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.provider-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--color-text-muted);
    white-space: nowrap;
}

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

.footer-copyright {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer-legal {
    font-size: 11px;
    color: rgba(143, 163, 190, 0.6);
    max-width: 600px;
    line-height: 1.5;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--color-accent);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 460px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1828 0%, #1a2e50 50%, #0a1828 100%);
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(10, 24, 40, 0.85) 0%,
            rgba(10, 24, 40, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

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

.hero-content p {
    font-size: 18px;
    color: rgba(232, 237, 245, 0.88);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 136, 255, 0.15);
    border: 1px solid rgba(51, 136, 255, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    flex: 0 0 100%;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(51, 136, 255, 0.18);
    border: 1px solid rgba(51, 136, 255, 0.3);
    color: var(--color-white);
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

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

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--color-accent);
    width: 20px;
    border-radius: 4px;
}

.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 480px;
}

table th {
    background: var(--color-btn-dark);
    color: var(--color-white);
    font-family: var(--font-main);
    font-weight: 700;
    padding: 13px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-accent);
    white-space: nowrap;
}

table td {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--color-text);
    vertical-align: middle;
}

table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

table tr:hover td {
    background: rgba(51, 136, 255, 0.07);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.status-badge--active {
    background: rgba(42, 181, 90, 0.15);
    color: #2ab55a;
    border: 1px solid rgba(42, 181, 90, 0.3);
}

.status-badge--warn {
    background: rgba(255, 165, 0, 0.12);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.25);
}

.winners-table {
    width: 100%;
}

.winner-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(51, 136, 255, 0.15);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.winner-rank.gold {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-accent2);
}

.winner-rank.silver {
    background: rgba(192, 192, 192, 0.15);
    color: #c0c0c0;
}

.winner-rank.bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #cd7f32;
}

.winner-name {
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

.winner-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-accent2);
    white-space: nowrap;
}

.video-block {
    background: var(--color-btn-dark);
    border-radius: var(--radius-lg);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#lk-fortune-wheel {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}

#lk-fortune-canvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(51, 136, 255, 0.3);
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 28px solid var(--color-accent2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

.wheel-result {
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.wheel-result--win {
    background: rgba(42, 181, 90, 0.15);
    border: 1px solid rgba(42, 181, 90, 0.3);
    color: #2ab55a;
}

.wheel-result--lose {
    background: rgba(224, 48, 48, 0.12);
    border: 1px solid rgba(224, 48, 48, 0.25);
    color: #e05050;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-family: var(--font-main);
    color: var(--color-white);
}

.content-body h1 {
    font-size: 28px;
}

.content-body h2 {
    font-size: 22px;
}

.content-body h3 {
    font-size: 18px;
}

.content-body p {
    margin-bottom: 14px;
    color: var(--color-text);
    line-height: 1.7;
}

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

.content-body li {
    margin-bottom: 6px;
    color: var(--color-text);
    line-height: 1.6;
}

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

.content-body a:hover {
    text-decoration: underline;
}

.content-body strong {
    color: var(--color-white);
    font-weight: 700;
}

.content-body em {
    font-style: italic;
}

.content-body table {
    margin: 20px 0;
}

.content-body table th,
.content-body table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 12px 16px;
    background: rgba(51, 136, 255, 0.07);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
    color: var(--color-text);
}

.author-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(51, 136, 255, 0.15);
    margin: 32px 0;
}

.author-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-white);
}

.author-role {
    font-size: 13px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.author-bio {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-socials {
    display: flex;
    gap: 8px;
}

.author-social {
    font-size: 12px;
    color: var(--color-accent);
    border: 1px solid rgba(51, 136, 255, 0.3);
    border-radius: 4px;
    padding: 3px 10px;
    text-decoration: none;
}

.author-social:hover {
    background: rgba(51, 136, 255, 0.12);
}

.faq-item {
    border: 1px solid rgba(51, 136, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    background: var(--color-bg-card);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(51, 136, 255, 0.08);
}

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

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease,
    padding 0.3s ease;
    background: var(--color-bg-alt);
}

.faq-answer.active {
    max-height: 800px;
    padding: 16px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.card {
    flex: 1;
    min-width: 220px;
}

.bonus-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.bonus-card:hover {
    border-color: rgba(51, 136, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(51, 136, 255, 0.12);
}

.bonus-card-icon {
    font-size: 36px;
    margin: 0 auto;
}

.bonus-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
}

.bonus-card-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-accent);
}

.bonus-card-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    flex: 1;
}

.bonus-card .btn {
    margin-top: auto;
    width: 100%;
}

.promo-code-block {
    background: linear-gradient(135deg, #0d1f3c, #1a3060);
    border: 2px dashed rgba(51, 136, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

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

.promo-code-value {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(51, 136, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    margin: 12px 0;
}

.promo-code-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-accent2);
}

.copy-btn {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--color-btn-blue-hover);
    transform: scale(1.04);
}

.copy-btn.copied {
    background: #2ab55a;
}

.promo-code-bonus {
    font-size: 15px;
    color: var(--color-text-muted);
}

.promo-code-bonus strong {
    color: var(--color-white);
}

.breadcrumbs {
    padding: 12px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumbs a {
    font-size: 13px;
    color: var(--color-text-muted);
    text-decoration: none;
}

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

.breadcrumbs .sep {
    color: rgba(143, 163, 190, 0.4);
    font-size: 12px;
}

.breadcrumbs .current {
    font-size: 13px;
    color: var(--color-text);
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.advantage-item {
    flex: 1;
    min-width: 180px;
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all var(--transition);
}

.advantage-item:hover {
    border-color: rgba(51, 136, 255, 0.35);
    transform: translateY(-2px);
}

.advantage-icon {
    font-size: 28px;
}

.advantage-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

.advantage-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.reg-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.reg-method {
    flex: 1;
    min-width: 140px;
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.reg-method:hover {
    border-color: var(--color-accent);
    background: rgba(51, 136, 255, 0.07);
}

.reg-method-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.reg-method-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-white);
}

.security-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.security-item {
    flex: 1;
    min-width: 200px;
    background: var(--color-bg-card);
    border: 1px solid rgba(42, 181, 90, 0.2);
    border-radius: var(--radius-md);
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.security-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.security-content-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.security-content-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.bypass-table {
    width: 100%;
}

.bypass-table th {
    background: rgba(15, 26, 45, 0.8);
}

.jackpot-block {
    background: linear-gradient(135deg, #0d1f3c 0%, #1a2e50 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.jackpot-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-accent2);
    font-family: var(--font-main);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    letter-spacing: 2px;
}

.jackpot-currency {
    font-size: 20px;
}

.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.slot-card {
    flex: 1;
    min-width: 150px;
    max-width: calc(33.333% - 10px);
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.slot-card:hover {
    border-color: rgba(51, 136, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.slot-card-img {
    position: relative;
    padding-bottom: 66%;
    background: linear-gradient(135deg, #0d1f3c, #1a3060);
}

.slot-card-img-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.slot-card-body {
    padding: 12px;
}

.slot-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.slot-card-provider {
    font-size: 11px;
    color: var(--color-text-muted);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.provider-badge {
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--transition);
    cursor: default;
}

.provider-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-white);
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--color-header);
    border-top: 2px solid var(--color-accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-widget-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

.sticky-widget-text strong {
    color: var(--color-accent2);
    font-weight: 700;
}

.sticky-widget-text span {
    display: block;
    font-size: 12px;
}

.sticky-widget-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

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

.sticky-close:hover {
    color: var(--color-white);
}

.alt-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.alt-brand-card {
    flex: 1;
    min-width: 180px;
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    transition: all var(--transition);
}

.alt-brand-card:hover {
    border-color: rgba(51, 136, 255, 0.35);
    transform: translateY(-2px);
}

.alt-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}

.alt-brand-desc {
    font-size: 13px;
    color: var(--color-text-muted);
}

.screenshots-grid {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.screenshot-item {
    flex: 1;
    min-width: 200px;
    background: var(--color-bg-card);
    border: 1px solid rgba(51, 136, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0.8;
}

.screenshot-caption {
    padding: 10px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.page-content-wrap {
    padding: 48px 0;
}

.hero-slider-bg {
    background: linear-gradient(135deg, #0a1828 0%, #1a2e50 100%);
}

.wp-content-hidden,
.wp-block-placeholder {
    display: none !important;
}

.elementor-invisible {
    visibility: hidden;
    position: absolute;
}

.wc-block-product-template {
    display: block;
}

.entry-meta {
    color: var(--color-text-muted);
    font-size: 12px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 8px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

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

    .burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .col-3 {
        flex: 0 0 calc(50% - 8px);
    }

    .slot-card {
        max-width: calc(50% - 7px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 360px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section {
        padding: 40px 0;
    }

    .box {
        padding: 20px;
    }

    .col-2 {
        flex: 0 0 100%;
    }

    .col-3 {
        flex: 0 0 100%;
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
    }

    .logo img {
        height: 16px;
    }

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

    .jackpot-amount {
        font-size: 38px;
    }

    .footer-inner {
        gap: 24px;
    }

    .footer-col {
        flex: 0 0 calc(50% - 12px);
    }

    .promo-code-text {
        font-size: 22px;
    }

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

    .sticky-widget-text span {
        display: none;
    }

    .slot-card {
        max-width: calc(50% - 7px);
    }

    .card-grid {
        flex-direction: column;
    }

    .bonus-card {
        min-width: 100%;
    }
}

/* ───── scroll-reveal animation ───── */
[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease,
    transform 0.55s ease;
}

[data-animate].anim-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .reg-method {
        min-width: calc(50% - 6px);
    }

    .footer-col {
        flex: 0 0 100%;
    }

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

    .slot-card {
        max-width: 100%;
        min-width: 100%;
    }

    .header-actions .btn--signin {
        display: none;
    }

    .promo-code-value {
        flex-direction: column;
        gap: 8px;
    }
}

.idhgd {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 20px;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.75;
}

.idhgd h1,
.idhgd h2,
.idhgd h3 {
    font-family: var(--font-main);
    color: var(--color-white);
    line-height: 1.25;
}

.idhgd h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 24px;
    font-weight: 800;
}

.idhgd h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 42px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.idhgd p {
    margin: 0 0 16px;
    font-size: 17px;
    color: var(--color-text);
}

.idhgd a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.idhgd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    min-width: 560px;
}

.idhgd table td,
.idhgd table th {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.idhgd table tr:first-child td {
    background: var(--color-btn-dark);
    color: var(--color-white);
    font-weight: 800;
}

.idhgd table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.idhgd table tr:hover td {
    background: rgba(51, 136, 255, 0.08);
}

/* якщо таблиця прямо всередині контенту */
.idhgd {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* mobile */
@media (max-width: 768px) {
    .idhgd {
        padding: 36px 16px;
        line-height: 1.65;
    }

    .idhgd h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .idhgd h2 {
        font-size: 21px;
        margin-top: 32px;
    }

    .idhgd p {
        font-size: 15.5px;
    }

    .idhgd table {
        font-size: 14px;
        min-width: 520px;
    }

    .idhgd table td,
    .idhgd table th {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .idhgd {
        padding: 28px 14px;
    }

    .idhgd h1 {
        font-size: 23px;
    }

    .idhgd h2 {
        font-size: 19px;
    }

    .idhgd p {
        font-size: 15px;
    }
}