/* Pin-Up Casino | style.css?ver=2.4 */
/* =========================================================
   VARIABLES & RESET
   ========================================================= */
:root {
    --clr-bg: #323234;
    --clr-dark: #1a1a1c;
    --clr-black: #000000;
    --clr-teal: #00fbc8;
    --clr-red: #ff2e09;
    --clr-text: #e8e8ec;
    --clr-muted: #9b9ba8;
    --clr-card: #27272a;
    --clr-border: #3f3f46;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-main: 'PT Sans', sans-serif;
    --shadow-glow-teal: 0 0 18px rgba(0, 251, 200, .35);
    --shadow-glow-red: 0 0 18px rgba(255, 46, 9, .35);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a:hover {
    color: #7ffce8;
}

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

ul, ol {
    list-style: none;
}

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

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

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

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

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.pu-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

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

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

.pu-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-teal);
    margin: 12px auto 0;
    border-radius: 99px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-pu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .2s, filter .2s;
    text-decoration: none !important;
    white-space: nowrap;
}

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

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

.btn-teal {
    background: var(--clr-teal);
    color: #000 !important;
    box-shadow: var(--shadow-glow-teal);
}

.btn-teal:hover {
    box-shadow: 0 0 28px rgba(0, 251, 200, .6);
    filter: brightness(1.08);
}

.btn-red {
    background: var(--clr-red);
    color: #fff !important;
    box-shadow: var(--shadow-glow-red);
}

.btn-red:hover {
    box-shadow: 0 0 28px rgba(255, 46, 9, .6);
    filter: brightness(1.1);
}

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

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

/* =========================================================
   HEADER
   ========================================================= */
#pu-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-black);
    border-bottom: 2px solid var(--clr-teal);
    box-shadow: 0 2px 20px rgba(0, 251, 200, .15);
}

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

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

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

.pu-nav a {
    color: var(--clr-text);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    transition: color .2s, background .2s;
}

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

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

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

.pu-online-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-teal);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

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

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

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

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

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

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

/* Mobile nav drawer */
.pu-mobile-drawer {
    display: none;
    background: var(--clr-black);
    border-top: 1px solid var(--clr-border);
    padding: 16px;
    flex-direction: column;
    gap: 8px;
}

.pu-mobile-drawer.is-open {
    display: flex;
}

.pu-mobile-drawer a {
    color: var(--clr-text);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: block;
}

.pu-mobile-drawer a:hover {
    color: var(--clr-teal);
    background: rgba(0, 251, 200, .08);
}

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

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

.pu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 16px;
}

.pu-hero-badge {
    display: inline-block;
    background: var(--clr-red);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: .04em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.pu-hero-content h1 {
    margin-bottom: 16px;
    color: #fff;
}

.pu-hero-content p {
    font-size: 1.05rem;
    color: var(--clr-text);
    margin-bottom: 28px;
    max-width: 480px;
}

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

.pu-hero-note {
    margin-top: 16px;
    font-size: .8rem;
    color: var(--clr-muted);
}

/* =========================================================
   ADVANTAGES
   ========================================================= */
#pu-advantages {
    background: var(--clr-dark);
}

.pu-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pu-adv-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}

.pu-adv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 251, 200, .06), transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}

.pu-adv-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-teal);
    box-shadow: var(--shadow-glow-teal);
}

.pu-adv-card:hover::before {
    opacity: 1;
}

.pu-adv-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(0, 251, 200, .5));
}

.pu-adv-card h3 {
    font-size: 1rem;
    color: var(--clr-teal);
    margin-bottom: 8px;
}

.pu-adv-card p {
    font-size: .875rem;
    color: var(--clr-muted);
    line-height: 1.55;
}

/* =========================================================
   JACKPOTS
   ========================================================= */
#pu-jackpots {
    background: var(--clr-bg);
}

.pu-jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pu-jackpot-card {
    background: linear-gradient(135deg, #1a1a1c, #2a1010);
    border: 2px solid var(--clr-red);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-glow-red);
    position: relative;
    overflow: hidden;
}

.pu-jackpot-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 46, 9, .25), transparent 70%);
    pointer-events: none;
}

.pu-jackpot-name {
    font-size: .85rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.pu-jackpot-amount {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 14px rgba(255, 215, 0, .6);
    letter-spacing: -.02em;
    margin-bottom: 8px;
    transition: transform .2s;
}

.pu-jackpot-amount.bump {
    transform: scale(1.12);
}

.pu-jackpot-sub {
    font-size: .8rem;
    color: var(--clr-muted);
}

/* =========================================================
   TOURNAMENTS
   ========================================================= */
#pu-tournaments {
    background: var(--clr-dark);
}

.pu-tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pu-tour-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .25s, border-color .25s;
}

.pu-tour-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-teal);
}

.pu-tour-badge {
    display: inline-block;
    background: rgba(0, 251, 200, .15);
    color: var(--clr-teal);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pu-tour-card h3 {
    font-size: 1.1rem;
    color: #fff;
}

.pu-tour-card p {
    font-size: .875rem;
    color: var(--clr-muted);
    flex: 1;
}

.pu-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--clr-border);
}

.pu-tour-prize {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.1rem;
}

.pu-tour-timer {
    font-size: .8rem;
    color: var(--clr-muted);
}

.pu-tour-timer span {
    color: var(--clr-red);
    font-weight: 700;
    font-size: .9rem;
}

/* =========================================================
   BONUSES
   ========================================================= */
#pu-bonuses {
    background: var(--clr-bg);
}

.pu-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pu-bonus-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, border-color .25s;
}

.pu-bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-red);
}

.pu-bonus-header {
    background: linear-gradient(135deg, #1e0a04, #3d1306);
    padding: 24px 20px 20px;
    position: relative;
    overflow: hidden;
}

.pu-bonus-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 46, 9, .3), transparent 70%);
}

.pu-bonus-tag {
    font-size: .75rem;
    color: var(--clr-red);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: 6px;
}

.pu-bonus-header h3 {
    font-size: 1.2rem;
    color: #fff;
}

.pu-bonus-header .pu-bonus-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--clr-teal);
    margin-top: 8px;
}

.pu-bonus-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pu-bonus-body ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pu-bonus-body ul li {
    font-size: .875rem;
    color: var(--clr-muted);
}

.pu-bonus-body ul li strong {
    color: var(--clr-text);
}

.pu-bonus-body .btn-pu {
    margin-top: auto;
    align-self: flex-start;
}

/* =========================================================
   SLOT MINI-GAME
   ========================================================= */
#pu-slot {
    background: var(--clr-dark);
}

.pu-slot-wrapper {
    max-width: 520px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 2px solid var(--clr-teal);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-glow-teal);
}

.pu-slot-title {
    margin-bottom: 6px;
}

.pu-slot-sub {
    color: var(--clr-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}

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

.pu-reel {
    width: 76px;
    height: 76px;
    background: var(--clr-black);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s;
    overflow: hidden;
    user-select: none;
}

.pu-reel.spinning {
    animation: reel-spin .1s steps(1) infinite;
    border-color: var(--clr-teal);
}

@keyframes reel-spin {
    0% {
        content: '';
    }
    25% {
        transform: rotateX(90deg);
    }
    50% {
        transform: rotateX(180deg);
    }
    75% {
        transform: rotateX(270deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

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

.pu-slot-win-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-teal);
}

.pu-slot-lose-text {
    font-size: 1rem;
    color: var(--clr-muted);
}

.pu-slot-win-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

/* =========================================================
   AUTHOR
   ========================================================= */
#pu-author {
    background: var(--clr-bg);
}

.pu-author-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

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

.pu-author-meta h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.pu-author-role {
    font-size: .85rem;
    color: var(--clr-teal);
    margin-bottom: 12px;
    display: block;
}

.pu-author-bio {
    font-size: .875rem;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.pu-author-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pu-author-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--clr-teal);
    border-radius: var(--radius-sm);
    font-size: .8rem;
    color: var(--clr-teal) !important;
    transition: background .2s;
}

.pu-author-links a:hover {
    background: rgba(0, 251, 200, .1);
}

/* =========================================================
   CONTENT BLOCK (bare HTML styling)
   ========================================================= */
#pu-content {
    background: var(--clr-bg);
}

.pu-content-inner {
    max-width: 860px;
    margin: 0 auto;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    line-height: 1.75;
}

.pu-content-inner h1,
.pu-content-inner h2,
.pu-content-inner h3,
.pu-content-inner h4,
.pu-content-inner h5,
.pu-content-inner h6 {
    color: #fff;
    margin: 1.4em 0 .6em;
}

.pu-content-inner h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: .4em;
}

.pu-content-inner h3 {
    font-size: 1.2rem;
    color: var(--clr-teal);
}

.pu-content-inner p {
    margin: .75em 0;
    color: var(--clr-text);
}

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

.pu-content-inner ul,
.pu-content-inner ol {
    padding-left: 24px;
    margin: .75em 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pu-content-inner ul {
    list-style: disc;
}

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

.pu-content-inner li {
    color: var(--clr-text);
    font-size: .95rem;
}

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

.pu-content-inner em,
.pu-content-inner i {
    color: var(--clr-teal);
    font-style: italic;
}

.pu-content-inner blockquote {
    border-left: 4px solid var(--clr-teal);
    padding: 12px 20px;
    background: rgba(0, 251, 200, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1em 0;
    color: var(--clr-muted);
    font-style: italic;
}

.pu-content-inner table {
    width: auto;
    min-width: 60%;
    max-width: 100%;
    margin: 1em auto;
    border-collapse: collapse;
    font-size: .9rem;
    display: block;
    overflow-x: auto;
}

.pu-content-inner table th,
.pu-content-inner table td {
    border: 2px solid var(--clr-border);
    padding: 10px 16px;
    text-align: left;
}

.pu-content-inner table th {
    background: var(--clr-dark);
    color: var(--clr-teal);
    font-weight: 700;
}

.pu-content-inner table td {
    background: var(--clr-black);
    color: var(--clr-text);
}

.pu-content-inner table tr:nth-child(even) td {
    background: #111114;
}

.pu-content-inner img {
    border-radius: var(--radius-sm);
    margin: 1em auto;
}

.pu-content-inner hr {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 2em 0;
}

/* =========================================================
   FAQ
   ========================================================= */
#pu-faq {
    background: var(--clr-dark);
}

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

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

.pu-faq-item.is-open {
    border-color: var(--clr-teal);
}

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

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

.pu-faq-chevron {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--clr-teal);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .3s;
}

.pu-faq-item.is-open .pu-faq-chevron {
    transform: rotate(180deg);
}

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

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

.pu-faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--clr-muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
#pu-footer {
    background: var(--clr-black);
    border-top: 2px solid var(--clr-border);
    padding: 48px 0 24px;
}

.pu-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

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

.pu-footer-brand p {
    font-size: .83rem;
    color: var(--clr-muted);
    line-height: 1.7;
}

.pu-footer-col h4 {
    font-size: .95rem;
    color: var(--clr-teal);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

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

.pu-footer-col ul li a {
    font-size: .87rem;
    color: var(--clr-muted);
    transition: color .2s;
}

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

.pu-footer-logos-row {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border);
}

.pu-footer-logos-row h5 {
    font-size: .8rem;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}

.pu-logos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pu-logo-pill {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: .78rem;
    color: var(--clr-muted);
    transition: border-color .2s, color .2s;
}

.pu-logo-pill:hover {
    border-color: var(--clr-teal);
    color: var(--clr-teal);
}

.pu-footer-bottom {
    text-align: center;
    font-size: .8rem;
    color: var(--clr-muted);
    line-height: 1.8;
}

.pu-footer-bottom a {
    color: var(--clr-muted);
}

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

/* =========================================================
   BOTTOM WIDGET
   ========================================================= */
#pu-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--clr-black);
    border-top: 2px solid var(--clr-red);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(255, 46, 9, .25);
}

.pu-widget-text {
    font-size: .88rem;
    color: var(--clr-text);
    flex: 1;
}

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

.pu-widget-close {
    background: none;
    border: none;
    color: var(--clr-muted);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
    flex-shrink: 0;
}

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

.pu-widget a.btn-pu {
    flex-shrink: 0;
    text-decoration: none !important;
}

/* =========================================================
   SLIDERS (mobile)
   ========================================================= */
.pu-slider-wrap {
    position: relative;
}

.pu-slider-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-border) transparent;
}

.pu-slider-track::-webkit-scrollbar {
    height: 4px;
}

.pu-slider-track::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 2px;
}

.pu-slider-track .pu-tour-card,
.pu-slider-track .pu-bonus-card {
    scroll-snap-align: start;
    min-width: 280px;
    flex-shrink: 0;
}

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

    .pu-nav {
        display: none;
    }

    .pu-burger {
        display: flex;
    }
}

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

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

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

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

    .pu-author-links {
        justify-content: center;
    }

    .pu-content-inner {
        padding: 24px 16px;
    }

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

    #pu-widget {
        flex-wrap: wrap;
    }

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

.pu-fade-in {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
}

html.js .pu-fade-in {
    opacity: 0;
    transform: translateY(24px);
}

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

.wpb_wrapper .vc_row {
}

.elementor-widget-container {
}

.entry-content {
}

.post-thumbnail {
}


.q3m8k1 {
    visibility: hidden;
}

#wp-content-editor-tools {
    display: none;
}

.rwmb-field {
}

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

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

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

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

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

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

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

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

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

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

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

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

.hncb ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    #pu-tournaments.pu-section {
        padding: 40px 0;
    }

    #pu-tournaments .pu-container {
        padding: 0 14px;
    }

    #pu-tournaments .pu-section-title {
        margin-bottom: 22px;
    }

    #pu-tournaments .pu-section-title h2 {
        font-size: 26px;
        line-height: 1.15;
    }

    #pu-tournaments .pu-tour-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 2px 2px 10px;
        margin: 0 -2px;
    }

    #pu-tournaments .pu-tour-grid::-webkit-scrollbar {
        height: 4px;
    }

    #pu-tournaments .pu-tour-grid::-webkit-scrollbar-thumb {
        background: var(--clr-border);
        border-radius: 999px;
    }

    #pu-tournaments .pu-tour-card {
        min-width: 86%;
        max-width: 86%;
        flex: 0 0 86%;
        scroll-snap-align: start;
        padding: 18px 16px;
        border-radius: 16px;
        gap: 10px;
    }

    #pu-tournaments .pu-tour-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    #pu-tournaments .pu-tour-card h3 {
        font-size: 20px;
        line-height: 1.2;
    }

    #pu-tournaments .pu-tour-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    #pu-tournaments .pu-tour-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding-top: 10px;
    }

    #pu-tournaments .pu-tour-prize {
        font-size: 20px;
        line-height: 1.1;
    }

    #pu-tournaments .pu-tour-timer {
        font-size: 13px;
        line-height: 1.4;
    }

    #pu-tournaments .btn-pu {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        padding: 12px 16px;
        justify-content: center;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    #pu-tournaments.pu-section {
        padding: 34px 0;
    }

    #pu-tournaments .pu-container {
        padding: 0 12px;
    }

    #pu-tournaments .pu-section-title {
        margin-bottom: 18px;
    }

    #pu-tournaments .pu-section-title h2 {
        font-size: 23px;
    }

    #pu-tournaments .pu-tour-grid {
        gap: 12px;
        padding-bottom: 8px;
    }

    #pu-tournaments .pu-tour-card {
        min-width: 90%;
        max-width: 90%;
        flex-basis: 90%;
        padding: 16px 14px;
        border-radius: 14px;
    }

    #pu-tournaments .pu-tour-card h3 {
        font-size: 18px;
    }

    #pu-tournaments .pu-tour-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    #pu-tournaments .pu-tour-prize {
        font-size: 18px;
    }

    #pu-tournaments .pu-tour-timer {
        font-size: 12px;
    }

    #pu-tournaments .btn-pu {
        min-height: 44px;
        font-size: 14px;
        padding: 11px 14px;
        border-radius: 10px;
    }
}