/* ============================================================
   Pin Up 243 — Main Stylesheet  ver 1.7
   Colors: #000 header/footer | #00fbc8 teal | #ff2e09 red | #323234 bg
   ============================================================ */

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

:root {
    --pu-black: #000000;
    --pu-bg: #323234;
    --pu-teal: #00fbc8;
    --pu-red: #ff2e09;
    --pu-surface: #3e3e40;
    --pu-surface2: #2a2a2c;
    --pu-border: #4a4a4c;
    --pu-text: #e8e8ea;
    --pu-muted: #a0a0a8;
    --pu-white: #ffffff;
    --pu-teal-dark: #00cda5;
    --pu-red-dark: #d42506;
    --pu-radius: 10px;
    --pu-radius-lg: 16px;
    --pu-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --pu-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 16px;
}

html {
    background: var(--pu-bg);
    scroll-behavior: smooth;
}

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

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;
}

/* ---------- Unused styles for uniqueness (xua-decoy) ---------- */
.xua-decoy-p7 {
    font-size: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.xua-decoy-b9 {
    width: 0;
    height: 0;
    overflow: hidden;
}

.xua-track-hidden {
    display: none !important;
}

/* ---- end decoy ---- */

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: .55rem 1.2rem;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}

.btn:active {
    transform: scale(.97);
}

.pu-btn-login {
    background: var(--pu-teal);
    color: var(--pu-black);
}

.pu-btn-login:hover {
    background: var(--pu-teal-dark);
    color: var(--pu-black);
}

.pu-btn-signup {
    background: var(--pu-red);
    color: var(--pu-white);
}

.pu-btn-signup:hover {
    background: var(--pu-red-dark);
    color: var(--pu-white);
    box-shadow: 0 4px 16px rgba(255, 46, 9, .4);
}

.pu-btn-hero {
    font-size: 1.05rem;
    padding: .7rem 2rem;
    border-radius: 8px;
}

.pu-btn-spin {
    background: var(--pu-teal);
    color: var(--pu-black);
    font-size: 1rem;
    padding: .7rem 2.5rem;
    border-radius: 8px;
    margin-top: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 251, 200, .3);
}

.pu-btn-spin:hover {
    background: var(--pu-teal-dark);
    box-shadow: 0 6px 20px rgba(0, 251, 200, .5);
}

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

/* ---------- HEADER ---------- */
.pu-header {
    background: var(--pu-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.pu-header-inner {
    min-height: 64px;
    padding: .5rem 0;
    gap: .5rem;
    flex-wrap: wrap;
}

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

/* Nav links */
.pu-nav-link {
    color: var(--pu-text);
    font-size: .9rem;
    font-weight: 700;
    padding: .3rem .5rem;
    border-radius: 4px;
    transition: color .2s, background .2s;
}

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

/* Online counter */
.pu-online-counter {
    font-size: .8rem;
    color: var(--pu-muted);
}

.pu-online-dot {
    width: 8px;
    height: 8px;
    background: #22cc6e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(34, 204, 110, .6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(34, 204, 110, 0);
    }
}

/* Burger */
.pu-burger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    border-radius: 4px;
}

.pu-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pu-white);
    border-radius: 2px;
    transition: transform .3s, opacity .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);
}

/* Mobile menu */
.pu-mobile-menu {
    background: #111;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.pu-mobile-menu.open {
    max-height: 400px;
}

.pu-mobile-nav {
    padding: .5rem 0;
}

.pu-mobile-link {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--pu-text);
    font-weight: 700;
    border-bottom: 1px solid #1e1e1e;
    transition: color .2s, background .2s;
}

.pu-mobile-link:hover {
    color: var(--pu-teal);
    background: rgba(0, 251, 200, .06);
}

.pu-online-mobile {
    font-size: .8rem;
    color: var(--pu-muted);
}

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

.pu-section-alt {
    background: var(--pu-surface2);
}

.pu-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--pu-white);
    margin-bottom: .5rem;
    position: relative;
    padding-bottom: .75rem;
}

.pu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--pu-teal);
    border-radius: 2px;
}

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

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

/* ---------- HERO ---------- */
.pu-hero {
    padding: 3rem 0 2.5rem;
    background: linear-gradient(160deg, #1a1a1c 0%, var(--pu-bg) 60%);
}

.pu-hero-banner-wrap {
    position: relative;
    border-radius: var(--pu-radius-lg);
    overflow: hidden;
    box-shadow: var(--pu-shadow);
}

.pu-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
    max-height: 380px;
}

.pu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 100%);
    display: flex;
    align-items: center;
    padding: 2rem;
}

.pu-hero-text {
    max-width: 400px;
}

.pu-hero-tagline {
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pu-teal);
    margin-bottom: .4rem;
}

.pu-hero-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--pu-white);
    line-height: 1.3;
    margin-bottom: .5rem;
}

.pu-hero-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 1.2rem;
}

.pu-accent-teal {
    color: var(--pu-teal);
}

/* Promo card */
.pu-promo-card {
    background: var(--pu-surface);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--pu-shadow);
}

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

.pu-promo-label {
    font-weight: 700;
    color: var(--pu-white);
    font-size: .95rem;
}

.pu-promo-status {
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 20px;
}

.pu-status-active {
    background: rgba(34, 204, 110, .15);
    color: #22cc6e;
    border: 1px solid rgba(34, 204, 110, .3);
}

.pu-promo-code-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--pu-surface2);
    border: 2px dashed var(--pu-teal);
    border-radius: var(--pu-radius);
    padding: .9rem 1rem;
    margin-bottom: .75rem;
}

.pu-promo-code {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pu-teal);
    letter-spacing: .1em;
    flex: 1;
}

.pu-promo-copy-btn {
    background: var(--pu-teal);
    color: var(--pu-black);
    border: none;
    border-radius: 6px;
    padding: .4rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s;
}

.pu-promo-copy-btn:hover {
    background: var(--pu-teal-dark);
}

.pu-promo-copy-btn.copied {
    background: #22cc6e;
    color: #fff;
}

.pu-promo-timer {
    font-size: .82rem;
    color: var(--pu-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: .75rem;
}

.pu-timer-val {
    color: var(--pu-white);
    font-weight: 700;
}

.pu-promo-bonus-info {
    font-size: .9rem;
    color: var(--pu-text);
    text-align: center;
    border-top: 1px solid var(--pu-border);
    padding-top: .75rem;
    margin-top: .25rem;
}

.pu-promo-bonus-info strong {
    font-size: 1.4rem;
    color: var(--pu-teal);
}

.pu-small-text {
    font-size: .78rem;
    color: var(--pu-muted);
}

/* ---------- INFO TABLE ---------- */
.pu-table-wrap {
    margin-top: 1.5rem;
    border-radius: var(--pu-radius);
    overflow: hidden;
    box-shadow: var(--pu-shadow-sm);
}

.pu-info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pu-surface);
    color: var(--pu-text);
    margin: 0;
}

.pu-info-table tbody tr {
    border-bottom: 1px solid var(--pu-border);
    transition: background .15s;
}

.pu-info-table tbody tr:last-child {
    border-bottom: none;
}

.pu-info-table tbody tr:hover {
    background: rgba(0, 251, 200, .05);
}

.pu-info-table td {
    padding: .85rem 1.2rem;
    font-size: .92rem;
    text-align: left;
    vertical-align: top;
}

.pu-param {
    font-weight: 700;
    color: var(--pu-teal);
    width: 38%;
    white-space: nowrap;
}

/* ---------- TOURNAMENTS ---------- */
.pu-tournament-card {
    background: var(--pu-surface);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius-lg);
    padding: 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--pu-shadow-sm);
}

.pu-tournament-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pu-shadow);
}

.pu-tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pu-teal);
}

.pu-tc-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 4px;
    margin-bottom: .75rem;
    background: var(--pu-teal);
    color: var(--pu-black);
    align-self: flex-start;
}

.pu-badge-live {
    background: var(--pu-red);
    color: #fff;
}

.pu-badge-new {
    background: #f5a623;
    color: #000;
}

.pu-tc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pu-white);
    margin-bottom: .4rem;
}

.pu-tc-desc {
    font-size: .88rem;
    color: var(--pu-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: .75rem;
}

.pu-tc-prize {
    font-size: .88rem;
    color: var(--pu-text);
    margin-bottom: .5rem;
}

.pu-tc-prize-val {
    color: var(--pu-teal);
    font-size: 1.05rem;
}

.pu-tc-timer-wrap {
    font-size: .8rem;
    color: var(--pu-muted);
    margin-bottom: 1rem;
}

.pu-tc-timer {
    color: var(--pu-white);
    font-weight: 700;
    font-size: .85rem;
}

.pu-tc-btn {
    margin-top: auto;
}

/* Swiper */
.pu-tournaments-swiper {
    position: relative;
    overflow: hidden;
}

.pu-swiper-track {
    display: flex;
    transition: transform .35s ease;
}

.pu-swiper-slide {
    min-width: 100%;
    padding: 0 4px;
}

.pu-swiper-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}

.pu-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pu-border);
    border: none;
    cursor: pointer;
    transition: background .2s;
}

.pu-dot.active {
    background: var(--pu-teal);
}

/* ---------- VIDEO ---------- */
.pu-video-wrap {
    border-radius: var(--pu-radius-lg);
    overflow: hidden;
    box-shadow: var(--pu-shadow);
    aspect-ratio: 16/9;
    background: #000;
}

.pu-video-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ---------- SLOT MACHINE ---------- */
.pu-slot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.pu-slot-machine {
    background: var(--pu-black);
    border: 3px solid var(--pu-teal);
    border-radius: var(--pu-radius-lg);
    padding: 2rem 2.5rem;
    box-shadow: 0 0 30px rgba(0, 251, 200, .2), var(--pu-shadow);
    position: relative;
}

.pu-slot-reels {
    display: flex;
    gap: 1rem;
    position: relative;
}

.pu-reel {
    width: 80px;
    height: 80px;
    background: var(--pu-surface);
    border: 2px solid var(--pu-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pu-white);
    overflow: hidden;
    transition: transform .05s;
}

.pu-reel.spinning .pu-reel-symbol {
    animation: reel-spin .1s linear infinite;
}

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

.pu-slot-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: rgba(0, 251, 200, .3);
    pointer-events: none;
}

.pu-slot-result {
    margin-top: 1rem;
    background: var(--pu-surface);
    border: 1px solid var(--pu-teal);
    border-radius: var(--pu-radius);
    padding: 1.2rem 1.8rem;
    text-align: center;
    max-width: 380px;
    animation: fadeInUp .4s ease;
}

.pu-slot-win {
    color: var(--pu-teal);
}

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

.pu-slot-win-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.pu-slot-win-sub {
    font-size: .88rem;
    color: var(--pu-text);
    margin-bottom: 1rem;
}

/* ---------- REVIEWS ---------- */
.pu-review-card {
    background: var(--pu-surface);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius-lg);
    padding: 1.4rem;
    height: 100%;
    transition: transform .2s, box-shadow .2s;
}

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

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

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

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

.pu-star {
    width: 16px;
    height: 16px;
    fill: transparent;
    stroke: var(--pu-teal);
    stroke-width: 1.5;
}

.pu-star.filled {
    fill: var(--pu-teal);
    stroke: var(--pu-teal);
}

.pu-rc-text {
    font-size: .88rem;
    color: var(--pu-muted);
    line-height: 1.6;
}

/* Review form */
.pu-review-form-wrap {
    background: var(--pu-surface);
    border-radius: var(--pu-radius-lg);
    padding: 2rem;
    border: 1px solid var(--pu-border);
}

.pu-form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.2rem;
}

.pu-form-label {
    font-size: .88rem;
    font-weight: 700;
    color: var(--pu-text);
}

.pu-required {
    color: var(--pu-red);
}

.pu-form-input {
    background: var(--pu-surface2);
    border: 1px solid var(--pu-border);
    border-radius: 6px;
    color: var(--pu-white);
    font-family: 'PT Sans', sans-serif;
    font-size: .92rem;
    padding: .65rem 1rem;
    transition: border-color .2s;
    width: 100%;
}

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

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

.pu-form-success {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(34, 204, 110, .12);
    border: 1px solid rgba(34, 204, 110, .3);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #22cc6e;
    margin-top: 1rem;
    animation: fadeInUp .3s ease;
}

/* ---------- FAQ ---------- */
.pu-faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

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

.pu-faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1.1rem 1.4rem;
    color: var(--pu-white);
    font-family: 'PT Sans', sans-serif;
    font-size: .97rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background .2s;
}

.pu-faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pu-teal);
    flex-shrink: 0;
    transition: transform .3s;
}

.pu-faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

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

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

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

.pu-faq-answer > div {
    padding: 0 1.4rem 1.1rem;
    font-size: .92rem;
    color: var(--pu-muted);
    line-height: 1.7;
}

/* ---------- AUTHOR ---------- */
.pu-author-card {
    background: var(--pu-surface);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--pu-shadow-sm);
}

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

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

.pu-author-title {
    font-size: .83rem;
    color: var(--pu-teal);
    font-weight: 700;
}

.pu-author-bio {
    font-size: .88rem;
    color: var(--pu-muted);
    line-height: 1.6;
}

.pu-author-link {
    font-size: .85rem;
    color: var(--pu-teal);
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 251, 200, .3);
    transition: border-color .2s;
}

.pu-author-link:hover {
    border-color: var(--pu-teal);
    color: var(--pu-teal-dark);
}

/* ---------- CONTENT BODY (bare HTML styles) ---------- */
.pu-content-body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.pu-content-inner h1, .pu-content-body h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pu-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.3;
}

.pu-content-inner h2, .pu-content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pu-white);
    margin: 1.5rem 0 .75rem;
    border-left: 4px solid var(--pu-teal);
    padding-left: .75rem;
}

.pu-content-inner h3, .pu-content-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pu-white);
    margin: 1.2rem 0 .6rem;
}

.pu-content-inner h4, .pu-content-inner h5, .pu-content-inner h6,
.pu-content-body h4, .pu-content-body h5, .pu-content-body h6 {
    font-weight: 700;
    color: var(--pu-white);
    margin: 1rem 0 .5rem;
}

.pu-content-inner p, .pu-content-body p {
    margin-bottom: 1rem;
    color: var(--pu-text);
    line-height: 1.7;
}

.pu-content-inner ul, .pu-content-inner ol,
.pu-content-body ul, .pu-content-body ol {
    margin: .75rem 0 1rem 1.5rem;
    color: var(--pu-text);
}

.pu-content-inner li, .pu-content-body li {
    margin-bottom: .4rem;
    line-height: 1.6;
}

.pu-content-inner a, .pu-content-body a {
    color: var(--pu-teal);
}

.pu-content-inner a:hover, .pu-content-body a:hover {
    color: var(--pu-teal-dark);
}

.pu-content-inner strong, .pu-content-body strong {
    color: var(--pu-white);
}

.pu-content-inner em, .pu-content-body em {
    color: var(--pu-muted);
}

.pu-content-inner blockquote, .pu-content-body blockquote {
    border-left: 4px solid var(--pu-teal);
    padding: .75rem 1.2rem;
    margin: 1rem 0;
    background: var(--pu-surface2);
    border-radius: 0 8px 8px 0;
    color: var(--pu-muted);
    font-style: italic;
}

.pu-content-inner table, .pu-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    background: var(--pu-surface);
    border-radius: 8px;
    overflow: hidden;
}

.pu-content-inner th, .pu-content-body th {
    background: var(--pu-surface2);
    color: var(--pu-teal);
    font-weight: 700;
    text-align: left;
    padding: .75rem 1rem;
    border-bottom: 2px solid var(--pu-border);
}

.pu-content-inner td, .pu-content-body td {
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--pu-border);
    color: var(--pu-text);
    text-align: left;
    vertical-align: top;
}

.pu-content-inner tr:hover, .pu-content-body tr:hover {
    background: rgba(0, 251, 200, .04);
}

.pu-content-inner img, .pu-content-body img {
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: var(--pu-shadow-sm);
}

/* ---------- H1 ---------- */
.pu-h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--pu-white);
    line-height: 1.3;
}

/* ---------- FOOTER ---------- */
.pu-footer {
    background: var(--pu-black);
    border-top: 1px solid #1a1a1a;
    color: var(--pu-muted);
}

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

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

.pu-footer-tagline {
    font-size: .78rem;
    color: var(--pu-muted);
    line-height: 1.5;
}

.pu-footer-col-title {
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pu-teal);
    font-weight: 700;
    margin-bottom: .75rem;
}

.pu-footer-nav {
    padding: 0;
}

.pu-footer-nav li {
    margin-bottom: .4rem;
}

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

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

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

.pu-pay-badge, .pu-provider-badge {
    background: var(--pu-surface);
    color: var(--pu-text);
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 4px;
    border: 1px solid var(--pu-border);
}

.pu-footer-legal p {
    color: var(--pu-muted);
    line-height: 1.6;
}

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

/* ---------- STICKY WIDGET ---------- */
.pu-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--pu-black);
    border-top: 2px solid var(--pu-red);
    padding: .75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
    animation: slideUpWidget .4s ease;
}

@keyframes slideUpWidget {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.pu-widget-bonus-label {
    color: var(--pu-text);
}

.pu-widget-bonus-label strong {
    color: var(--pu-teal);
}

.pu-widget-btn {
    background: var(--pu-red);
    color: var(--pu-white);
    font-weight: 700;
    font-size: .88rem;
    padding: .6rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(255, 46, 9, .4);
}

.pu-widget-btn:hover {
    background: var(--pu-red-dark);
    color: var(--pu-white);
    box-shadow: 0 6px 16px rgba(255, 46, 9, .6);
}

/* Pad body so widget doesn't cover footer */
body {
    padding-bottom: 68px;
}

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

.pu-fade-in {
    animation: fadeInUp .5s ease both;
}

/* ---------- WP CONTENT DECOYS (performance-safe) ---------- */
/* Mimics WP classes without affecting rendering */
.wp-block-paragraph {
    display: contents;
}

.wp-block-heading {
    display: contents;
}

.elementor-widget-container {
    display: contents;
}

.entry-content {
    display: contents;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pu-hero-title {
        font-size: 1.35rem;
    }

    .pu-section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .pu-section {
        padding: 2.5rem 0;
    }

    .pu-hero {
        padding: 1.5rem 0 1rem;
    }

    .pu-hero-overlay {
        padding: 1.2rem;
    }

    .pu-hero-title {
        font-size: 1.15rem;
    }

    .pu-hero-sub {
        font-size: .78rem;
    }

    .pu-btn-hero {
        font-size: .88rem;
        padding: .5rem 1.2rem;
    }

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

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

    .pu-info-table td {
        padding: .65rem .85rem;
        font-size: .85rem;
    }

    .pu-param {
        width: 45%;
    }

    .pu-slot-machine {
        padding: 1.2rem 1.5rem;
    }

    .pu-h1 {
        font-size: 1.4rem;
    }

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

@media (max-width: 575.98px) {
    .pu-header-inner {
        padding: .4rem 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.lqeds {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    padding: 32px;
    background: #1c1f2b;
    border: 1px solid #2c3142;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.lqeds h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 16px;
}

.lqeds h2 {
    font-size: 22px;
    color: #00fbc8;
    margin: 26px 0 12px;
}

.lqeds p {
    font-size: 16px;
    line-height: 1.7;
    color: #c7cedd;
    margin-bottom: 16px;
}

.lqeds ul {
    margin: 16px 0;
    padding-left: 20px;
}

.lqeds li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #c7cedd;
}

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

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

    .lqeds h2 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .lqeds p {
        font-size: 15px;
        line-height: 1.6;
    }
}

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

    .lqeds h1 {
        font-size: 22px;
    }

    .lqeds h2 {
        font-size: 17px;
    }

    .lqeds p {
        font-size: 14.5px;
    }
}

@media (min-width: 992px) {

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

    .pu-tournament-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 26px;
        border-radius: 18px;
        background: linear-gradient(160deg, #1f2230 0%, #2a2e42 100%);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
        transition: all .25s ease;
        position: relative;
        overflow: hidden;
    }

    .pu-tournament-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        border-color: rgba(0, 251, 200, 0.3);
    }

    .pu-tournament-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(0, 251, 200, 0.06), transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .pu-tournament-card:hover::after {
        opacity: 1;
    }

    .pu-tc-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 20px;
        font-weight: 700;
        letter-spacing: .05em;
    }

    .pu-tc-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .pu-tc-desc {
        font-size: 14px;
        line-height: 1.6;
        color: #aeb4c6;
        margin-bottom: 18px;
        min-height: 70px;
    }

    .pu-tc-prize {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .pu-tc-prize-val {
        font-size: 20px;
        color: #00fbc8;
        font-weight: 700;
    }

    .pu-tc-timer-wrap {
        font-size: 13px;
        margin-bottom: 18px;
        color: #9aa2b5;
    }

    .pu-tc-timer {
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
    }

    .pu-tc-btn {
        margin-top: auto;
        width: 100%;
        font-size: 15px;
        padding: 12px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    #tournaments .pu-tournaments-grid {
        display: grid !important;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    #tournaments .pu-tournaments-grid > .col-md-4 {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #tournaments .pu-tournament-card {
        min-height: 360px;
        height: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column;
        background: #202435;
        border: 1px solid rgba(255, 255, 255, .08);
        border-top: 3px solid #00fbc8;
        border-radius: 18px;
        box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
    }

    #tournaments .pu-tc-body {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    #tournaments .pu-tc-title {
        max-width: 70%;
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    #tournaments .pu-tc-desc {
        font-size: 15px;
        line-height: 1.65;
        color: #c4c8d4;
        margin-bottom: 18px;
    }

    #tournaments .pu-tc-prize {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        font-size: 14px;
        color: #aeb5c8;
    }

    #tournaments .pu-tc-prize-val {
        display: block;
        margin-top: 4px;
        font-size: 24px;
        color: #00fbc8;
    }

    #tournaments .pu-tc-timer-wrap {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin: 16px 0 18px;
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(0, 0, 0, .18);
        color: #cfd4e3;
    }

    #tournaments .pu-tc-btn {
        width: 100%;
        padding: 13px 18px;
        border-radius: 12px;
    }
}