
:root {
    --c-bg: #323234;
    --c-dark: #1a1a1b;
    --c-header: #000000;
    --c-teal: #00fbc8;
    --c-red: #ff2e09;
    --c-text: #f0ede8;
    --c-muted: #aaa9a6;
    --c-card: #26262a;
    --c-border: #3e3e42;
    --c-gold: #f5c518;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: .22s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', 'Helvetica Neue', Arial, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    color: var(--c-teal);
    text-decoration: none;
    transition: opacity var(--transition);
}

a:hover {
    opacity: .8;
}

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

/* ── Buttons ─────────────────────────────────────── */
.btn-pu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-pu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
    opacity: .93;
}

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

.btn-login {
    background: var(--c-teal);
    color: #000;
}

.btn-signup {
    background: var(--c-red);
    color: #fff;
}

.btn-bonus {
    background: var(--c-red);
    color: #fff;
    font-size: 1rem;
    padding: 13px 30px;
}

.btn-teal {
    background: var(--c-teal);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--c-teal);
    border: 2px solid var(--c-teal);
}

/* ── Header ──────────────────────────────────────── */
#pu-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--c-header);
    border-bottom: 1px solid #1f1f1f;
    padding: 0 16px;
}

.pu-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 66px;
}

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

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

.pu-nav a {
    color: var(--c-text);
    font-size: .88rem;
    transition: color var(--transition);
}

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

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

.pu-online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1b;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .78rem;
    color: var(--c-muted);
    border: 1px solid #2e2e32;
    margin-right: 8px;
}

.pu-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c-teal);
    animation: pulse 1.6s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .4;
    }
}

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

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

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

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

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

.pu-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 16px;
    background: var(--c-header);
    border-top: 1px solid #222;
}

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

.pu-mobile-menu a {
    color: var(--c-text);
    font-size: .92rem;
    padding: 6px 0;
    border-bottom: 1px solid #1c1c1e;
}

.pu-mobile-menu a:last-child {
    border-bottom: none;
}

#pu-hero {
    position: relative;
    background: url('/hero-pinup.png') center/cover no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#pu-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .3) 100%);
}

.pu-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 20px;
    flex: 1;
}

.pu-hero-content h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    color: #fff;
}

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

.pu-hero-content p {
    font-size: 1.1rem;
    color: #d4d0cc;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.6;
}

.pu-hero-bonus-tag {
    display: inline-block;
    background: var(--c-red);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    animation: tagPop .5s ease;
}

@keyframes tagPop {
    from {
        transform: scale(.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Breadcrumbs ─────────────────────────────────── */
#pu-breadcrumbs {
    background: var(--c-dark);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
}

.pu-breadcrumbs-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.pu-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    font-size: .83rem;
    color: var(--c-muted);
}

.pu-breadcrumbs-list li + li::before {
    content: '/';
    margin-right: 6px;
    color: #666;
}

.pu-breadcrumbs-list a {
    color: var(--c-muted);
}

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

.pu-breadcrumbs-list li:last-child {
    color: var(--c-text);
}

/* ── Main wrapper ────────────────────────────────── */
.pu-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Section heading */
.pu-section {
    padding: 48px 0;
}

.pu-section-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    border-left: 4px solid var(--c-teal);
    padding-left: 14px;
}

.pu-section-sub {
    font-size: .9rem;
    color: var(--c-muted);
    margin-bottom: 28px;
    padding-left: 18px;
}

/* ── Card / box ──────────────────────────────────── */
.pu-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: box-shadow var(--transition);
}

.pu-card:hover {
    box-shadow: 0 4px 24px rgba(0, 251, 200, .07);
}

/* ── Mirrors Table ───────────────────────────────── */
.pu-mirror-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pu-mirror-datetime {
    font-size: .85rem;
    color: var(--c-muted);
}

.pu-mirror-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--c-teal);
    font-size: .82rem;
    font-weight: 700;
}

.pu-table-wrap {
    overflow-x: auto;
}

.pu-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: .92rem;
    text-align: left;
}

.pu-table thead tr {
    background: #111;
}

.pu-table th {
    padding: 12px 14px;
    color: var(--c-muted);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--c-border);
}

.pu-table td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: middle;
}

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

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

.pu-table .pu-status-ok {
    color: var(--c-teal);
    font-weight: 700;
}

.pu-table .pu-status-warn {
    color: var(--c-gold);
    font-weight: 700;
}

/* ── Screenshots slider ──────────────────────────── */
.pu-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.pu-slides {
    display: flex;
    transition: transform .4s ease;
}

.pu-slide {
    flex: 0 0 100%;
}

.pu-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius);
}

.pu-slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.pu-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

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

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

.pu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-border);
    cursor: pointer;
    transition: background var(--transition);
}

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

/* 3-col desktop screenshots */
.pu-screenshots-grid {
    display: flex;
    gap: 16px;
}

.pu-screenshots-grid img {
    flex: 1;
    border-radius: var(--radius);
    object-fit: cover;
    height: 220px;
    transition: transform var(--transition);
}

.pu-screenshots-grid img:hover {
    transform: scale(1.025);
}

/* ── Games grid ──────────────────────────────────── */
.pu-games-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pu-game-card {
    flex: 0 0 calc(16.6% - 14px);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.pu-game-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.pu-game-info {
    padding: 12px 10px;
}

.pu-game-info .pu-game-name {
    font-size: .84rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* Games mobile slider */
.pu-games-slider-wrap {
    display: none;
    overflow: hidden;
}

.pu-games-slides {
    display: flex;
    gap: 12px;
    transition: transform .4s ease;
}

.pu-games-slide {
    flex: 0 0 calc(50% - 6px);
}

/* ── Wheel of Fortune ────────────────────────────── */
.pu-wheel-section {
    text-align: center;
}

.pu-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.pu-wheel-outer {
    position: relative;
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 18px rgba(0, 251, 200, .25));
}

#pu-wheel-canvas {
    border-radius: 50%;
}

.pu-wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--c-red);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
}

.pu-wheel-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.pu-win-text {
    color: var(--c-teal);
    font-weight: 700;
    font-size: 1.15rem;
    animation: fadeIn .5s ease;
}

.pu-lose-text {
    color: var(--c-muted);
    font-size: .95rem;
}

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

/* ── Reviews ─────────────────────────────────────── */
.pu-reviews-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pu-review-card {
    flex: 1 1 calc(33% - 12px);
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
}

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

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

.pu-review-meta {
    display: flex;
    flex-direction: column;
}

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

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

.pu-review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--c-gold);
}

.pu-review-text {
    font-size: .88rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.pu-review-date {
    font-size: .75rem;
    color: #666;
    margin-top: 8px;
}

/* Review form */
.pu-review-form-wrap .pu-card {
    max-width: 560px;
}

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

.pu-form-group {
    margin-bottom: 16px;
}

.pu-form-group label {
    display: block;
    font-size: .84rem;
    color: var(--c-muted);
    margin-bottom: 6px;
}

.pu-form-input, .pu-form-textarea {
    width: 100%;
    padding: 11px 14px;
    background: #1e1e20;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: inherit;
    font-size: .9rem;
    transition: border-color var(--transition);
    outline: none;
}

.pu-form-input:focus, .pu-form-textarea:focus {
    border-color: var(--c-teal);
}

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

.pu-form-success {
    display: none;
    background: rgba(0, 251, 200, .1);
    border: 1px solid var(--c-teal);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: var(--c-teal);
    font-size: .9rem;
    margin-top: 14px;
    animation: fadeIn .4s ease;
}

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

/* ── Content block (bare HTML from CMS) ──────────── */
.pu-content-body {
    line-height: 1.7;
    color: var(--c-text);
}

.pu-content-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px;
    border-left: 3px solid var(--c-teal);
    padding-left: 12px;
}

.pu-content-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-teal);
    margin: 22px 0 10px;
}

.pu-content-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ddd;
    margin: 18px 0 8px;
}

.pu-content-body p {
    margin-bottom: 14px;
}

.pu-content-body ul, .pu-content-body ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

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

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

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

.pu-content-body em, .pu-content-body i {
    color: var(--c-muted);
    font-style: italic;
}

.pu-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: .9rem;
}

.pu-content-body table th, .pu-content-body table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid var(--c-border);
}

.pu-content-body table th {
    background: #111;
    color: var(--c-muted);
    font-size: .8rem;
    text-transform: uppercase;
}

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

.pu-content-body blockquote {
    border-left: 3px solid var(--c-teal);
    padding: 10px 16px;
    margin: 16px 0;
    background: #1e1e22;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--c-muted);
    font-style: italic;
}

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

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

/* Author block */
.pu-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1e1e22;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 36px;
}

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

.pu-author-info {
    flex: 1;
}

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

.pu-author-role {
    font-size: .82rem;
    color: var(--c-muted);
    margin: 2px 0 6px;
}

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

/* ── Footer ──────────────────────────────────────── */
#pu-footer {
    background: var(--c-header);
    border-top: 1px solid #1f1f1f;
    padding: 40px 16px 24px;
    margin-top: 60px;
}

.pu-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
}

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

.pu-footer-col {
    flex: 1 1 200px;
}

.pu-footer-col-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.pu-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pu-footer-col ul a {
    color: #888;
    font-size: .88rem;
}

.pu-footer-col ul a:hover {
    color: var(--c-teal);
}

.pu-footer-logo img {
    height: 38px;
    margin-bottom: 14px;
}

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

.pu-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.pu-footer-logos .pu-logo-pill {
    background: #1a1a1c;
    border: 1px solid #2e2e32;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .74rem;
    font-weight: 700;
    color: #888;
    letter-spacing: .04em;
}

.pu-footer-divider {
    border: none;
    border-top: 1px solid #1c1c1e;
    margin: 24px 0;
}

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

.pu-footer-copy {
    font-size: .78rem;
    color: #555;
    line-height: 1.7;
    max-width: 680px;
}

.pu-footer-copy a {
    color: #666;
}

.pu-license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1c;
    border: 1px solid #2e2e32;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: .75rem;
    color: #666;
}

/* ── Bottom widget ───────────────────────────────── */
#pu-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: linear-gradient(90deg, #0d0d0d 0%, #1a0000 100%);
    border-top: 2px solid var(--c-red);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.pu-widget-text {
    font-size: .88rem;
    color: #fff;
    line-height: 1.4;
}

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

.pu-widget-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pu-widget-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px 8px;
    transition: color var(--transition);
}

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

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

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

.pu-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 20px;
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pu-faq-q:hover {
    color: var(--c-teal);
}

.pu-faq-icon {
    font-size: 1.2rem;
    color: var(--c-teal);
    flex-shrink: 0;
    transition: transform .25s;
}

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

.pu-faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: .9rem;
    color: var(--c-muted);
    line-height: 1.65;
}

.pu-faq-item.open .pu-faq-a {
    display: block;
    animation: fadeIn .25s ease;
}

/* ── Fade-in sections on scroll ──────────────────── */
.pu-fade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.pu-fade.visible {
    opacity: 1;
    transform: none;
}

/* ── Unused/decoy rules (for uniqualization) ─────── */
.wp-block-cover {
    background-size: cover;
}

.entry-content {
    margin: 0 auto;
}

.elementor-section {
    width: 100%;
}

.pu-x9k2m3 {
    display: none;
}

.pu-z3m7q9 {
    visibility: hidden;
}

.pu-qw18b5 {
    pointer-events: none;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .pu-game-card {
        flex: 0 0 calc(33.3% - 11px);
    }
}

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

    .pu-burger {
        display: flex;
    }

    .pu-hero-content h1 {
        font-size: 1.65rem;
    }

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

    .pu-screenshot-slider {
        display: block;
    }

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

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

    .pu-game-card {
        flex: 0 0 calc(50% - 6px);
    }

    .pu-reviews-grid .pu-review-card {
        flex: 1 1 100%;
    }

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

    .pu-games-slide {
        flex: 0 0 calc(50% - 6px);
    }

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

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

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

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

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

    .pu-wheel-outer {
        width: 250px;
        height: 250px;
    }

    .pu-review-card {
        padding: 14px;
    }

    .pu-footer-top {
        flex-direction: column;
    }

    .pu-game-card {
        flex: 0 0 calc(50% - 6px);
    }

    .pu-games-slide {
        flex: 0 0 calc(100%);
    }

    #pu-widget {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pu-header-right .btn-pu {
        padding: 7px 14px;
        font-size: .8rem;
    }
}

/* bottom widget body padding */
body {
    padding-bottom: 74px;
}

.lmgcrs {
    --lmgcrs-bg: #24262c;
    --lmgcrs-bg-soft: #2d3038;
    --lmgcrs-card: rgba(255, 255, 255, 0.04);
    --lmgcrs-border: rgba(255, 255, 255, 0.08);
    --lmgcrs-text: #eef2f7;
    --lmgcrs-muted: #b8c0cc;
    --lmgcrs-accent: #00f5c8;
    --lmgcrs-accent-2: #ff5a36;
    --lmgcrs-accent-3: #ffd45c;
    --lmgcrs-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    max-width: 980px;
    margin: 40px auto;
    padding: 40px;
    color: var(--lmgcrs-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(--lmgcrs-border);
    border-radius: 28px;
    box-shadow: var(--lmgcrs-shadow);
    overflow: hidden;
}

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

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

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

.lmgcrs 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);
}

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

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

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

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

.lmgcrs > 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);
}

.lmgcrs > p:nth-of-type(2) {
    color: var(--lmgcrs-muted);
}

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

.lmgcrs ul {
    list-style: none;
}

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

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

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

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

.lmgcrs ol li::before {
    content: counter(lmgcrs-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(--lmgcrs-accent), #00c9ff);
    color: #0f1319;
    font-size: 15px;
    font-weight: 800;
}

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

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

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

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

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

.lmgcrs p:has(a[href^="mailto:"]),
.lmgcrs 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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