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

:root {
    --clr-bg: #121212;
    --clr-header: #1E1E2F;
    --clr-primary: #FF5722;
    --clr-secondary: #1E1E2F;
    --clr-text: #E8E8F0;
    --clr-text-muted: #9898B0;
    --clr-border: rgba(255, 255, 255, 0.08);
    --clr-card: #1A1A2E;
    --clr-card-hover: #22223A;
    --clr-gold: #FFB800;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.22s ease;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-btn: 0 4px 18px rgba(255, 87, 34, 0.35);
}

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

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

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

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

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

.x9f2a {
    display: none;
}

.qw7bc {
    visibility: hidden;
    position: absolute;
}

.r3m8n {
    overflow: hidden;
    height: 0;
}

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

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 68px;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.header-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.header-logo .logo-text span {
    color: var(--clr-primary);
}

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

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

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

.header-nav a svg {
    flex-shrink: 0;
}

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

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

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse-dot 1.8s infinite;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
}

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

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

.btn-primary:hover {
    background: #ff6b3d;
    box-shadow: 0 6px 24px rgba(255, 87, 34, 0.5);
}

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

.btn-secondary:hover {
    background: #272740;
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

/* === BURGER === */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

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

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

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

.mobile-menu {
    display: none;
    background: var(--clr-header);
    border-top: 1px solid var(--clr-border);
    padding: 16px 0;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 16px;
}

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

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a1a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/spinsamurai-hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(18, 18, 18, 0.96) 38%, rgba(18, 18, 18, 0.55) 70%, rgba(18, 18, 18, 0.2) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.3);
    color: var(--clr-primary);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    text-wrap: balance;
}

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

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

.hero-bonus-tile {
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin-bottom: 28px;
    display: inline-block;
}

.hero-bonus-tile .bonus-amount {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1;
}

.hero-bonus-tile .bonus-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.hero-bonus-tile .bonus-spins {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin-top: 6px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

/* === SECTION COMMON === */
.section-block {
    padding: 72px 0;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--clr-text-muted);
    text-align: center;
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* === ADVANTAGES === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-card);
}

.adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 87, 34, 0.2);
}

.adv-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 87, 34, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--clr-primary);
}

.adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* === JACKPOTS === */
.jackpots-section {
    background: #0e0e1e;
}

.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.jackpot-card {
    background: linear-gradient(135deg, #1A1A2E 0%, #22223A 100%);
    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
}

.jackpot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 184, 0, 0.12);
}

.jackpot-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-gold);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.jackpot-game {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-top: 8px;
}

.jackpot-badge {
    display: inline-block;
    background: rgba(255, 87, 34, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(255, 87, 34, 0.3);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 10px;
    margin-top: 10px;
}

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

.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/10;
    transition: transform var(--transition), box-shadow var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.tournament-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tournament-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 87, 34, 0.2);
}

.tournament-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 87, 34, 0.12);
    color: var(--clr-primary);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

.tournament-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.tournament-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.tournament-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.tournament-prize {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.tournament-timer {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-display {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
}

/* === SLOT MINI GAME === */
.slot-section {
    background: #0e0e1e;
}

.slot-machine-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid rgba(255, 184, 0, 0.18);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 0 48px rgba(255, 184, 0, 0.07), var(--shadow-card);
}

.slot-title-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 22px;
}

.slot-reels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.slot-reel {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    background: #111125;
    border: 2px solid rgba(255, 184, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: border-color var(--transition);
}

.slot-reel.spinning {
    animation: reel-spin 0.12s steps(1) infinite;
    border-color: rgba(255, 184, 0, 0.4);
}

@keyframes reel-spin {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.slot-result-msg {
    min-height: 52px;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
}

.slot-win-msg {
    color: var(--clr-gold);
    animation: fade-in-up 0.35s ease;
}

.slot-lose-msg {
    color: var(--clr-text-muted);
}

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

.slot-win-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    animation: fade-in-up 0.35s ease;
}

.slot-win-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-gold);
}

.slot-win-label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.slot-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.slot-bet-info {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 14px;
}

/* === CONTENT/REVIEW === */
.review-section {
    padding: 72px 0;
}

.review-author-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 36px;
    box-shadow: var(--shadow-card);
}

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

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

.review-author-info p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.review-author-info a {
    color: var(--clr-primary);
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
}

.review-author-info a:hover {
    text-decoration: underline;
}

.content-review {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--clr-text);
}

.content-review h2,
.content-review h3,
.content-review h4 {
    color: #fff;
    font-weight: 700;
    margin: 1.6em 0 0.6em;
    line-height: 1.3;
}

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

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

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

.content-review p {
    margin-bottom: 1em;
}

.content-review a {
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-review a:hover {
    opacity: 0.85;
}

.content-review ul,
.content-review ol {
    padding-left: 1.4em;
    margin-bottom: 1em;
}

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

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

.content-review li {
    margin-bottom: 0.4em;
    padding-left: 0.3em;
}

.content-review blockquote {
    border-left: 3px solid var(--clr-primary);
    padding: 12px 20px;
    background: rgba(255, 87, 34, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.2em 0;
    font-style: italic;
    color: var(--clr-text-muted);
}

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

.content-review em {
    color: var(--clr-text-muted);
}

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

.content-review table th,
.content-review table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

.content-review table th {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
}

.content-review table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.content-review img {
    border-radius: var(--radius-sm);
    margin: 1em 0;
    max-width: 100%;
}

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

.content-review code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: monospace;
}

.content-review pre {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
    margin: 1.2em 0;
}

/* === FAQ === */
.faq-section {
    background: #0e0e1e;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.faq-item.is-open {
    border-color: rgba(255, 87, 34, 0.25);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--clr-primary);
    transition: transform 0.25s;
}

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

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

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

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

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

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

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.footer-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo .logo-text span {
    color: var(--clr-primary);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 280px;
}

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

.footer-country svg {
    flex-shrink: 0;
}

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

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

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

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

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    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);
}

.social-link:hover {
    background: rgba(255, 87, 34, 0.15);
    color: var(--clr-primary);
    border-color: rgba(255, 87, 34, 0.3);
}

.footer-divider {
    height: 1px;
    background: var(--clr-border);
    margin-bottom: 28px;
}

.footer-logos-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo-badge {
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
}

.footer-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid var(--clr-border);
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 640px;
}

.footer-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* === STICKY WIDGET === */
.sticky-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    background: linear-gradient(135deg, #1E1E2F 0%, #2a1a0e 100%);
    border: 1px solid rgba(255, 87, 34, 0.35);
    border-radius: var(--radius-lg);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 87, 34, 0.1);
    min-width: 340px;
    max-width: 96vw;
    animation: slide-up 0.5s 1.5s both;
}

@keyframes slide-up {
    from {
        transform: translateX(-50%) translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.widget-promo-code {
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.widget-promo-code:hover {
    background: rgba(255, 255, 255, 0.1);
}

.widget-text {
    flex: 1;
    min-width: 0;
}

.widget-text .w-bonus {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

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

.widget-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
}

/* === INFO PAGE === */
.info-page-content {
    padding: 56px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

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

.info-page-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 1.8em 0 0.6em;
}

.info-page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 1.4em 0 0.5em;
}

.info-page-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1em;
}

.info-page-content ul, .info-page-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.info-page-content ul {
    list-style: disc;
}

.info-page-content ol {
    list-style: decimal;
}

.info-page-content li {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 0.4em;
}

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

.info-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    overflow-x: auto;
    display: block;
}

.info-page-content table th,
.info-page-content table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.info-page-content table th {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
}

/* Slot reels win glow */
.slot-reel.won {
    border-color: var(--clr-gold);
    box-shadow: 0 0 16px rgba(255, 184, 0, 0.25), inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Slider controls */
.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 30, 47, 0.9);
    border: 1px solid var(--clr-border);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
}

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

.slider-prev {
    left: 8px;
}

.slider-next {
    right: 8px;
}

/* Transitions / animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* WP-style compatibility hooks (unused, layout layer) */
.wp-block-group {
    display: block;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.wp-caption {
    display: inline-block;
}

.wp-caption-text {
    font-size: 0.8em;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

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

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

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

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-bonus-tile .bonus-amount {
        font-size: 1.5rem;
    }

    .section-block {
        padding: 52px 0;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .slot-machine-wrap {
        padding: 24px 18px;
    }

    .slot-reel {
        width: 72px;
        height: 72px;
        font-size: 1.9rem;
    }

    .sticky-widget {
        bottom: 12px;
        min-width: 0;
        width: calc(100% - 24px);
        border-radius: var(--radius-md);
    }
}

@media (max-width: 540px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .review-author-card {
        flex-direction: column;
    }

    .slot-reels {
        gap: 8px;
    }

    .slot-reel {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .content-review table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.vccs {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
}

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

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

.vccs h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
    margin: 42px 0 20px;
}

.vccs h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 34px 0 18px;
}

.vccs h4 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 16px;
}

.vccs p {
    margin: 0 0 20px;
    color: var(--clr-text-muted);
    font-size: 17px;
    line-height: 1.9;
}

.vccs strong {
    color: #fff;
    font-weight: 700;
}

.vccs ul,
.vccs ol {
    margin: 24px 0;
    padding-left: 26px;
}

.vccs li {
    margin-bottom: 12px;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.vccs blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 5px solid var(--clr-primary);
    background: rgba(255, 255, 255, .04);
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.vccs a {
    color: var(--clr-primary);
    text-decoration: none;
}

.vccs a:hover {
    text-decoration: underline;
}

.vccs table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #17172a;
    border-radius: 18px;
    overflow: hidden;
}

.vccs th {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
}

.vccs td {
    padding: 15px 20px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 15px;
}

.vccs tr:hover td {
    background: rgba(255, 255, 255, .03);
}

@media (max-width: 768px) {

    .vccs {
        margin: 28px auto;
        padding: 18px;
        border-radius: 18px;
    }

    .vccs h2 {
        font-size: 25px;
        margin: 28px 0 16px;
    }

    .vccs h3 {
        font-size: 21px;
        margin: 24px 0 14px;
    }

    .vccs h4 {
        font-size: 18px;
    }

    .vccs p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .vccs ul,
    .vccs ol {
        padding-left: 20px;
        margin: 18px 0;
    }

    .vccs li {
        font-size: 15px;
    }

    .vccs blockquote {
        padding: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .vccs table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 14px;
    }

    .vccs tbody,
    .vccs thead {
        display: table;
        width: 100%;
        min-width: 650px;
    }

    .vccs th,
    .vccs td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .vccs table::-webkit-scrollbar {
        height: 7px;
    }

    .vccs table::-webkit-scrollbar-thumb {
        background: var(--clr-primary);
        border-radius: 999px;
    }

}