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

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

:root {
    --color-bg: #0d0d0d;
    --color-header: #141414;
    --color-footer: #141414;
    --color-btn-orange: #ff6b00;
    --color-btn-orange-hover: #e05e00;
    --color-btn-green: #22c55e;
    --color-btn-green-hover: #16a34a;
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;
    --color-border: #2a2a2a;
    --color-card: #1a1a1a;
    --color-card2: #181818;
    --color-accent: #ff6b00;
    --font-main: 'Poppins', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

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

.btn--orange:hover {
    background: var(--color-btn-orange-hover);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.45);
}

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

.btn--green:hover {
    background: var(--color-btn-green-hover);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn--lg {
    padding: 15px 34px;
    font-size: 16px;
    border-radius: 10px;
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.3;
}

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

.section-head {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.header-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.header-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition), background var(--transition);
}

.header-nav a:hover,
.header-nav a.active {
    color: #fff;
    background: rgba(255, 107, 0, 0.12);
}

.header-nav a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

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

.online-counter .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-btn-green);
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 6px;
    transition: background var(--transition);
    flex-shrink: 0;
}

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

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

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

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

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

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: var(--color-header);
    border-top: 1px solid var(--color-border);
    padding: 12px 20px 16px;
}

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

.mobile-nav a {
    color: #ccc;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

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

.mobile-nav a svg {
    width: 17px;
    height: 17px;
}

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

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.6) 60%, rgba(13, 13, 13, 0.1) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.18);
    border: 1px solid rgba(255, 107, 0, 0.35);
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

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

.hero-desc {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-accent);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}

.hero-dots button.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ===== SECTIONS ===== */
.section-wrap {
    padding: 64px 0;
}

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

/* ===== JACKPOTS ===== */
.jackpots-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.jackpot-card {
    flex: 1;
    min-width: 260px;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.18);
}

.jackpot-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.07;
}

.jackpot-card--gold::before {
    background: #ffd700;
}

.jackpot-card--silver::before {
    background: #c0c0c0;
}

.jackpot-card--bronze::before {
    background: #cd7f32;
}

.jackpot-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jackpot-badge--gold {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.jackpot-badge--silver {
    background: rgba(192, 192, 192, 0.12);
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.25);
}

.jackpot-badge--bronze {
    background: rgba(205, 127, 50, 0.15);
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.jackpot-title {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jackpot-amount {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
    transition: all 0.5s ease;
}

.jackpot-amount--gold {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.jackpot-amount--silver {
    color: #e0e0e0;
}

.jackpot-amount--bronze {
    color: #cd7f32;
}

.jackpot-players {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jackpot-player {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.jackpot-player-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.jackpot-player-name {
    color: #ccc;
    flex: 1;
}

.jackpot-player-win {
    color: var(--color-btn-green);
    font-weight: 600;
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
    display: flex;
    gap: 16px;
}

.screenshot-item {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    aspect-ratio: 16/9;
    background: var(--color-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}

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

/* ===== VIDEO ===== */
.video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #000;
    position: relative;
    aspect-ratio: 16/9;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== DEMO ===== */
.demo-wrap {
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    background: #000;
    position: relative;
}

.demo-frame {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

.demo-bar {
    background: var(--color-card);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
}

.demo-bar-info {
    font-size: 14px;
    color: var(--color-text-muted);
}

.demo-bar-info strong {
    color: #fff;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

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

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #ffd700;
    color: #ffd700;
}

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

/* ===== REVIEW FORM ===== */
.review-form-wrap {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    max-width: 600px;
    margin: 0 auto;
}

.review-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group textarea {
    background: #111;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

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

.form-success {
    display: none;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--color-btn-green);
    font-size: 15px;
    text-align: center;
    margin-top: 14px;
}

.form-success.show {
    display: block;
}

/* ===== AUTHOR ===== */
.author-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.author-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-accent);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.author-role {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

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

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

.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: background var(--transition), color var(--transition);
}

.author-social-link:hover {
    background: rgba(255, 107, 0, 0.15);
    color: #fff;
    border-color: rgba(255, 107, 0, 0.4);
}

.author-social-link svg {
    width: 15px;
    height: 15px;
}

/* ===== GAME INFO TABLE ===== */
.game-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.game-info-table th,
.game-info-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.game-info-table th {
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    width: 42%;
}

.game-info-table td {
    color: var(--color-text);
    background: var(--color-card);
}

.game-info-table tr:last-child th,
.game-info-table tr:last-child td {
    border-bottom: none;
}

.game-info-table tr:hover td {
    background: #1e1e1e;
}

/* ===== PROS/CONS ===== */
.proscons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pros-card, .cons-card {
    flex: 1;
    min-width: 240px;
    background: var(--color-card);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    border: 1px solid var(--color-border);
}

.pros-card {
    border-top: 3px solid var(--color-btn-green);
}

.cons-card {
    border-top: 3px solid #ef4444;
}

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

.pros-card .proscons-title {
    color: var(--color-btn-green);
}

.cons-card .proscons-title {
    color: #ef4444;
}

.proscons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.proscons-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.proscons-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pros-card .proscons-list li::before {
    background: rgba(34, 197, 94, 0.18);
    color: var(--color-btn-green);
    content: '✓';
}

.cons-card .proscons-list li::before {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    content: '✕';
}

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

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

.faq-item.open {
    border-color: rgba(255, 107, 0, 0.4);
}

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

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

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-footer);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.footer-top {
    padding: 48px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}

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

.footer-logo-wrap span {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.footer-logo-wrap em {
    color: var(--color-accent);
    font-style: normal;
}

.footer-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

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

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

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

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

.payment-badge {
    background: #222;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: border-color var(--transition), color var(--transition);
}

.payment-badge:hover {
    border-color: rgba(255, 107, 0, 0.4);
    color: #fff;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.trust-badge {
    background: #222;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

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

.footer-provider img {
    height: 22px;
    width: auto;
    filter: brightness(0.6);
    transition: filter var(--transition);
}

.footer-provider img:hover {
    filter: brightness(1);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 18px 0;
}

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

.footer-copyright {
    font-size: 12px;
    color: #555;
}

.footer-legal {
    font-size: 11px;
    color: #444;
    line-height: 1.5;
    max-width: 600px;
}

.footer-age {
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 800;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 14px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 19px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 22px 0 10px;
}

.content-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #d0d0d0;
    margin: 18px 0 8px;
}

.content-block p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.content-block ul,
.content-block ol {
    margin: 10px 0 16px 20px;
}

.content-block ul li,
.content-block ol li {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 6px;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 16px 0;
}

.content-block th,
.content-block td {
    padding: 11px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.content-block th {
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 13px;
}

.content-block td {
    background: var(--color-card);
    color: var(--color-text-muted);
}

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

/* ===== TECHNICAL PAGE ===== */
.tech-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 0 60px;
}

.tech-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.tech-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #e0e0e0;
    margin: 30px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.tech-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #d0d0d0;
    margin: 20px 0 8px;
}

.tech-content p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.tech-content ul,
.tech-content ol {
    margin: 10px 0 16px 22px;
}

.tech-content li {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 7px;
}

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

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
}

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

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

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

.breadcrumb span {
    color: #555;
}

/* ===== WP DECOYS ===== */
#wpadminbar {
    display: none !important;
}

.elementor-kit-0 {
}

.wp-post-image {
}

.entry-meta {
}

.post-thumbnail {
}

.attachment-post-thumbnail {
}

.wp-caption {
}

.alignleft {
}

.alignright {
}

.aligncenter {
}

.size-full {
}

.size-medium {
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

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

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

    .burger-btn {
        display: flex;
    }

    .online-counter {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

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

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

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

    .screenshots-grid {
        display: none;
    }

    .screenshots-swiper {
        display: flex !important;
    }

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

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-socials {
        justify-content: center;
    }

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

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .demo-frame {
        height: 340px;
    }

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

    .bottom-widget {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .widget-text {
        font-size: 12px;
    }

    .game-info-table {
        font-size: 13px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

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

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

    .header-right .btn {
        padding: 9px 14px;
        font-size: 13px;
    }

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

/* ===== SCREENSHOTS SWIPER (mobile) ===== */
.screenshots-swiper {
    display: none;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    position: relative;
}

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

.screenshots-swiper-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-card);
}

.screenshots-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

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

.swiper-dot.active {
    background: var(--color-accent);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 20px 0;
}

.highlight-box p {
    color: #e0e0e0 !important;
    margin: 0;
}

/* ===== RTP BADGE ===== */
.rtp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--color-btn-green);
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
}

.yhjsvd {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .45);
    overflow: hidden;
}

.yhjsvd h1 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.yhjsvd h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    margin: 42px 0 16px;
}

.yhjsvd h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #f1f1f1;
    margin: 28px 0 14px;
}

.yhjsvd p {
    font-size: 16px;
    line-height: 1.85;
    color: #c7c7c7;
    margin-bottom: 18px;
}

.yhjsvd ul,
.yhjsvd ol {
    margin: 0 0 24px 24px;
}

.yhjsvd li {
    font-size: 15px;
    line-height: 1.75;
    color: #d2d2d2;
    margin-bottom: 10px;
}

.yhjsvd strong,
.yhjsvd b {
    color: #fff;
    font-weight: 700;
}

.yhjsvd a {
    color: #ff6b00;
    overflow-wrap: anywhere;
    word-break: break-word;
    transition: .25s ease;
}

.yhjsvd a:hover {
    color: #ff944d;
}

.yhjsvd table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    overflow: hidden;
}

.yhjsvd th {
    background: rgba(255, 107, 0, .12);
    color: #ff6b00;
    padding: 16px;
    font-size: 14px;
    text-align: left;
}

.yhjsvd td {
    background: #1d1d1d;
    color: #d0d0d0;
    padding: 16px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.yhjsvd blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: #1e1e1e;
    border-left: 4px solid #ff6b00;
    border-radius: 16px;
    color: #d7d7d7;
}

@media (max-width: 991px) {
    .yhjsvd {
        padding: 30px 24px;
        border-radius: 24px;
        margin: 28px auto;
    }

    .yhjsvd h1 {
        font-size: 36px;
    }

    .yhjsvd h2 {
        font-size: 26px;
    }

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

@media (max-width: 767px) {
    .yhjsvd {
        width: 100%;
        max-width: 100%;
        margin: 18px auto;
        padding: 20px 14px;
        border-radius: 18px;
    }

    .yhjsvd h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .yhjsvd h2 {
        font-size: 22px;
        line-height: 1.35;
        margin: 28px 0 12px;
    }

    .yhjsvd h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

    .yhjsvd p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .yhjsvd ul,
    .yhjsvd ol {
        margin: 0 0 18px 18px;
    }

    .yhjsvd li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .yhjsvd a {
        display: inline-block;
        max-width: 100%;
        font-size: 13px;
        word-break: break-all;
    }

    .yhjsvd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .yhjsvd th,
    .yhjsvd td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .yhjsvd blockquote {
        padding: 16px;
        border-radius: 12px;
    }
}

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

    .yhjsvd h1 {
        font-size: 24px;
    }

    .yhjsvd h2 {
        font-size: 20px;
    }

    .yhjsvd h3 {
        font-size: 17px;
    }

    .yhjsvd p,
    .yhjsvd li {
        font-size: 13.5px;
    }
}