
:root {
    --pu-primary: #00fbc8;
    --pu-danger: #ff2e09;
    --pu-bg: #323234;
    --pu-dark: #1a1a1c;
    --pu-card: #27272a;
    --pu-text: #f0f0f0;
    --pu-muted: #a0a0a8;
    --pu-border: rgba(255, 255, 255, 0.08);
    --pu-gold: #ffd700;
    --pu-success: #22c55e;
    --pu-warning: #f59e0b;
    --pu-info: #3b82f6;
    --pu-header: #000000;
    --pu-footer: #000000;
    --pu-radius: 12px;
    --pu-radius-sm: 6px;
    --pu-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --pu-transition: 0.25s ease;
    --gx91a: #0e0e10;
    --bz44c: 1.6rem;
    --unused-1: #ff6b35;
    --unused-2: #7c3aed;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--pu-bg);
    color: var(--pu-text);
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: #00e0b0;
}

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--pu-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--pu-primary);
    border-radius: 3px;
}

/* ============ PRELOADER ============ */
#pu-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--pu-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#pu-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pu-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 251, 200, 0.2);
    border-top-color: var(--pu-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ BUTTONS ============ */
.btn-pu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--pu-radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-pu:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-pu:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

.btn-login {
    background: var(--pu-primary);
    color: #000 !important;
    box-shadow: 0 0 12px rgba(0, 251, 200, 0.35);
}

.btn-login:hover {
    box-shadow: 0 0 20px rgba(0, 251, 200, 0.55);
    color: #000 !important;
}

.btn-register {
    background: var(--pu-danger);
    color: #fff !important;
    box-shadow: 0 0 12px rgba(255, 46, 9, 0.35);
}

.btn-register:hover {
    box-shadow: 0 0 20px rgba(255, 46, 9, 0.55);
    color: #fff !important;
}

.btn-outline-pu {
    background: transparent;
    color: var(--pu-primary) !important;
    border: 2px solid var(--pu-primary);
}

.btn-outline-pu:hover {
    background: var(--pu-primary);
    color: #000 !important;
}

/* ============ HEADER ============ */
#pu-header {
    background: var(--pu-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

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

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

.pu-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--pu-primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

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

.pu-nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pu-nav-links a {
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--pu-radius-sm);
    font-size: 0.9rem;
    transition: color var(--pu-transition), background var(--pu-transition);
}

.pu-nav-links a:hover {
    color: var(--pu-primary);
    background: rgba(255, 255, 255, 0.06);
}

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

.pu-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 251, 200, 0.08);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: var(--pu-primary);
    white-space: nowrap;
}

.pu-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pu-primary);
    animation: pulse-dot 1.5s infinite;
}

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

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

.pu-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--pu-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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

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

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

.pu-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.pu-mobile-menu ul li a {
    display: block;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid var(--pu-border);
    font-size: 1rem;
}

.pu-mobile-menu ul li a:hover {
    color: var(--pu-primary);
}

.pu-mobile-menu-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============ HERO ============ */
#pu-hero {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #0d0d0f 0%, #1a1a1c 40%, #222 100%);
    display: flex;
    align-items: center;
}

.pu-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/hero-p.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 0;
}

.pu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.pu-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 16px;
}

.pu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 251, 200, 0.12);
    border: 1px solid var(--pu-primary);
    color: var(--pu-primary);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    animation: fadeInDown 0.6s ease both;
}

.pu-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    animation: fadeInDown 0.7s ease both;
}

.pu-hero h1 span {
    color: var(--pu-primary);
}

.pu-hero-desc {
    font-size: 1.05rem;
    color: #ccc;
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
    animation: fadeInDown 0.8s ease both;
}

.pu-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInDown 0.9s ease both;
}

.pu-hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease both;
}

.pu-hero-stat {
    text-align: center;
}

.pu-hero-stat-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--pu-primary);
    display: block;
}

.pu-hero-stat-lbl {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============ SECTION COMMON ============ */
.pu-section {
    padding: 64px 0;
}

.pu-section-alt {
    background: rgba(0, 0, 0, 0.25);
}

.pu-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

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

.pu-section-subtitle {
    text-align: center;
    color: var(--pu-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.pu-section-divider {
    width: 56px;
    height: 3px;
    background: var(--pu-primary);
    border-radius: 2px;
    margin: 12px auto 36px;
}

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

.pu-procons-col {
    flex: 1;
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    padding: 24px;
    border: 1px solid var(--pu-border);
}

.pu-procons-col.pros {
    border-top: 3px solid var(--pu-success);
}

.pu-procons-col.cons {
    border-top: 3px solid var(--pu-danger);
}

.pu-procons-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pu-procons-title.pros-title {
    color: var(--pu-success);
}

.pu-procons-title.cons-title {
    color: var(--pu-danger);
}

.pu-procons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pu-procons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: #ddd;
    line-height: 1.5;
}

.pu-procons-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 2px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.pros .pu-procons-list li::before {
    background-color: rgba(34, 197, 94, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2322c55e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cons .pu-procons-list li::before {
    background-color: rgba(255, 46, 9, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%23ff2e09' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ============ JACKPOT ============ */
.pu-jackpot-wrap {
    background: linear-gradient(135deg, #0d0d0f, #1a1a1c);
    border-radius: var(--pu-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.25);
    position: relative;
}

.pu-jackpot-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pu-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pu-gold);
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        transform: translateY(100%) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120%) scale(1.5);
        opacity: 0;
    }
}

.pu-jackpot-inner {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    text-align: center;
}

.pu-jackpot-label {
    font-size: 0.85rem;
    color: var(--pu-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pu-jackpot-amount {
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 900;
    color: var(--pu-gold);
    letter-spacing: 2px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: jackpot-glow 2s ease-in-out infinite alternate;
}

@keyframes jackpot-glow {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.3);
    }
}

.pu-jackpot-sub {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 8px;
}

.pu-jackpot-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.pu-jackpot-timer-item {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    text-align: center;
}

.pu-jackpot-timer-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--pu-gold);
    display: block;
}

.pu-jackpot-timer-lbl {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

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

.pu-screenshot-item {
    flex: 1;
    border-radius: var(--pu-radius);
    overflow: hidden;
    border: 1px solid var(--pu-border);
    cursor: pointer;
    transition: transform var(--pu-transition), box-shadow var(--pu-transition);
    position: relative;
}

.pu-screenshot-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 251, 200, 0.15);
}

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

.pu-screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--pu-transition);
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

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

.pu-screenshot-overlay span {
    color: #fff;
    font-size: 0.85rem;
}

/* Lightbox */
.pu-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.pu-lightbox.open {
    display: flex;
}

.pu-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--pu-radius);
}

.pu-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

/* ============ SLOTS ============ */
.pu-slots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pu-slot-card {
    flex: 0 0 calc(16.666% - 14px);
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    overflow: hidden;
    border: 1px solid var(--pu-border);
    transition: transform var(--pu-transition), box-shadow var(--pu-transition);
    display: flex;
    flex-direction: column;
}

.pu-slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 251, 200, 0.3);
}

.pu-slot-img-wrap {
    position: relative;
    overflow: hidden;
}

.pu-slot-img-wrap img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.pu-slot-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--pu-danger);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.pu-slot-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pu-slot-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
}

.pu-slot-provider {
    font-size: 0.75rem;
    color: var(--pu-muted);
}

.pu-slot-card .btn-pu {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 8px;
}

/* ============ DEMO GAME ============ */
.pu-demo-wrap {
    background: var(--pu-dark);
    border-radius: var(--pu-radius);
    overflow: hidden;
    border: 1px solid var(--pu-border);
}

.pu-demo-header {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.pu-demo-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem;
}

.pu-demo-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.pu-demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.pu-demo-overlay-msg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 24px;
    z-index: 10;
}

.pu-demo-overlay-msg p {
    color: #ddd;
    font-size: 1rem;
    max-width: 400px;
}

/* ============ REVIEWS ============ */
.pu-reviews-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pu-review-card {
    flex: 1;
    min-width: 240px;
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    padding: 20px;
    border: 1px solid var(--pu-border);
    transition: transform var(--pu-transition);
}

.pu-review-card:hover {
    transform: translateY(-3px);
}

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

.pu-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--pu-primary);
}

.pu-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pu-review-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.92rem;
}

.pu-review-date {
    font-size: 0.76rem;
    color: var(--pu-muted);
}

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

.pu-stars svg {
    color: var(--pu-gold);
}

.pu-review-text {
    font-size: 0.88rem;
    color: #ccc;
    line-height: 1.6;
}

/* Review Form */
.pu-review-form-wrap {
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    padding: 28px;
    border: 1px solid var(--pu-border);
    margin-top: 32px;
}

.pu-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pu-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pu-form-group label {
    font-size: 0.88rem;
    color: var(--pu-muted);
}

.pu-form-group input,
.pu-form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--pu-radius-sm);
    padding: 10px 14px;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--pu-transition);
    width: 100%;
}

.pu-form-group input:focus,
.pu-form-group textarea:focus {
    outline: none;
    border-color: var(--pu-primary);
    background: rgba(0, 251, 200, 0.04);
}

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

.pu-form-success {
    display: none;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--pu-success);
    color: var(--pu-success);
    border-radius: var(--pu-radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    margin-top: 12px;
    text-align: center;
}

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

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

.pu-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--pu-primary);
}

.pu-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.pu-author-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.55;
}

.pu-author-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.pu-author-link {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    color: var(--pu-primary);
    border: 1px solid rgba(0, 251, 200, 0.2);
}

.pu-author-link:hover {
    background: rgba(0, 251, 200, 0.1);
}

/* ============ CONTENT BLOCK ============ */
.pu-content-block {
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    padding: 28px 32px;
    border: 1px solid var(--pu-border);
}

.pu-content-block h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 24px 0 12px;
    font-weight: 700;
}

.pu-content-block h3 {
    font-size: 1.2rem;
    color: var(--pu-primary);
    margin: 20px 0 10px;
    font-weight: 700;
}

.pu-content-block h4 {
    font-size: 1.05rem;
    color: #eee;
    margin: 16px 0 8px;
}

.pu-content-block p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 14px;
}

.pu-content-block ul, .pu-content-block ol {
    color: #ccc;
    padding-left: 22px;
    margin-bottom: 14px;
}

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

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

.pu-content-block strong {
    color: #fff;
}

.pu-content-block em {
    color: #ddd;
}

.pu-content-block blockquote {
    border-left: 3px solid var(--pu-primary);
    padding: 10px 16px;
    background: rgba(0, 251, 200, 0.05);
    margin: 16px 0;
    border-radius: 0 6px 6px 0;
    color: #bbb;
    font-style: italic;
}

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

.pu-content-block th {
    background: rgba(0, 251, 200, 0.1);
    color: var(--pu-primary);
    padding: 10px 14px;
    text-align: left;
    border: 1px solid rgba(0, 251, 200, 0.2);
    white-space: nowrap;
}

.pu-content-block td {
    padding: 9px 14px;
    text-align: left;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.pu-content-block tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.03);
}

.pu-content-block img {
    border-radius: var(--pu-radius-sm);
    margin: 12px 0;
}

.pu-content-block hr {
    border: none;
    border-top: 1px solid var(--pu-border);
    margin: 20px 0;
}

/* ============ FAQ ============ */
.pu-faq-item {
    background: var(--pu-card);
    border-radius: var(--pu-radius-sm);
    border: 1px solid var(--pu-border);
    margin-bottom: 8px;
    overflow: hidden;
}

.pu-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: background var(--pu-transition);
}

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

.pu-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-primary);
    transition: transform var(--pu-transition);
}

.pu-faq-item.open .pu-faq-icon {
    transform: rotate(180deg);
}

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

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

.pu-faq-answer-inner {
    padding: 0 20px 16px;
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============ FOOTER ============ */
#pu-footer {
    background: var(--pu-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0 0;
}

.pu-footer-top {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

.pu-footer-links a {
    color: #888;
    font-size: 0.88rem;
    transition: color var(--pu-transition);
}

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

.pu-footer-desc {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.pu-payment-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.78rem;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.pu-providers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pu-provider-badge {
    background: rgba(0, 251, 200, 0.06);
    border: 1px solid rgba(0, 251, 200, 0.15);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: #7ab;
    letter-spacing: 0.3px;
}

.pu-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 16px;
}

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

.pu-copyright {
    font-size: 0.8rem;
    color: #555;
}

.pu-legal {
    font-size: 0.75rem;
    color: #444;
    max-width: 640px;
    line-height: 1.55;
}

.pu-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: #666;
}

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

.pu-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 16px;
}

.pu-slider-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.pu-slider-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--pu-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background var(--pu-transition);
}

.pu-slider-btn:hover {
    background: rgba(0, 251, 200, 0.15);
    color: var(--pu-primary);
}

.pu-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

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

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

/* ============ BREADCRUMB ============ */
.pu-breadcrumb {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pu-breadcrumb a {
    color: var(--pu-muted);
    font-size: 0.83rem;
}

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

.pu-breadcrumb span {
    color: #555;
    font-size: 0.83rem;
}

.pu-breadcrumb-sep {
    color: #444;
    font-size: 0.8rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pu-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pu-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.pu-animate-delay-1 {
    transition-delay: 0.1s;
}

.pu-animate-delay-2 {
    transition-delay: 0.2s;
}

.pu-animate-delay-3 {
    transition-delay: 0.3s;
}

/* ============ MISC / UNUSED for unique ============ */
.wp-caption {
    border: 1px solid #ccc;
    padding: 4px;
    display: none;
}

.widget_recent_comments {
    display: none;
}

.wp-block-separator {
    border: none;
    border-top: 1px solid #eee;
    display: none;
}

.alignleft, .alignright {
    display: none;
}

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

.elementor-kit-8 {
    display: none;
}

.e-con-inner {
    display: none;
}

.site-branding {
    display: none;
}

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

.gx91a-unused {
    color: var(--gx91a);
    display: none;
}

.bz44c-unused {
    font-size: var(--bz44c);
    display: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .pu-procons-wrap {
        flex-direction: column;
    }

    .pu-slots-grid {
        flex-wrap: wrap;
    }

    .pu-slot-card {
        flex: 0 0 calc(33.333% - 11px);
    }

    .pu-footer-col {
        min-width: 140px;
    }
}

@media (max-width: 767.98px) {
    .pu-nav-links {
        display: none;
    }

    .pu-burger {
        display: flex;
    }

    #pu-header .pu-header-actions .btn-pu {
        padding: 7px 14px;
        font-size: 0.82rem;
    }

    .pu-hero {
        min-height: 400px;
    }

    .pu-hero-content {
        padding: 40px 0;
    }

    .pu-screenshots-grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .pu-screenshot-item {
        flex: 0 0 80vw;
    }

    .pu-slots-grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .pu-slot-card {
        flex: 0 0 160px;
    }

    .pu-reviews-grid {
        flex-direction: column;
    }

    .pu-review-card {
        min-width: auto;
    }

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

    #pu-widget {
        left: 16px;
        right: 16px;
        transform: none;
        bottom: 12px;
        padding: 10px 14px;
    }

    .pu-footer-top {
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .pu-slot-card {
        flex: 0 0 140px;
    }

    .pu-jackpot-timer {
        flex-wrap: wrap;
    }

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

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

    .pu-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

.pu-demo-iframe-wrap {
    position: relative;
    width: 100%;
    height: 600px;
}

.pu-demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .pu-demo-iframe-wrap {
        height: calc(100vh - 160px);
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .pu-demo-iframe-wrap {
        height: calc(100vh - 120px);
        min-height: 480px;
    }
}

.pu-demo-wrap {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--border-color, rgba(255, 255, 255, .12));
    border-radius: 18px;
    background: var(--card-bg, #1a2236);
}

.pu-demo-iframe-wrap {
    position: relative;
    width: 100%;
    height: 560px;
    background: #0b1020;
}

.pu-demo-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
    touch-action: manipulation;
}

.pu-demo-overlay-msg {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    text-align: center;
    background: rgba(0, 0, 0, .72);
}

.pu-demo-overlay-msg.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pu-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, .12));
}

@media (max-width: 767px) {
    #pu-demo {
        min-height: 100svh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    #pu-demo > .container {
        width: 100%;
        max-width: 100%;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        padding: 18px 14px 20px;
    }

    .pu-demo-wrap {
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 14px;
    }

    .pu-demo-header {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
    }

    .pu-demo-header .btn-pu {
        width: 100%;
    }

    .pu-demo-iframe-wrap {
        flex: 1;
        height: auto;
        min-height: 0;
        border-radius: 0 0 14px 14px;
        overflow: hidden;
        touch-action: manipulation;
    }

    .pu-demo-overlay-msg {
        pointer-events: none;
    }

    .pu-demo-overlay-msg .btn-pu,
    #pu-demo-play {
        position: relative;
        z-index: 5;
        width: 100%;
        pointer-events: auto;
    }
}

.pu-demo-overlay-msg.is-hidden {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
}

.pu-demo-iframe-wrap iframe {
    z-index: 1;
    pointer-events: auto !important;
}

.pu-demo-overlay-msg {
    z-index: 2;
}

@media (max-width: 767px) {
    .pu-demo-iframe-wrap {
        height: 100svh;
        min-height: 620px;
        position: relative;
    }

    .pu-demo-overlay-msg.is-hidden {
        display: none !important;
    }
}

.pu-game-section {
    padding: 64px 0;
    background: #11131f;
}

.pu-game-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.pu-game-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.pu-game-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.pu-game-title span {
    color: #00fbc8;
}

.pu-game-subtitle {
    margin: 0;
    color: #aeb6c8;
    font-size: 16px;
}

.pu-game-money-btn,
.pu-game-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    background: #ff2e09;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.pu-game-money-btn {
    padding: 12px 20px;
    white-space: nowrap;
}

.pu-game-play-btn {
    padding: 14px 28px;
    font-size: 16px;
}

.pu-game-money-btn:hover,
.pu-game-play-btn:hover {
    background: #e12708;
    color: #fff;
    transform: translateY(-2px);
}

.pu-game-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(0, 251, 200, .28);
    border-radius: 20px;
    background: #05070d;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
}

.pu-game-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: auto;
    touch-action: manipulation;
}

.pu-game-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px;
    text-align: center;
    background: rgba(5, 7, 13, .86);
}

.pu-game-overlay.is-hidden {
    display: none !important;
    pointer-events: none !important;
}

.pu-game-play-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 251, 200, .14);
    border: 1px solid rgba(0, 251, 200, .35);
    color: #00fbc8;
    font-size: 30px;
}

.pu-game-overlay p {
    max-width: 420px;
    margin: 0;
    color: #e8ecf4;
    font-size: 16px;
}

@media (max-width: 767px) {
    .pu-game-section {
        min-height: 100svh;
        display: flex;
        padding: 0;
    }

    .pu-game-container {
        width: 100%;
        min-height: 100svh;
        display: flex;
        flex-direction: column;
        padding: 16px 12px 18px;
    }

    .pu-game-head {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 14px;
    }

    .pu-game-title {
        font-size: 26px;
    }

    .pu-game-subtitle {
        font-size: 14px;
    }

    .pu-game-money-btn {
        width: 100%;
        min-height: 46px;
    }

    .pu-game-box {
        flex: 1;
        min-height: 0;
        aspect-ratio: auto;
        border-radius: 14px;
    }

    .pu-game-overlay {
        padding: 18px;
    }

    .pu-game-play-btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 767px) {
    .demo-section-zx9k4m7p {
        min-height: 100svh;
        display: flex;
        align-items: stretch;
        padding: 0;
    }

    .demo-section-zx9k4m7p > .container-fluid.vh8p3k1x {
        width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 100svh;
        padding: 18px 14px 20px;
    }

    .demo-wrapper-lv8k3m2p {
        flex: 1;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .demo-iframe-container-nz5k2m8p {
        flex: 1;
        width: 100%;
        padding-bottom: 0;
        min-height: 0;
        border-radius: 14px;
    }

    .demo-iframe-qx7k4m9p {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .demo-px2k8m5t {
        margin-top: 14px;
    }

    .btn-demo-play-kz9m3p7x {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 767px) {
    .demo-iframe-container-nz5k2m8p {
        touch-action: manipulation;
    }

    .demo-iframe-qx7k4m9p {
        pointer-events: auto;
        touch-action: manipulation;
    }

    .demo-overlay-px2k8m5t {
        pointer-events: none;
    }

    .demo-px2k8m5t {
        position: relative;
        z-index: 5;
        pointer-events: auto;
    }
}

.fixed-widget-bottom-zx9k4m2p {
    pointer-events: none;
}

.fixed-widget-bottom-zx9k4m2p * {
    pointer-events: auto;
}


.demo-wrapper-lv8k3m2p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.demo-description-mx7k9p4t {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.demo-iframe-container-nz5k2m8p {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(145deg, #2d1b5e 0%, #3e2875 100%);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.demo-iframe-qx7k4m9p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.demo-overlay-px2k8m5t {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
}

.btn-demo-play-kz9m3p7x {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-btn-signup);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-demo-play-kz9m3p7x:hover {
    background: #ffe092;
    transform: scale(1.1);
}