
:root {
    --color-primary: #00fbc8;
    --color-secondary: #ff2e09;
    --color-bg: #323234;
    --color-header: #000000;
    --color-footer: #000000;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;
    --color-card: #1e1e20;
    --color-card-hover: #2a2a2c;
    --color-border: #3a3a3c;
    --color-success: #00c896;
    --color-warning: #ffb300;
    --color-error: #ff2e09;
    --font-main: 'PT Sans', sans-serif;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.3s ease;
}

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

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 {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition);
}

a:hover {
    color: #00d4aa;
}

ul, ol {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h2 {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--color-primary);
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ==================== LAYOUT ==================== */
.pu-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.pu-section {
    padding: 56px 0;
}

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

.pu-section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.pu-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

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

.pu-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.pu-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

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

.pu-nav a {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.pu-nav a:hover {
    color: var(--color-primary);
    background: rgba(0, 251, 200, 0.08);
}

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

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

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

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

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

.pu-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.pu-mobile-menu {
    display: none;
    background: #111111;
    padding: 16px;
    border-top: 1px solid #222;
}

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

.pu-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.pu-mobile-nav a {
    color: #cccccc;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: block;
    transition: color var(--transition), background var(--transition);
}

.pu-mobile-nav a:hover {
    color: var(--color-primary);
    background: rgba(0, 251, 200, 0.08);
}

.btn-pu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-pu:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

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

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

.btn-login:hover {
    background: rgba(0, 251, 200, 0.1);
    color: var(--color-primary);
}

.btn-register {
    background: var(--color-secondary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 46, 9, 0.35);
}

.btn-register:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #00d4aa);
    color: #000000;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 251, 200, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 22px rgba(0, 251, 200, 0.5);
    color: #000000;
}

.btn-danger {
    background: linear-gradient(135deg, var(--color-secondary), #e02800);
    color: #ffffff;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(255, 46, 9, 0.35);
}

.btn-danger:hover {
    box-shadow: 0 6px 22px rgba(255, 46, 9, 0.5);
    color: #ffffff;
}

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

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius);
}

/* ==================== HERO ==================== */
.pu-hero {
    position: relative;
    background: var(--color-header);
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pu-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/hero-pinup-casino.png') center/cover no-repeat;
    opacity: 0.25;
}

.pu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(50, 50, 52, 0.7) 100%);
}

.pu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.pu-hero-text h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.15;
}

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

.pu-hero-text p {
    font-size: 1.05rem;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.7;
}

.pu-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

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

.pu-badge-primary {
    background: rgba(0, 251, 200, 0.12);
    border: 1px solid rgba(0, 251, 200, 0.3);
    color: var(--color-primary);
}

.pu-badge-warning {
    background: rgba(255, 179, 0, 0.12);
    border: 1px solid rgba(255, 179, 0, 0.3);
    color: var(--color-warning);
}

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

.pu-hero-visual {
    display: flex;
    justify-content: center;
}

.pu-hero-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    max-width: 320px;
    width: 100%;
}

.pu-hero-bonus-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pu-hero-bonus-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pu-hero-bonus-sub {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 20px;
}

/* ==================== PROMO CODE BLOCK ==================== */
.pu-promo-section {
    background: linear-gradient(180deg, #1a1a1c 0%, var(--color-bg) 100%);
    padding: 56px 0;
}

.pu-promo-card {
    background: var(--color-card);
    border: 2px solid rgba(0, 251, 200, 0.25);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 251, 200, 0.08);
    position: relative;
    overflow: hidden;
}

.pu-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #00d4aa);
}

.pu-promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.pu-promo-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.pu-promo-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pu-status-active {
    background: rgba(0, 200, 150, 0.15);
    border: 1px solid rgba(0, 200, 150, 0.3);
    color: #00c896;
}

.pu-status-dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.pu-promo-code-box {
    background: #0d0d0e;
    border: 1.5px dashed rgba(0, 251, 200, 0.4);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.pu-promo-code-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--color-primary);
    font-family: monospace;
}

.pu-promo-timer {
    font-size: 0.8rem;
    color: var(--color-warning);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

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

.pu-copy-feedback {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: 8px;
    min-height: 18px;
    transition: opacity var(--transition);
}

/* ==================== PROS CONS ==================== */
.pu-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pu-pros-card, .pu-cons-card {
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--color-border);
}

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

.pu-cons-card {
    border-top: 3px solid var(--color-secondary);
}

.pu-pros-title, .pu-cons-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.pu-pros-list li, .pu-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    line-height: 1.5;
    color: #dddddd;
}

.pu-pros-list li:last-child, .pu-cons-list li:last-child {
    border-bottom: none;
}

.pu-pros-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pu-cons-list li::before {
    content: '✗';
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==================== SCREENSHOTS ==================== */
.pu-screenshots-section {
    background: #1a1a1c;
}

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

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

.pu-screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

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

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

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

.pu-screenshot-overlay span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border: 1.5px solid white;
    border-radius: 20px;
}

/* ==================== SLIDER ==================== */
.pu-slider-wrap {
    position: relative;
    overflow: hidden;
}

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

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

.pu-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    padding: 0;
}

.pu-slider-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.pu-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-border);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background var(--transition);
    font-size: 1rem;
}

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

.pu-slider-btn-prev {
    left: 4px;
}

.pu-slider-btn-next {
    right: 4px;
}

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

.pu-tournament-card {
    background: var(--color-card);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.pu-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pu-tournament-card-header {
    background: linear-gradient(135deg, #111113 0%, #1e1e20 100%);
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.pu-tournament-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.pu-tournament-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.pu-tournament-prize-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pu-tournament-prize {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-warning);
}

.pu-tournament-card-body {
    padding: 16px 20px 20px;
}

.pu-tournament-desc {
    font-size: 0.875rem;
    color: #bbbbbb;
    line-height: 1.6;
    margin-bottom: 14px;
}

.pu-tournament-timer-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.pu-countdown {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.pu-countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #0d0d0e;
    border-radius: 4px;
    padding: 6px 10px;
    min-width: 48px;
}

.pu-countdown-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.pu-countdown-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.pu-countdown-sep {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==================== SLOT MACHINE ==================== */
.pu-slot-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #1a1a1c 100%);
}

.pu-slot-machine {
    background: var(--color-card);
    border: 2px solid rgba(0, 251, 200, 0.2);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 251, 200, 0.06);
}

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

.pu-slot-reel {
    width: 90px;
    height: 90px;
    background: #0d0d0e;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: transform 0.1s;
}

.pu-slot-reel.spinning {
    animation: reel-spin 0.15s ease infinite;
}

@keyframes reel-spin {
    0% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(-2px);
    }
}

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

.pu-slot-spin-btn {
    background: linear-gradient(135deg, var(--color-primary), #00d4aa);
    color: #000000;
    border: none;
    padding: 14px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-main);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0, 251, 200, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.pu-slot-spin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 251, 200, 0.5);
}

.pu-slot-spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.pu-slot-result {
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pu-slot-result-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.pu-slot-result-text.lose {
    color: var(--color-text-muted);
}

/* ==================== CONTENT BLOCK ==================== */
.pu-content-section {
    padding: 56px 0;
}

.pu-content-author {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
    border: 1px solid var(--color-border);
}

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

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

.pu-author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.pu-author-bio {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pu-author-link {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-decoration: none;
}

/* Content typography (bare tags without classes) */
.pu-content-body h2,
.pu-content-body h3,
.pu-content-body h4 {
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}

.pu-content-body p {
    margin-bottom: 1rem;
    color: #dddddd;
}

.pu-content-body ul,
.pu-content-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

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

.pu-content-body li {
    margin-bottom: 0.4rem;
    color: #dddddd;
    line-height: 1.6;
}

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

.pu-content-body strong, .pu-content-body b {
    color: #ffffff;
    font-weight: 700;
}

.pu-content-body em, .pu-content-body i {
    font-style: italic;
    color: #cccccc;
}

.pu-content-body blockquote {
    border-left: 3px solid var(--color-primary);
    padding: 12px 20px;
    margin: 1.5rem 0;
    background: var(--color-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #cccccc;
}

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

.pu-content-body table th,
.pu-content-body table td {
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    text-align: left;
    color: #dddddd;
    font-size: 0.9rem;
}

.pu-content-body table th {
    background: #1a1a1c;
    color: var(--color-primary);
    font-weight: 700;
}

.pu-content-body table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

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

.pu-content-body hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2rem 0;
}

/* ==================== FAQ ==================== */
.pu-faq-section {
    background: #1a1a1c;
}

.pu-faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.pu-faq-item.open {
    border-color: rgba(0, 251, 200, 0.3);
}

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

.pu-faq-question:hover {
    color: var(--color-primary);
}

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

.pu-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid rgba(0, 251, 200, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
    font-size: 0.75rem;
    color: var(--color-primary);
}

.pu-faq-item.open .pu-faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 251, 200, 0.2);
}

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

.pu-faq-answer-inner {
    padding-bottom: 18px;
    font-size: 0.9rem;
    color: #bbbbbb;
    line-height: 1.7;
}

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

/* ==================== FOOTER ==================== */
.pu-footer {
    background: var(--color-footer);
    margin-top: auto;
}

.pu-footer-top {
    padding: 48px 0 32px;
    border-bottom: 1px solid #1a1a1a;
}

.pu-footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 40px;
}

.pu-footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
}

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

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

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

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

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

.pu-footer-payments {
    padding: 24px 0;
    border-bottom: 1px solid #1a1a1a;
}

.pu-footer-payments-title {
    font-size: 0.8rem;
    color: #555555;
    text-align: center;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pu-payments-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.pu-payment-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    white-space: nowrap;
}

.pu-providers-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
}

.pu-provider-badge {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: #666666;
    white-space: nowrap;
}

.pu-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.pu-footer-copyright {
    font-size: 0.78rem;
    color: #444444;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.pu-footer-legal {
    margin-top: 8px;
    font-size: 0.72rem;
    color: #333333;
    line-height: 1.5;
}

/* ==================== BOTTOM WIDGET ==================== */
.pu-bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #0d0d0e 0%, #111113 100%);
    border-top: 2px solid var(--color-secondary);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.pu-bottom-widget.hidden {
    transform: translateY(100%);
}

.pu-widget-text {
    font-size: 0.875rem;
    color: #cccccc;
    flex: 1;
}

.pu-widget-text strong {
    color: var(--color-primary);
    font-size: 1rem;
}

.pu-widget-close {
    background: transparent;
    border: none;
    color: #666666;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition);
    flex-shrink: 0;
}

.pu-widget-close:hover {
    color: #aaaaaa;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

.fade-in {
    animation: fadeIn 0.5s ease both;
}

/* ==================== UTILITY ==================== */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

/* ==================== WP OBFUSCATION ==================== */
/* wp-includes/css/dashicons.min.css */
.wp-core-ui .button,
.wp-core-ui .button-secondary {
    background: transparent;
}

.wp-admin-bar {
    display: none !important;
}

.entry-content, .entry-header, .entry-footer {
}

.site-header, .site-footer, .site-main {
}

.wp-block-group, .wp-block-columns, .wp-block-image {
}

.elementor-widget-container, .elementor-section, .elementor-inner {
}

.wpcf7-form, .wpcf7-text, .wpcf7-submit {
}

.yoast-breadcrumbs, .breadcrumbs {
}

.widget, .widget-area, .sidebar {
}

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

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

    .pu-nav {
        display: none;
    }

    .pu-burger {
        display: flex;
    }

    .pu-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pu-hero-badges {
        justify-content: center;
    }

    .pu-hero-buttons {
        justify-content: center;
    }

    .pu-hero-visual {
        display: none;
    }

    .pu-pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .pu-screenshots-grid {
        display: none;
    }

    .pu-screenshots-slider-wrap {
        display: block;
    }

    .pu-tournaments-grid {
        display: none;
    }

    .pu-tournaments-slider-wrap {
        display: block;
    }

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

    .pu-slot-machine {
        padding: 24px 16px;
    }

    .pu-slot-reel {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
    }

    .pu-promo-card {
        padding: 20px 16px;
    }

    .pu-promo-code-text {
        font-size: 1.3rem;
    }

    .pu-bottom-widget {
        flex-wrap: wrap;
    }
}

@media (min-width: 769px) {
    .pu-screenshots-slider-wrap,
    .pu-tournaments-slider-wrap {
        display: none;
    }
}

.rvsd {
    max-width: 1080px;
    margin: 32px auto 56px;
    padding: 32px 28px;
    background: linear-gradient(180deg, #2a2a2c 0%, #232325 100%);
    border: 1px solid rgba(0, 251, 200, 0.14);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    color: #e9e9ea;
    font-family: 'PT Sans', Arial, sans-serif;
    line-height: 1.75;
    overflow: hidden;
}

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

.rvsd h1,
.rvsd h2,
.rvsd h3,
.rvsd h4,
.rvsd h5,
.rvsd h6 {
    margin: 0 0 16px;
    line-height: 1.24;
    font-weight: 700;
    color: #ffffff;
}

.rvsd h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.rvsd h2 {
    font-size: 30px;
    margin-top: 38px;
    color: #00fbc8;
}

.rvsd h3 {
    font-size: 22px;
    margin-top: 28px;
}

.rvsd p {
    margin: 0 0 16px;
    font-size: 17px;
    color: #dddddf;
}

.rvsd a {
    color: #00fbc8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .25s ease, opacity .25s ease;
    word-break: break-word;
}

.rvsd a:hover {
    color: #ffffff;
    opacity: 1;
}

.rvsd ul,
.rvsd ol {
    margin: 0 0 18px;
    padding-left: 24px;
}

.rvsd li {
    margin-bottom: 10px;
    color: #dddddf;
}

.rvsd ul li::marker {
    color: #00fbc8;
}

.rvsd ol li::marker {
    color: #ff2e09;
    font-weight: 700;
}

.rvsd table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #1b1b1d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rvsd thead {
    background: #111214;
}

.rvsd tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rvsd tr:last-child {
    border-bottom: none;
}

.rvsd th,
.rvsd td {
    min-width: 180px;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
}

.rvsd th {
    color: #00fbc8;
    font-weight: 700;
    white-space: nowrap;
}

.rvsd td {
    color: #e5e5e7;
}

.rvsd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(0, 251, 200, 0.06);
    border-left: 4px solid #00fbc8;
    border-radius: 14px;
}

.rvsd blockquote p:last-child {
    margin-bottom: 0;
}

.rvsd strong,
.rvsd b {
    color: #ffffff;
    font-weight: 700;
}

.rvsd em,
.rvsd i {
    color: #f2f2f3;
}

.rvsd hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 28px 0;
}

.rvsd img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.rvsd dl {
    margin: 0 0 20px;
}

.rvsd dt {
    margin: 18px 0 8px;
    font-weight: 700;
    color: #00fbc8;
    font-size: 18px;
}

.rvsd dd {
    margin: 0 0 14px;
    color: #dddddf;
}

.rvsd code {
    background: rgba(255, 255, 255, 0.08);
    color: #00fbc8;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: .95em;
}

.rvsd pre {
    margin: 20px 0;
    padding: 16px;
    background: #111214;
    border-radius: 14px;
    overflow-x: auto;
}

.rvsd::-webkit-scrollbar,
.rvsd table::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.rvsd::-webkit-scrollbar-thumb,
.rvsd table::-webkit-scrollbar-thumb {
    background: rgba(0, 251, 200, 0.35);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .rvsd {
        margin: 24px auto 44px;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .rvsd h1 {
        font-size: 34px;
    }

    .rvsd h2 {
        font-size: 26px;
        margin-top: 32px;
    }

    .rvsd h3 {
        font-size: 21px;
    }

    .rvsd p,
    .rvsd li {
        font-size: 16px;
    }

    .rvsd th,
    .rvsd td {
        min-width: 160px;
        font-size: 14px;
        padding: 12px 14px;
    }
}

@media (max-width: 767px) {
    .rvsd {
        margin: 18px 12px 36px;
        padding: 22px 16px;
        border-radius: 16px;
        line-height: 1.68;
    }

    .rvsd h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .rvsd h2 {
        font-size: 23px;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .rvsd h3 {
        font-size: 19px;
        margin-top: 22px;
        margin-bottom: 12px;
    }

    .rvsd p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .rvsd ul,
    .rvsd ol {
        padding-left: 20px;
        margin-bottom: 16px;
    }

    .rvsd li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .rvsd table {
        margin: 18px 0;
        border-radius: 12px;
    }

    .rvsd th,
    .rvsd td {
        min-width: 140px;
        padding: 11px 12px;
        font-size: 13px;
    }

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

    .rvsd dt {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .rvsd {
        margin: 14px 10px 28px;
        padding: 18px 12px;
        border-radius: 14px;
    }

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

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

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

    .rvsd p,
    .rvsd li,
    .rvsd dd {
        font-size: 14px;
    }

    .rvsd table {
        display: block;
        width: 100%;
    }

    .rvsd th,
    .rvsd td {
        min-width: 130px;
        padding: 10px;
        font-size: 12px;
    }

    .rvsd blockquote {
        margin: 18px 0;
    }
}

.x9f3b7e {
    display: block;
}

.b2k8r1p {
    visibility: visible;
}

.q4m7n2x {
    opacity: 1;
}

.z1w9v6k {
    position: relative;
}

.j5r2t8m {
    float: none;
}

.h3g7p1q {
    clear: both;
}

.c6n4x9w {
    overflow: hidden;
}

.f8b3m5r {
    width: auto;
}

.y2v7k4h {
    height: auto;
}

.d9q1n8p {
    min-width: 0;
}

.entry-meta {
    display: none;
}

.post-thumbnail {
    display: none;
}

.page-header {
    display: none;
}
