/* Pin-Up Casino — style.css?ver=2.1 */
/* Google Fonts PT Sans */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* ==========================================
   CSS Variables / Design Tokens
   ========================================== */
:root {
    --color-bg: #323234;
    --color-header-bg: #000000;
    --color-footer-bg: #000000;
    --color-primary: #00fbc8;
    --color-accent: #ff2e09;
    --color-text: #f0f0f0;
    --color-text-muted: #aaa;
    --color-card-bg: #222224;
    --color-card-bg2: #1a1a1c;
    --color-border: #3a3a3c;
    --color-btn-primary: #00fbc8;
    --color-btn-primary-text: #000;
    --color-btn-danger: #ff2e09;
    --color-btn-danger-text: #fff;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'PT Sans', sans-serif;
    --transition: 0.22s ease;
}

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

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

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

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

a:hover {
    opacity: 0.82;
}

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

ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

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

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

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

h3 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 0.75rem;
}

.btn-pu {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    text-decoration: none !important;
    line-height: 1.3;
}

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

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

.btn-teal {
    background: var(--color-btn-primary);
    color: var(--color-btn-primary-text) !important;
}

.btn-red {
    background: var(--color-btn-danger);
    color: var(--color-btn-danger-text);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

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

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

/* ==========================================
   Layout Helpers
   ========================================== */
.pu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

.section-gap-sm {
    padding: 36px 0;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--color-primary);
    margin-top: 6px;
    border-radius: 2px;
}

.text-teal {
    color: var(--color-primary);
}

.text-red {
    color: var(--color-accent);
}

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

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

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

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

/* ==========================================
   Cards / Boxes
   ========================================== */
.pu-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: box-shadow var(--transition);
}

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

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

.pu-card--dark {
    background: var(--color-card-bg2);
}

/* ==========================================
   HEADER
   ========================================== */
#pu-header {
    background: var(--color-header-bg);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

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

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

.online-count {
    font-size: 0.78rem;
    color: var(--color-primary);
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid rgba(0, 251, 200, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: #00fbc8;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

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

/* Burger */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 910;
}

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

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

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

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

/* Mobile nav */
@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0a;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid #222;
        z-index: 899;
    }

    .header-nav.open {
        display: flex;
    }

    .burger-btn {
        display: flex;
        order: -1;
    }

    .header-logo {
        order: 0;
    }

    .header-actions {
        order: 1;
    }
}

@media (max-width: 480px) {
    .btn-pu {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   HERO
   ========================================== */
#pu-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/hero-banner.jpg') center center / cover no-repeat;
    overflow: hidden;
}

#pu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(30, 10, 5, 0.55) 60%, rgba(0, 251, 200, 0.08) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 16px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

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

.hero-sub {
    color: #ddd;
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.65;
}

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

@media (max-width: 600px) {
    #pu-hero {
        min-height: 360px;
    }

    .hero-inner {
        padding: 40px 16px;
    }
}

/* ==========================================
   SECTION: Mirrors
   ========================================== */
#pu-mirrors {
    background: var(--color-card-bg2);
}

.mirrors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mirror-time {
    font-size: 0.85rem;
    color: var(--color-primary);
    background: rgba(0, 251, 200, 0.07);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    white-space: nowrap;
}

.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}

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

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

.pu-table thead th {
    text-align: left;
    padding: 12px 16px;
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 1px solid var(--color-border);
    white-space: nowrap;
}

.pu-table tbody tr {
    background: var(--color-card-bg);
    transition: background var(--transition);
}

.pu-table tbody tr:nth-child(even) {
    background: var(--color-card-bg2);
}

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

.pu-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
    text-align: left;
    color: var(--color-text);
}

.pu-table td:last-child, .pu-table th:last-child {
    text-align: center;
}

.mirror-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse-dot 2s infinite;
}

/* ==========================================
   SECTION: Screenshots
   ========================================== */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

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

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

.screenshot-caption {
    background: var(--color-card-bg);
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Swiper on mobile */
@media (max-width: 700px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-item img {
        height: 220px;
    }
}

/* ==========================================
   SECTION: App Info
   ========================================== */
#pu-app {
    background: var(--color-card-bg2);
}

.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.app-dl-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.app-dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none !important;
}

.app-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.app-dl-btn.ios {
    background: #111;
    color: #fff;
    border: 1px solid #333;
}

.app-dl-btn.android {
    background: #1a3a1a;
    color: #4caf50;
    border: 1px solid #2e602e;
}

.app-dl-btn.apk {
    background: #1a1a3a;
    color: var(--color-primary);
    border: 1px solid #2a2a6a;
}

.app-dl-btn svg {
    flex-shrink: 0;
}

.app-dl-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    display: block;
}

@media (max-width: 700px) {
    .app-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SECTION: Video
   ========================================== */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

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

/* ==========================================
   SECTION: Lucky Wheel
   ========================================== */
#pu-wheel {
    background: var(--color-card-bg2);
}

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

.wheel-canvas-wrap {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 251, 200, 0.25);
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--color-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 46, 9, 0.6));
    z-index: 10;
}

.wheel-result {
    display: none;
    text-align: center;
    background: var(--color-card-bg);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 400px;
    animation: fadeInUp 0.5s ease;
}

.wheel-result.win {
    border-color: var(--color-primary);
}

.wheel-result.lose {
    border-color: var(--color-accent);
}

.wheel-result h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.wheel-result p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

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

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

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    user-select: none;
    gap: 12px;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

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

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: var(--color-text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeInUp 0.28s ease;
}

/* ==========================================
   FOOTER
   ========================================== */
#pu-footer {
    background: var(--color-footer-bg);
    border-top: 1px solid #1a1a1a;
    padding: 48px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    margin-bottom: 12px;
}

.footer-col-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav a {
    color: #bbb;
    font-size: 0.9rem;
}

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

.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.payment-badge {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #ccc;
    white-space: nowrap;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.provider-badge {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 0.75rem;
    color: #aaa;
    white-space: nowrap;
}

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

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

.footer-legal {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #555;
}

@media (max-width: 800px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   WIDGET (bottom sticky)
   ========================================== */
#pu-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: linear-gradient(90deg, #0a0a0a 0%, #111 100%);
    border-top: 2px solid var(--color-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(255, 46, 9, 0.2);
}

.widget-text {
    font-size: 0.88rem;
    color: #fff;
}

.widget-text strong {
    color: var(--color-accent);
}

.widget-close {
    background: none;
    border: none;
    color: #555;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 8px;
    line-height: 1;
}

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

/* Push page content above widget */
body {
    padding-bottom: 64px;
}

/* ==========================================
   CONTENT BLOCK (raw HTML from CMS)
   ========================================== */
.content-block h1, .content-block h2, .content-block h3,
.content-block h4, .content-block h5, .content-block h6 {
    margin: 1.4rem 0 0.6rem;
    color: var(--color-text);
}

.content-block p {
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

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

.content-block ul, .content-block ol {
    padding-left: 22px;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: disc;
}

.content-block ol {
    list-style: decimal;
}

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

.content-block table {
    margin: 1rem auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    font-size: 0.9rem;
}

.content-block th {
    background: #000;
    color: var(--color-primary);
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.content-block td {
    padding: 9px 14px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
}

.content-block blockquote {
    border-left: 3px solid var(--color-primary);
    padding-left: 16px;
    color: var(--color-text-muted);
    font-style: italic;
    margin: 1rem 0;
}

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

.content-block img {
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 32px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
}

.author-info h4 {
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.author-info a {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.x7b2a9 {
    display: none;
}

.kd9f1c {
    visibility: hidden;
}

.q3r8mp {
    pointer-events: none;
}

.zk4n2l > span {
    color: transparent;
}

.wp-block-group--inner {
    overflow: hidden;
}

.elementor-widget-wrap--stretched {
    flex: 1 0 auto;
}

.e-global__typography--body {
    line-height: inherit;
}

.entry-meta--modified {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.wp-caption-text--hidden {
    display: none;
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
}

dfn {
    font-style: italic;
}

mark {
    background: rgba(0, 251, 200, 0.15);
    color: var(--color-primary);
    padding: 0 3px;
}

small {
    font-size: 0.8em;
}

sub, sup {
    font-size: 0.75em;
    vertical-align: baseline;
    position: relative;
}

sub {
    bottom: -4px;
}

sup {
    top: -4px;
}

kbd {
    background: #111;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 1px 6px;
    font-size: 0.85em;
    font-family: monospace;
}

code {
    background: #111;
    border-radius: 3px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 0.85em;
    color: var(--color-primary);
}

pre {
    background: #111;
    border: 1px solid #222;
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow-x: auto;
}

fieldset {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px;
}

legend {
    padding: 0 8px;
    color: var(--color-primary);
    font-size: 0.9rem;
}

details > summary {
    cursor: pointer;
}

dialog {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--color-text);
}

meter, progress {
    accent-color: var(--color-primary);
}

#pu-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 720px;
    background: #0d0f14;
}

.pu-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
}

.pu-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(0, 251, 200, .08), transparent 28%),
    linear-gradient(90deg, rgba(5, 7, 10, .92) 0%, rgba(7, 9, 13, .84) 36%, rgba(10, 12, 17, .58) 62%, rgba(10, 12, 17, .22) 100%);
}

.pu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .35) 100%);
    z-index: 1;
    pointer-events: none;
}

#pu-hero .pu-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pu-hero-content {
    max-width: 760px;
    padding: 92px 0 88px;
}

.pu-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 251, 200, .3);
    background: rgba(0, 251, 200, .08);
    color: #00fbc8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pu-hero-title {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -.03em;
    max-width: 900px;
}

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

.pu-hero-sub {
    margin: 0 0 28px;
    max-width: 640px;
    color: #d5d9e3;
    font-size: clamp(18px, 2.1vw, 25px);
    line-height: 1.6;
}

.pu-hero-bonus {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 46, 9, .28);
    background: linear-gradient(180deg, rgba(255, 46, 9, .12), rgba(255, 46, 9, .07));
    color: #fff;
    font-size: 16px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
}

.pu-hero-bonus strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.pu-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 38px;
}

.pu-hero-actions .btn-pu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 18px 32px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.pu-hero-actions .btn-pu:hover {
    transform: translateY(-2px);
}

.btn-pu--red {
    color: #fff;
    background: linear-gradient(180deg, #ff4a1f 0%, #ff2e09 100%);
    box-shadow: 0 14px 34px rgba(255, 46, 9, .28);
}

.btn-pu--red:hover {
    color: #fff;
    box-shadow: 0 18px 40px rgba(255, 46, 9, .34);
}

.btn-pu--accent {
    color: #081411;
    background: linear-gradient(180deg, #00fbc8 0%, #12dfb7 100%);
    box-shadow: 0 14px 34px rgba(0, 251, 200, .24);
}

.btn-pu--accent:hover {
    color: #081411;
    box-shadow: 0 18px 40px rgba(0, 251, 200, .3);
}

.pu-hero-trust {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pu-hero-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    backdrop-filter: blur(6px);
    color: #aeb6c7;
    font-size: 15px;
    line-height: 1.45;
}

.pu-hero-trust-item strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 16px;
}

.pu-hero-trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 251, 200, .1);
    color: #00fbc8;
    font-size: 20px;
    box-shadow: inset 0 0 0 1px rgba(0, 251, 200, .14);
}

@media (max-width: 1199px) {
    #pu-hero {
        min-height: 640px;
    }

    .pu-hero-content {
        max-width: 680px;
        padding: 78px 0 74px;
    }

    .pu-hero-trust {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        max-width: 720px;
    }
}

@media (max-width: 991px) {
    #pu-hero {
        min-height: auto;
    }

    .pu-hero-bg {
        background-position: center right 22%;
    }

    .pu-hero-bg::after {
        background: linear-gradient(180deg, rgba(6, 8, 11, .78) 0%, rgba(8, 10, 14, .86) 48%, rgba(8, 10, 14, .94) 100%);
    }

    .pu-hero-content {
        max-width: 100%;
        padding: 64px 0 60px;
    }

    .pu-hero-title {
        font-size: clamp(34px, 7vw, 56px);
        line-height: 1.08;
    }

    .pu-hero-sub {
        max-width: 100%;
        font-size: 18px;
    }

    .pu-hero-actions {
        gap: 12px;
        margin-bottom: 30px;
    }

    .pu-hero-actions .btn-pu {
        min-height: 56px;
        padding: 16px 24px;
        font-size: 16px;
    }

    .pu-hero-trust {
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767px) {
    #pu-hero .pu-container {
        padding: 0 16px;
    }

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

    .pu-hero-badge {
        min-height: 36px;
        margin-bottom: 18px;
        padding: 7px 14px;
        font-size: 11px;
    }

    .pu-hero-title {
        margin-bottom: 16px;
        font-size: clamp(30px, 10vw, 44px);
    }

    .pu-hero-sub {
        margin-bottom: 22px;
        font-size: 16px;
        line-height: 1.65;
    }

    .pu-hero-bonus {
        width: 100%;
        margin-bottom: 22px;
        padding: 14px 16px;
        border-radius: 16px;
        font-size: 15px;
    }

    .pu-hero-bonus strong {
        font-size: 22px;
    }

    .pu-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 26px;
    }

    .pu-hero-actions .btn-pu {
        width: 100%;
        min-height: 54px;
        padding: 16px 18px;
        border-radius: 16px;
        font-size: 15px;
    }

    .pu-hero-trust {
        grid-template-columns:1fr;
        gap: 10px;
        padding-top: 20px;
    }

    .pu-hero-trust-item {
        padding: 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    .pu-hero-trust-item strong {
        font-size: 15px;
    }

    .pu-hero-trust-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 18px;
    }
}

@media (max-width: 479px) {
    #pu-hero .pu-container {
        padding: 0 14px;
    }

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

    .pu-hero-title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .pu-hero-sub {
        font-size: 15px;
    }

    .pu-hero-bonus {
        gap: 8px;
        padding: 13px 14px;
    }

    .pu-hero-bonus strong {
        font-size: 20px;
    }

    .pu-hero-actions .btn-pu {
        min-height: 52px;
        font-size: 14px;
    }
}

.wrscs {
    width: 100%;
    max-width: 960px;
    margin: 40px auto;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
    box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
    color: #d8ddea;
    font-size: 16px;
    line-height: 1.75;
}

.wrscs h1,
.wrscs h2,
.wrscs h3,
.wrscs h4,
.wrscs h5,
.wrscs h6 {
    margin: 0 0 16px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

.wrscs h1 {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 22px;
}

.wrscs h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin-top: 34px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.wrscs h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    margin-top: 26px;
    color: #00fbc8;
}

.wrscs p {
    margin: 0 0 16px;
    color: #d4d9e5;
    font-size: 16px;
    line-height: 1.8;
}

.wrscs a {
    color: #00fbc8;
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}

.wrscs a:hover {
    color: #6fffe2;
}

.wrscs strong,
.wrscs b {
    color: #fff;
    font-weight: 700;
}

.wrscs ul,
.wrscs ol {
    margin: 18px 0 22px 22px;
    padding: 0;
}

.wrscs ul {
    list-style: disc;
}

.wrscs ol {
    list-style: decimal;
}

.wrscs li {
    margin-bottom: 10px;
    color: #d4d9e5;
    line-height: 1.7;
}

.wrscs li::marker {
    color: #00fbc8;
}

.wrscs img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 18px;
}

.wrscs table {
    display: block;
    width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.wrscs table th,
.wrscs table td {
    min-width: 180px;
    padding: 14px 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .08);
}

.wrscs table th {
    background: #10141d;
    color: #00fbc8;
    font-weight: 700;
}

.wrscs table td {
    background: rgba(255, 255, 255, .02);
    color: #d4d9e5;
}

.wrscs blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #00fbc8;
    border-radius: 0 16px 16px 0;
    background: rgba(0, 251, 200, .06);
    color: #d4d9e5;
}

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

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

.wrscs > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .wrscs {
        margin: 32px auto;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .wrscs h1 {
        margin-bottom: 18px;
    }

    .wrscs h2 {
        margin-top: 28px;
    }
}

@media (max-width: 767px) {
    .wrscs {
        margin: 24px auto;
        padding: 24px 18px;
        border-radius: 18px;
        font-size: 15px;
        line-height: 1.7;
    }

    .wrscs h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .wrscs h2 {
        font-size: clamp(22px, 7vw, 30px);
        margin-top: 24px;
        padding-bottom: 8px;
    }

    .wrscs h3 {
        font-size: clamp(18px, 6vw, 24px);
        margin-top: 20px;
    }

    .wrscs p,
    .wrscs li {
        font-size: 15px;
        line-height: 1.75;
    }

    .wrscs ul,
    .wrscs ol {
        margin: 16px 0 20px 18px;
    }

    .wrscs table th,
    .wrscs table td {
        min-width: 150px;
        padding: 12px 14px;
    }

    .wrscs blockquote {
        padding: 16px 16px 16px 18px;
        border-radius: 0 14px 14px 0;
    }
}

@media (max-width: 479px) {
    .wrscs {
        margin: 18px auto;
        padding: 20px 14px;
        border-radius: 16px;
    }

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

    .wrscs table th,
    .wrscs table td {
        min-width: 140px;
        padding: 10px 12px;
    }
}