
:root {
    --pu-black: #000000;
    --pu-bg: #323234;
    --pu-bg-light: #3e3e40;
    --pu-bg-card: #2a2a2c;
    --pu-teal: #00fbc8;
    --pu-teal-dark: #00d9aa;
    --pu-red: #ff2e09;
    --pu-red-dark: #d92508;
    --pu-white: #f0f0f0;
    --pu-text: #e2e2e2;
    --pu-text-muted: #9a9a9c;
    --pu-border: rgba(0, 251, 200, 0.15);
    --pu-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --pu-radius: 12px;
    --pu-radius-sm: 6px;
    --font-main: 'PT Sans', Arial, sans-serif;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--pu-bg);
    color: var(--pu-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--pu-teal);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--pu-teal-dark);
}

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--pu-white);
    line-height: 1.25;
}

h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

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

p {
    line-height: 1.7;
    margin-bottom: 0.9rem;
    color: var(--pu-text);
}

/* ===================== UNUSED STYLES (uniqualization) ===================== */
.xk9a2b {
    display: none;
    visibility: hidden;
}

.f7q3n1 {
    opacity: 0;
    pointer-events: none;
}

.m2p8x5 {
    transform: translateZ(0);
}

.y6r4t0 {
    will-change: auto;
}

.wp-block-separator {
    border: none;
    height: 2px;
    background: var(--pu-border);
    margin: 1.5rem 0;
}

.wp-caption {
    display: none;
}

.alignnone, .alignleft, .alignright, .aligncenter {
    display: inline;
}

.entry-content p:last-child {
    margin-bottom: 0;
}

/* ===================== HEADER ===================== */
#pu-header {
    background: var(--pu-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(0, 251, 200, 0.1);
}

.pu-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.25rem;
    gap: 1rem;
    flex-wrap: nowrap;
}

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

.pu-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.pu-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    flex-wrap: wrap;
}

.pu-nav a {
    color: var(--pu-white);
    font-size: 0.88rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--pu-radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}

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

.pu-online-count {
    font-size: 0.78rem;
    color: var(--pu-teal);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.pu-online-dot {
    width: 8px;
    height: 8px;
    background: #4cff7a;
    border-radius: 50%;
    animation: pulseGreen 1.5s infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 255, 122, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 255, 122, 0);
    }
}

.pu-header-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Burger */
.pu-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.pu-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--pu-white);
    border-radius: 2px;
    transition: all .3s;
}

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

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

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

.pu-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--pu-black);
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 251, 200, 0.1);
}

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

.pu-mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.pu-mobile-nav ul a {
    color: var(--pu-white);
    font-size: 1rem;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: var(--pu-radius-sm);
    transition: background .2s;
}

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

/* ===================== BUTTONS ===================== */
.btn-pu-login {
    background: transparent;
    border: 2px solid var(--pu-teal);
    color: var(--pu-teal) !important;
    padding: 0.42rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background .2s, color .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-pu-login:hover {
    background: var(--pu-teal);
    color: var(--pu-black) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 251, 200, 0.35);
}

.btn-pu-reg {
    background: var(--pu-red);
    border: 2px solid var(--pu-red);
    color: var(--pu-white) !important;
    padding: 0.42rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none !important;
}

.btn-pu-reg:hover {
    background: var(--pu-red-dark);
    border-color: var(--pu-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 46, 9, 0.4);
}

.btn-pu-primary {
    background: var(--pu-teal);
    color: var(--pu-black) !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-pu-primary:hover {
    background: var(--pu-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 251, 200, 0.45);
}

.btn-pu-danger {
    background: var(--pu-red);
    color: var(--pu-white) !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-pu-danger:hover {
    background: var(--pu-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 46, 9, 0.4);
}

/* ===================== HERO ===================== */
#pu-hero {
    position: relative;
    overflow: hidden;
    background: var(--pu-black);
}

.pu-hero-slide {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pu-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.pu-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem;
    max-width: 580px;
}

.pu-hero-badge {
    display: inline-block;
    background: var(--pu-teal);
    color: var(--pu-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pu-hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--pu-white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

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

.pu-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pu-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Slider dots */
.pu-slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.pu-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

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

/* ===================== SECTIONS ===================== */
.pu-section {
    padding: 3.5rem 0;
}

.pu-section-title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--pu-white);
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
}

.pu-section-title::after {
    content: '';
    display: block;
    height: 3px;
    width: 50px;
    background: var(--pu-teal);
    border-radius: 2px;
    margin-top: 0.5rem;
}

.pu-section-sub {
    color: var(--pu-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
}

/* ===================== BREADCRUMBS ===================== */
#pu-breadcrumbs {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--pu-border);
}

.pu-breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.pu-breadcrumb-list li {
    display: flex;
    align-items: center;
}

.pu-breadcrumb-list li + li::before {
    content: '›';
    color: var(--pu-text-muted);
    margin-right: 0.25rem;
}

.pu-breadcrumb-list a {
    color: var(--pu-text-muted);
}

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

.pu-breadcrumb-list .active {
    color: var(--pu-teal);
}

/* ===================== CARDS / BLOCKS ===================== */
.pu-card {
    background: var(--pu-bg-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.pu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pu-shadow);
    border-color: rgba(0, 251, 200, 0.35);
}

/* ===================== ADVANTAGES ===================== */
.pu-adv-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 251, 200, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--pu-teal);
    border: 1px solid rgba(0, 251, 200, 0.25);
    flex-shrink: 0;
}

.pu-adv-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pu-white);
    margin-bottom: 0.35rem;
}

.pu-adv-desc {
    font-size: 0.88rem;
    color: var(--pu-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ===================== SCREENSHOTS ===================== */
.pu-screenshot-img {
    border-radius: var(--pu-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid var(--pu-border);
}

.pu-screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 251, 200, 0.2);
}

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

/* Mobile slider for screenshots */
.pu-mobile-slider {
    position: relative;
}

@media (max-width: 768px) {
    .pu-screenshots-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }

    .pu-screenshots-row::-webkit-scrollbar {
        height: 4px;
    }

    .pu-screenshots-row::-webkit-scrollbar-thumb {
        background: var(--pu-teal);
        border-radius: 2px;
    }

    .pu-screenshot-col {
        min-width: 80vw;
        scroll-snap-align: start;
    }

    .pu-tournament-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scroll-snap-type: x mandatory;
    }

    .pu-tournament-row::-webkit-scrollbar {
        height: 4px;
    }

    .pu-tournament-row::-webkit-scrollbar-thumb {
        background: var(--pu-teal);
        border-radius: 2px;
    }

    .pu-tournament-col {
        min-width: 82vw;
        scroll-snap-align: start;
    }
}

/* ===================== TOURNAMENTS ===================== */
.pu-tourn-card {
    background: var(--pu-bg-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform .2s, box-shadow .2s;
    height: 100%;
}

.pu-tourn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.pu-tourn-label {
    display: inline-block;
    background: rgba(0, 251, 200, 0.12);
    color: var(--pu-teal);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.pu-tourn-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pu-white);
}

.pu-tourn-desc {
    font-size: 0.88rem;
    color: var(--pu-text-muted);
    flex-grow: 1;
    margin: 0;
    line-height: 1.5;
}

.pu-tourn-prize {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pu-teal);
}

.pu-tourn-prize small {
    font-size: 0.75rem;
    color: var(--pu-text-muted);
    display: block;
    font-weight: 400;
}

.pu-countdown {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pu-countdown-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    min-width: 42px;
}

.pu-countdown-num {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--pu-white);
    line-height: 1;
    display: block;
}

.pu-countdown-label {
    font-size: 0.62rem;
    color: var(--pu-text-muted);
    text-transform: uppercase;
}

.pu-countdown-sep {
    font-size: 1rem;
    color: var(--pu-teal);
    font-weight: 700;
}

/* ===================== APP INFO ===================== */
.pu-app-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pu-app-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    font-size: 0.92rem;
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    overflow: hidden;
}

.pu-app-table th {
    background: rgba(0, 251, 200, 0.08);
    color: var(--pu-teal);
    padding: 0.75rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--pu-border);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.pu-app-table td {
    padding: 0.65rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--pu-text);
    vertical-align: middle;
}

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

.pu-app-table tr:hover td {
    background: rgba(0, 251, 200, 0.04);
}

.pu-dl-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-pu-store {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--pu-radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background .2s, transform .15s;
    text-decoration: none !important;
    color: var(--pu-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-apple {
    background: #1c1c1e;
}

.btn-apple:hover {
    background: #2c2c2e;
    transform: translateY(-2px);
}

.btn-google {
    background: #1a7348;
}

.btn-google:hover {
    background: #145c38;
    transform: translateY(-2px);
}

.btn-apk {
    background: var(--pu-red);
    border-color: var(--pu-red);
}

.btn-apk:hover {
    background: var(--pu-red-dark);
    transform: translateY(-2px);
}

/* ===================== SLOT GAME ===================== */
#pu-slot {
    background: var(--pu-bg-card);
    border-radius: var(--pu-radius);
    border: 1px solid var(--pu-border);
    padding: 2rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.pu-reels {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.pu-reel {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--pu-border);
    border-radius: var(--pu-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform .1s;
    position: relative;
    overflow: hidden;
}

.pu-reel.spinning {
    animation: reelSpin 0.12s steps(1) infinite;
}

@keyframes reelSpin {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-4px)
    }
    100% {
        transform: translateY(0)
    }
}

.pu-slot-result {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--pu-radius-sm);
    padding: 0.75rem 1.25rem;
    transition: all .3s;
}

.pu-slot-result.win {
    background: rgba(0, 251, 200, 0.12);
    color: var(--pu-teal);
    border: 1px solid rgba(0, 251, 200, 0.3);
}

.pu-slot-result.lose {
    background: rgba(255, 46, 9, 0.1);
    color: #ff6e56;
    border: 1px solid rgba(255, 46, 9, 0.2);
}

.pu-slot-result.idle {
    background: rgba(0, 0, 0, 0.2);
    color: var(--pu-text-muted);
    border: 1px solid transparent;
}

/* ===================== REVIEWS ===================== */
.pu-review-card {
    background: var(--pu-bg-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pu-review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pu-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 251, 200, 0.3);
    flex-shrink: 0;
}

.pu-review-name {
    font-weight: 700;
    color: var(--pu-white);
    font-size: 0.95rem;
}

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

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

.pu-stars svg {
    width: 15px;
    height: 15px;
    fill: #f5c518;
}

.pu-review-text {
    font-size: 0.9rem;
    color: var(--pu-text);
    line-height: 1.6;
    margin: 0;
}

/* Review form */
.pu-review-form {
    background: var(--pu-bg-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 1.75rem;
    max-width: 560px;
}

.pu-review-form h3 {
    color: var(--pu-white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.pu-form-group {
    margin-bottom: 1rem;
}

.pu-form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--pu-text-muted);
    margin-bottom: 0.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pu-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: var(--pu-radius-sm);
    padding: 0.6rem 0.9rem;
    color: var(--pu-white);
    font-family: var(--font-main);
    font-size: 0.92rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.pu-form-input:focus {
    border-color: var(--pu-teal);
    box-shadow: 0 0 0 3px rgba(0, 251, 200, 0.1);
}

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

.pu-form-success {
    display: none;
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid rgba(0, 251, 200, 0.3);
    border-radius: var(--pu-radius-sm);
    padding: 0.75rem 1rem;
    color: var(--pu-teal);
    font-size: 0.92rem;
    text-align: center;
    margin-top: 0.75rem;
}

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

.pu-faq-q {
    background: var(--pu-bg-card);
    padding: 0.9rem 1.1rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--pu-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    transition: background .2s;
    user-select: none;
    font-size: 0.95rem;
}

.pu-faq-q:hover {
    background: rgba(0, 251, 200, 0.06);
}

.pu-faq-q .pu-faq-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--pu-teal);
    border-bottom: 2px solid var(--pu-teal);
    transform: rotate(45deg);
    transition: transform .25s;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.pu-faq-item.open .pu-faq-arrow {
    transform: rotate(-135deg);
    margin-bottom: -4px;
}

.pu-faq-a {
    display: none;
    padding: 0.8rem 1.1rem 1rem;
    color: var(--pu-text-muted);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    line-height: 1.65;
}

.pu-faq-item.open .pu-faq-a {
    display: block;
}

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

/* Content inner raw HTML styles (no classes) */
.pu-content-block h1,
.pu-content-block h2,
.pu-content-block h3,
.pu-content-block h4,
.pu-content-block h5,
.pu-content-block h6 {
    color: var(--pu-white);
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
}

.pu-content-block p {
    color: var(--pu-text);
    margin-bottom: 0.9rem;
    line-height: 1.75;
}

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

.pu-content-block a:hover {
    color: var(--pu-teal-dark);
    text-decoration: underline;
}

.pu-content-block ul,
.pu-content-block ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pu-text);
}

.pu-content-block li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
}

.pu-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem auto;
    overflow-x: auto;
    display: block;
    font-size: 0.9rem;
}

.pu-content-block th {
    background: rgba(0, 251, 200, 0.08);
    color: var(--pu-teal);
    padding: 0.65rem 1rem;
    border: 1px solid var(--pu-border);
    text-align: left;
    font-weight: 700;
}

.pu-content-block td {
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--pu-text);
    text-align: left;
}

.pu-content-block blockquote {
    border-left: 3px solid var(--pu-teal);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background: rgba(0, 251, 200, 0.05);
    border-radius: 0 var(--pu-radius-sm) var(--pu-radius-sm) 0;
    color: var(--pu-text-muted);
    font-style: italic;
}

.pu-content-block strong {
    color: var(--pu-white);
}

.pu-content-block em {
    color: var(--pu-text-muted);
}

.pu-content-block code {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
    color: var(--pu-teal);
}

/* Author block */
.pu-author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.pu-author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pu-teal);
    flex-shrink: 0;
}

.pu-author-name {
    font-weight: 700;
    color: var(--pu-white);
    font-size: 0.95rem;
}

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

.pu-author-link {
    font-size: 0.82rem;
    color: var(--pu-teal);
}

/* ===================== FOOTER ===================== */
#pu-footer {
    background: var(--pu-black);
    border-top: 1px solid rgba(0, 251, 200, 0.1);
    padding: 2.5rem 0 1.5rem;
}

.pu-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pu-footer-logo img {
    height: 42px;
    width: auto;
    margin-bottom: 0.85rem;
}

.pu-footer-desc {
    font-size: 0.83rem;
    color: var(--pu-text-muted);
    line-height: 1.6;
}

.pu-footer-col-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pu-teal);
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.pu-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pu-footer-links li {
    margin-bottom: 0.4rem;
}

.pu-footer-links a {
    color: var(--pu-text-muted);
    font-size: 0.87rem;
    transition: color .2s;
}

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

.pu-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.pu-badge-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pu-radius-sm);
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    color: var(--pu-text-muted);
    white-space: nowrap;
    font-weight: 700;
}

.pu-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--pu-text-muted);
    line-height: 1.6;
}

.pu-footer-bottom p {
    margin-bottom: 0.25rem;
}

/* ===================== STICKY WIDGET ===================== */
#pu-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1a1a1c;
    border-top: 2px solid var(--pu-teal);
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.pu-widget-text {
    font-size: 0.9rem;
    color: var(--pu-white);
    font-weight: 700;
}

.pu-widget-text span {
    color: var(--pu-teal);
}

.pu-widget-btn {
    background: var(--pu-red);
    color: var(--pu-white) !important;
    font-weight: 700;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: background .2s, transform .15s;
    text-decoration: none !important;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    animation: widgetPulse 2.5s infinite;
}

@keyframes widgetPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 46, 9, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 46, 9, 0);
    }
}

.pu-widget-btn:hover {
    background: var(--pu-red-dark);
    transform: scale(1.04);
}

.pu-widget-close {
    background: none;
    border: none;
    color: var(--pu-text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: color .2s;
    line-height: 1;
}

.pu-widget-close:hover {
    color: var(--pu-white);
}

/* ===================== WP OBFUSCATION ELEMENTS ===================== */
.wp-block-group {
    display: block;
}

.wp-block-column {
    display: flex;
    flex-direction: column;
}

.wp-site-blocks {
    display: flow-root;
}

.has-global-padding {
    padding-left: max(1.5rem, 5%);
    padding-right: max(1.5rem, 5%);
}

.elementor-widget-wrap {
    display: block;
}

.elementor-section {
    display: block;
}

.site-footer {
    display: block;
}

.wp-content-area {
    display: block;
}

/* End WP obfuscation */

/* ===================== UTILITIES ===================== */
.text-teal {
    color: var(--pu-teal) !important;
}

.text-red {
    color: var(--pu-red) !important;
}

.text-muted-pu {
    color: var(--pu-text-muted) !important;
}

.bg-card {
    background: var(--pu-bg-card);
}

.border-teal {
    border-color: var(--pu-border) !important;
}

.rounded-pu {
    border-radius: var(--pu-radius);
}

/* body padding-bottom for sticky widget */
body {
    padding-bottom: 58px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .pu-nav {
        display: none;
    }

    .pu-burger {
        display: flex;
    }

    .pu-online-count {
        display: none;
    }

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

@media (max-width: 767px) {
    .pu-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pu-hero-slide {
        min-height: 340px;
    }

    #pu-slot {
        padding: 1.25rem;
    }

    .pu-reel {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    .pu-content-block {
        padding: 1.25rem;
    }

    .pu-author-block {
        flex-direction: column;
        text-align: center;
    }

    #pu-widget {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .pu-widget-text {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .pu-hero-content h1 {
        font-size: 1.5rem;
    }

    .pu-header-inner {
        padding: 0.5rem 0.85rem;
    }

    .btn-pu-login, .btn-pu-reg {
        padding: 0.35rem 0.75rem;
        font-size: 0.78rem;
    }
}

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

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

/* Separation between blocks */
.pu-section + .pu-section {
    border-top: 1px solid var(--pu-border);
}

/* Animate.css-like transitions for sections */
[data-aos] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s, transform .5s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

.bvfrrs {
    --bvfrrs-bg: #24262c;
    --bvfrrs-bg-soft: #2d3038;
    --bvfrrs-card: rgba(255, 255, 255, 0.04);
    --bvfrrs-border: rgba(255, 255, 255, 0.08);
    --bvfrrs-text: #eef2f7;
    --bvfrrs-muted: #b8c0cc;
    --bvfrrs-accent: #00f5c8;
    --bvfrrs-accent-2: #ff5a36;
    --bvfrrs-accent-3: #ffd45c;
    --bvfrrs-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    color: var(--bvfrrs-text);
    background: radial-gradient(circle at top left, rgba(0, 245, 200, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 90, 54, 0.08), transparent 28%),
    linear-gradient(180deg, #30333b 0%, #262830 100%);
    border: 1px solid var(--bvfrrs-border);
    border-radius: 28px;
    box-shadow: var(--bvfrrs-shadow);
    overflow: hidden;
}

.bvfrrs * {
    box-sizing: border-box;
}

.bvfrrs h1,
.bvfrrs h2,
.bvfrrs h3 {
    margin: 0;
    line-height: 1.18;
    color: #fff;
}

.bvfrrs h1 {
    font-size: clamp(34px, 4.2vw, 54px);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.bvfrrs h2 {
    position: relative;
    font-size: clamp(24px, 3vw, 34px);
    margin-top: 44px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bvfrrs h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 72px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bvfrrs-accent), var(--bvfrrs-accent-2));
}

.bvfrrs h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-top: 30px;
    margin-bottom: 14px;
    color: #f8fbff;
}

.bvfrrs p,
.bvfrrs li {
    font-size: 18px;
    line-height: 1.75;
    color: var(--bvfrrs-text);
}

.bvfrrs p {
    margin: 0 0 18px;
}

.bvfrrs > p:first-of-type {
    font-size: 20px;
    color: #fff;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(0, 245, 200, 0.12), rgba(255, 90, 54, 0.1));
    border: 1px solid rgba(0, 245, 200, 0.16);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bvfrrs ul,
.bvfrrs ol {
    margin: 0 0 26px;
    padding: 0;
}

.bvfrrs ul {
    list-style: none;
}

.bvfrrs ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
}

.bvfrrs ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bvfrrs-accent);
    box-shadow: 0 0 0 6px rgba(0, 245, 200, 0.12);
}

.bvfrrs ol {
    list-style: none;
    counter-reset: bvfrrs-counter;
}

.bvfrrs ol li {
    position: relative;
    counter-increment: bvfrrs-counter;
    padding-left: 56px;
    margin-bottom: 16px;
}

.bvfrrs ol li::before {
    content: counter(bvfrrs-counter);
    position: absolute;
    top: 2px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bvfrrs-accent), #00c9ff);
    color: #0f1319;
    font-size: 15px;
    font-weight: 800;
}

.bvfrrs a {
    color: var(--bvfrrs-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
    overflow-wrap: anywhere;
}

.bvfrrs a:hover {
    color: #84ffe6;
}

.bvfrrs strong,
.bvfrrs b {
    color: #fff;
}

.bvfrrs h2 + p,
.bvfrrs h3 + p {
    color: var(--bvfrrs-muted);
}

.bvfrrs h2 + ul,
.bvfrrs h3 + ul,
.bvfrrs h2 + ol,
.bvfrrs h3 + ol {
    padding: 24px;
    background: var(--bvfrrs-card);
    border: 1px solid var(--bvfrrs-border);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.bvfrrs p:has(a[href^="mailto:"]),
.bvfrrs p:has(a[href*="linkedin.com"]) {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.bvfrrs > h3:last-of-type + p {
    padding-left: 18px;
    border-left: 2px solid rgba(0, 245, 200, 0.2);
}

@media (max-width: 1024px) {
    .bvfrrs {
        margin: 28px auto;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .bvfrrs p,
    .bvfrrs li {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .bvfrrs {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 20px;
    }

    .bvfrrs h1 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .bvfrrs h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .bvfrrs h2::after {
        width: 56px;
    }

    .bvfrrs h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .bvfrrs p,
    .bvfrrs li {
        font-size: 16px;
        line-height: 1.65;
    }

    .bvfrrs > p:first-of-type {
        font-size: 17px;
        padding: 18px 16px;
        border-radius: 16px;
    }

    .bvfrrs h2 + ul,
    .bvfrrs h3 + ul,
    .bvfrrs h2 + ol,
    .bvfrrs h3 + ol,
    .bvfrrs p:has(a[href^="mailto:"]),
    .bvfrrs p:has(a[href*="linkedin.com"]) {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .bvfrrs ul li {
        padding-left: 24px;
    }

    .bvfrrs ul li::before {
        width: 8px;
        height: 8px;
        top: 10px;
    }

    .bvfrrs ol li {
        padding-left: 48px;
    }

    .bvfrrs ol li::before {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .bvfrrs > h3:last-of-type + p {
        padding-left: 14px;
    }
}

@media (max-width: 480px) {
    .bvfrrs {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .bvfrrs h1 {
        font-size: 26px;
    }

    .bvfrrs h2 {
        font-size: 22px;
    }

    .bvfrrs h3 {
        font-size: 18px;
    }

    .bvfrrs p,
    .bvfrrs li {
        font-size: 15px;
        line-height: 1.6;
    }

    .bvfrrs > p:first-of-type {
        font-size: 16px;
        padding: 16px 14px;
    }

    .bvfrrs h2 + ul,
    .bvfrrs h3 + ul,
    .bvfrrs h2 + ol,
    .bvfrrs h3 + ol,
    .bvfrrs p:has(a[href^="mailto:"]),
    .bvfrrs p:has(a[href*="linkedin.com"]) {
        padding: 16px 14px;
    }

    .bvfrrs ol li {
        padding-left: 44px;
    }

    .bvfrrs > h3:last-of-type + p {
        padding-left: 12px;
    }
}