:root {
    --clr-bg: #0B0C10;
    --clr-bg-2: #12141a;
    --clr-bg-3: #1a1d25;
    --clr-primary: #4AD315;
    --clr-primary-hover: #3db810;
    --clr-secondary: #5A5B61;
    --clr-secondary-hover: #4a4b51;
    --clr-text: #e8eaf0;
    --clr-text-muted: #9a9ba5;
    --clr-text-dim: #6b6c75;
    --clr-border: #23252f;
    --clr-border-light: #2e3040;
    --clr-accent: #4AD315;
    --clr-gold: #f0c040;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 20px rgba(74,211,21,0.2);
    --transition: 0.22s ease;
    --container-max: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-hover); }
ul { list-style: none; }

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

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


.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

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

.hdr-logo img { height: 44px; width: auto; }

.hdr-nav-wrap { flex: 1; display: flex; justify-content: center; }

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

.hdr-nav__item { position: relative; }

.hdr-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    color: var(--clr-text-muted);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.hdr-nav__link:hover {
    color: var(--clr-text);
    background: var(--clr-bg-3);
}

.nav-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--clr-primary);
}

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

.hdr-online {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--clr-text-muted);
    margin-right: 4px;
}

.hdr-online__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-primary);
    box-shadow: 0 0 6px var(--clr-primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hdr-online__count { color: var(--clr-primary); font-weight: 600; }

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

.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger.active .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active .burger__line:nth-child(2) { opacity: 0; }
.burger.active .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    background: var(--clr-bg-2);
    border-right: 1px solid var(--clr-border);
    width: 280px;
    height: 100%;
    padding: 80px 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu__inner { transform: translateX(0); }

.mobile-nav { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav__link {
    display: block;
    padding: 12px 16px;
    color: var(--clr-text);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav__link:hover {
    background: var(--clr-bg-3);
    color: var(--clr-primary);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

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

.btn--primary:hover {
    background: var(--clr-primary-hover);
    color: #0a1200;
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--clr-secondary);
    color: var(--clr-text);
}

.btn--secondary:hover {
    background: var(--clr-secondary-hover);
    color: var(--clr-text);
    transform: translateY(-1px);
}

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

.btn--outline:hover {
    background: var(--clr-primary);
    color: #0a1200;
}

.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--md { padding: 12px 24px; font-size: 15px; }
.btn--lg { padding: 16px 36px; font-size: 17px; letter-spacing: 0.03em; }
.btn--xl { padding: 18px 44px; font-size: 18px; font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.04em; }

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


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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/neospin-title-img.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.35);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,12,16,0.98) 0%, rgba(11,12,16,0.65) 60%, rgba(11,12,16,0.1) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74,211,21,0.12);
    border: 1px solid rgba(74,211,21,0.3);
    color: var(--clr-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero-title span { color: var(--clr-primary); }

.hero-subtitle {
    font-size: 17px;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-promo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-bg-2);
    border: 1.5px dashed var(--clr-primary);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 28px;
    max-width: 380px;
}

.hero-promo-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.hero-promo-code {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.05em;
}

.hero-promo-copy {
    margin-left: auto;
    background: none;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}

.hero-promo-copy:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.hero-promo-copy.copied { color: var(--clr-primary); border-color: var(--clr-primary); }

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

.hero-bonus-note {
    font-size: 13px;
    color: var(--clr-text-dim);
    margin-top: 16px;
}


.breadcrumb-section { padding: 14px 0; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    flex-wrap: wrap;
}

.breadcrumb__item { display: flex; align-items: center; gap: 6px; }
.breadcrumb__link { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--clr-primary); }

.breadcrumb__sep {
    color: var(--clr-text-dim);
    font-size: 11px;
}

.breadcrumb__current { color: var(--clr-primary); font-weight: 500; }


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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-title span { color: var(--clr-primary); }

.section-subtitle {
    font-size: 16px;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 560px;
}

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


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

.advantage-card {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 220px;
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    border-color: rgba(74,211,21,0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.advantage-ico {
    width: 44px;
    height: 44px;
    background: rgba(74,211,21,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--clr-primary);
}

.advantage-ico svg { width: 24px; height: 24px; }

.advantage-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.advantage-desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.55; }


.payments-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    margin: 0 2px;
}

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

.payments-table th,
.payments-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}

.payments-table th {
    background: var(--clr-bg-3);
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

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

.payments-table tbody tr {
    background: var(--clr-bg-2);
    transition: background var(--transition);
}

.payments-table tbody tr:hover { background: var(--clr-bg-3); }

.payments-table tbody tr:nth-child(even) { background: rgba(26,29,37,0.5); }
.payments-table tbody tr:nth-child(even):hover { background: var(--clr-bg-3); }

.pay-method-name {
    font-weight: 600;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-method-ico {
    width: 28px;
    height: 20px;
    background: var(--clr-bg-3);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--clr-text-muted);
    flex-shrink: 0;
}

.td-green { color: var(--clr-primary); }
.td-muted { color: var(--clr-text-muted); }


.screenshots-section { padding: 64px 0; }

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

.screenshot-item {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    position: relative;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(74,211,21,0.3);
}

.screenshot-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,12,16,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.screenshot-item:hover .screenshot-overlay { opacity: 1; }

.screenshot-overlay svg { width: 40px; height: 40px; color: #fff; }

.screenshots-slider { display: none; position: relative; overflow: hidden; border-radius: var(--radius-md); }
.screenshots-track { display: flex; transition: transform 0.35s ease; }
.screenshots-slide { min-width: 100%; }
.screenshots-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); }

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

.slider-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--clr-bg-3);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-btn:hover { background: var(--clr-bg-2); border-color: var(--clr-primary); color: var(--clr-primary); }

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

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.slider-dot.active { background: var(--clr-primary); transform: scale(1.3); }


.slot-section { padding: 64px 0; }

.slot-game-wrap {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.slot-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.slot-subtitle {
    font-size: 14px;
    color: var(--clr-text-muted);
    margin-bottom: 32px;
}

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

.slot-reel {
    width: 100px;
    height: 120px;
    background: var(--clr-bg);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slot-reel.spinning { border-color: var(--clr-primary); animation: reel-flash 0.1s infinite alternate; }

@keyframes reel-flash {
    0% { border-color: var(--clr-primary); }
    100% { border-color: var(--clr-border); }
}

.slot-symbol {
    font-size: 50px;
    line-height: 1;
    transition: opacity 0.1s;
    user-select: none;
}

.slot-reel.spinning .slot-symbol { animation: symbol-spin 0.08s linear infinite; }

@keyframes symbol-spin {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-20px); opacity: 0; }
    51% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.slot-result-line {
    height: 3px;
    background: var(--clr-border);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.slot-result-line.win { background: var(--clr-primary); animation: line-glow 0.8s ease infinite alternate; }

@keyframes line-glow {
    0% { box-shadow: none; }
    100% { box-shadow: 0 0 12px var(--clr-primary); }
}

.slot-btn { margin-bottom: 20px; }

.slot-message {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slot-win-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
    animation: win-bounce 0.5s ease;
}

@keyframes win-bounce {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.slot-lose-text { font-size: 15px; color: var(--clr-text-muted); }

.slot-spins-left { font-size: 12px; color: var(--clr-text-dim); margin-top: 8px; }


.review-section { padding: 64px 0; }

.review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
}

.author-avatar {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--clr-bg-3);
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.author-info__name {
    font-weight: 600;
    color: var(--clr-text);
    font-size: 15px;
}

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

.author-info__link {
    font-size: 12px;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.content-box {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px 36px;
}

.content-body h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    line-height: 1.2;
}

.content-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--clr-text);
    margin: 24px 0 10px;
}

.content-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--clr-text);
    margin: 20px 0 8px;
}

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

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

.content-body ul,
.content-body ol {
    margin: 0 0 16px 20px;
    color: var(--clr-text);
}

.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }

.content-body li { margin-bottom: 6px; line-height: 1.6; }

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

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

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

.content-body th {
    background: var(--clr-bg-3);
    color: var(--clr-text-muted);
    font-weight: 600;
}

.content-body td { background: var(--clr-bg-2); }

.content-body blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(74,211,21,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-text-muted);
    font-style: italic;
}

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

.content-placeholder {
    padding: 28px;
    border: 1.5px dashed var(--clr-border-light);
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--clr-text-dim);
    font-size: 14px;
}


.faq-section { padding: 64px 0; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

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

.faq-item.open { border-color: rgba(74,211,21,0.35); }

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

.faq-question:hover { color: var(--clr-primary); }
.faq-item.open .faq-question { color: var(--clr-primary); }

.faq-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-bg-3);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-text-muted);
    transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-ico {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #0a1200;
    transform: rotate(45deg);
}

.faq-ico svg { width: 12px; height: 12px; }

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

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

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--clr-text-muted);
    font-size: 14px;
    line-height: 1.7;
}


.comments-section { padding: 64px 0; }

.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.comment-card {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

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

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.comment-name { font-weight: 600; color: var(--clr-text); font-size: 15px; }

.comment-date { font-size: 12px; color: var(--clr-text-dim); margin-top: 1px; }

.comment-stars { display: flex; gap: 2px; margin-left: auto; }

.star {
    width: 14px;
    height: 14px;
    color: var(--clr-gold);
}

.comment-text { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

.comment-form-wrap {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.comment-form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-vertical { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: flex; gap: 14px; }
.form-row .form-group { flex: 1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label { font-size: 13px; font-weight: 500; color: var(--clr-text-muted); }

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 11px 14px;
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(74,211,21,0.12);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9ba5' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-rating-group { display: flex; align-items: center; gap: 4px; }

.rating-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: var(--clr-border);
    transition: color var(--transition), transform var(--transition);
}

.rating-star-btn:hover,
.rating-star-btn.active {
    color: var(--clr-gold);
    transform: scale(1.2);
}

.rating-star-btn svg { width: 22px; height: 22px; }

.form-submit-row { margin-top: 4px; }

.form-note { font-size: 12px; color: var(--clr-text-dim); margin-top: 4px; }

.form-success {
    display: none;
    padding: 14px 18px;
    background: rgba(74,211,21,0.08);
    border: 1px solid rgba(74,211,21,0.3);
    border-radius: var(--radius-sm);
    color: var(--clr-primary);
    font-size: 14px;
    font-weight: 500;
}


.site-footer {
    background: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 56px 0 0;
}

.footer-inner { display: flex; flex-direction: column; gap: 40px; }

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

.footer-brand { flex: 0 0 220px; display: flex; flex-direction: column; gap: 16px; }

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

.footer-country {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--clr-text-muted);
}
.footer-country img{height: 20px; width: auto;}

.flag-icon { width: 28px; height: 18px; border-radius: 3px; overflow: hidden; }

.footer-socials { display: flex; gap: 10px; }

.social-link {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: var(--clr-bg-3);
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover { background: var(--clr-bg-2); color: var(--clr-primary); border-color: var(--clr-primary); }
.social-link svg { width: 16px; height: 16px; }

.footer-email__link { font-size: 13px; color: var(--clr-text-muted); }
.footer-email__link:hover { color: var(--clr-primary); }

.footer-nav-col {
    flex: 1;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-nav-group { min-width: 140px; }

.footer-nav-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-text-muted);
    margin-bottom: 14px;
}

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

.footer-link {
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}

.footer-link:hover { color: var(--clr-primary); }

.footer-logos-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.footer-logos-group { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; }

.footer-logos-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-text-dim);
    font-weight: 600;
    white-space: nowrap;
    min-width: 90px;
    padding-top: 3px;
}

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

.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--clr-bg-3);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(74,211,21,0.07);
    border: 1px solid rgba(74,211,21,0.2);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.trust-badge--license {
    background: rgba(240,192,64,0.07);
    border-color: rgba(240,192,64,0.25);
    color: var(--clr-gold);
}

.footer-legal {
    padding: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal__text { font-size: 12px; color: var(--clr-text-dim); line-height: 1.65; }
.footer-copyright { font-size: 13px; color: var(--clr-text-dim); }

.footer-age { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--clr-secondary);
    color: var(--clr-text-muted);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.footer-legal__disclaimer { font-size: 12px; color: var(--clr-text-dim); line-height: 1.6; }


.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--clr-bg-2);
    border-top: 2px solid var(--clr-primary);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-widget.show { transform: translateY(0); }

.sticky-widget-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-bonus-info { display: flex; align-items: center; gap: 14px; }

.sticky-bonus-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.sticky-bonus-amount {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.sticky-bonus-spins { font-size: 13px; color: var(--clr-text-muted); }

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

.sticky-close {
    background: none;
    border: 1px solid var(--clr-border);
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), color var(--transition);
}

.sticky-close:hover { border-color: var(--clr-text-muted); color: var(--clr-text); }
.sticky-close svg { width: 14px; height: 14px; }

.info-page-wrap { padding: 32px 0 64px; }

.info-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 24px;
}

.info-breadcrumb__link { color: var(--clr-text-muted); }
.info-breadcrumb__link:hover { color: var(--clr-primary); }
.info-breadcrumb__sep { color: var(--clr-text-dim); }
.info-breadcrumb__current { color: var(--clr-primary); }

.info-content-box {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 36px 40px;
}

.info-page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.15;
}

.site-main--info { padding-bottom: 40px; }

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--clr-bg-3);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.rating-details { display: flex; flex-direction: column; gap: 4px; }
.rating-stars-row { display: flex; gap: 3px; }
.rating-stars-row svg { width: 18px; height: 18px; color: var(--clr-gold); }
.rating-total { font-size: 12px; color: var(--clr-text-muted); }


.d-hidden { display: none !important; }
.visually-hidden,
.screen-reader-text,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


.wpmf-gallery { display: none; }
.entry-meta { display: none; }
.post-thumbnail { display: none; }
.elementor-widget-container { position: relative; }
.wp-caption { max-width: 100%; }
.wp-block-image { margin: 0; }
.wp-post-nav { display: none; }
.yoast-breadcrumbs { display: none; }
.widget-area { display: none; }
.wp-footer-ads { display: none; }


@media (max-width: 1024px) {
    .hdr-nav-wrap { display: none; }
    .burger { display: flex; }
    .advantage-card { flex: 1 1 calc(50% - 8px); }
    .screenshot-item { flex: 1 1 calc(50% - 8px); }
}

@media (max-width: 768px) {
    .section { padding: 48px 0; }
    .hero-section { min-height: 420px; padding: 48px 0; }
    .hero-title { font-size: 32px; }
    .advantage-card { flex: 1 1 100%; }
    .screenshots-grid { display: none; }
    .screenshots-slider { display: block; }
    .slot-reels { gap: 8px; }
    .slot-reel { width: 82px; height: 100px; }
    .slot-symbol { font-size: 40px; }
    .footer-top { flex-direction: column; gap: 28px; }
    .footer-brand { flex: none; }
    .footer-nav-col { gap: 24px; }
    .content-box { padding: 20px 18px; }
    .comment-form-wrap { padding: 20px; }
    .info-content-box { padding: 24px 20px; }
    .sticky-widget-inner { flex-direction: column; align-items: stretch; gap: 10px; }
    .hdr-online { display: none; }
    .form-row { flex-direction: column; }
    .review-rating { flex-direction: column; text-align: center; align-items: flex-start; }
    .footer-logos-group { flex-direction: column; gap: 8px; }
    .footer-top {flex-direction: column;}
    .footer-nav-col {flex-direction: column;}
}

@media (max-width: 480px) {
    :root { --container-max: 100%; }
    .hero-actions { flex-direction: column; }
    .hero-promo-box { max-width: 100%; }
    .slot-game-wrap { padding: 24px 16px; }
    .slot-reels { gap: 6px; }
    .slot-reel { width: 72px; height: 88px; }
    .slot-symbol { font-size: 34px; }
    .hdr-inner { gap: 8px; }
    .hdr-logo img {height: 32px;}
    .content-box { padding: 18px 16px; }
}
@media (max-width: 400px) {
.hdr-actions .btn--secondary {display: none;}
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.5s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
