@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --pu-black: #000000;
    --pu-bg: #323234;
    --pu-bg2: #28282a;
    --pu-bg3: #3e3e40;
    --pu-cyan: #00fbc8;
    --pu-red: #ff2e09;
    --pu-text: #e8e8ea;
    --pu-muted: #9a9aaa;
    --pu-border: #484850;
    --pu-card: #2a2a2c;
    --pu-gold: #ffd700;
    --pu-radius: 10px;
    --pu-radius-sm: 6px;
    --font-main: 'PT Sans', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #fff;
}

ul, ol {
    padding-left: 1.4em;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: var(--pu-bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--pu-border);
    border-radius: 4px;
}

.pu-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pu-black);
    border-bottom: 2px solid var(--pu-cyan);
    box-shadow: 0 2px 18px rgba(0, 251, 200, .15);
}

.pu-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

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

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

.pu-header__nav a {
    color: var(--pu-text);
    font-size: 14px;
    padding: 6px 10px;
    border-radius: var(--pu-radius-sm);
    white-space: nowrap;
    transition: background .2s, color .2s;
}

.pu-header__nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--pu-cyan);
}

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

.pu-online {
    font-size: 12px;
    color: var(--pu-cyan);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pu-online__dot {
    width: 8px;
    height: 8px;
    background: var(--pu-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.btn-login {
    background: transparent;
    border: 2px solid var(--pu-cyan);
    color: var(--pu-cyan);
    padding: 7px 18px;
    border-radius: var(--pu-radius-sm);
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

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

.btn-signup {
    background: var(--pu-red);
    border: 2px solid var(--pu-red);
    color: #fff;
    padding: 7px 18px;
    border-radius: var(--pu-radius-sm);
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-signup:hover {
    background: #e62800;
    box-shadow: 0 0 12px rgba(255, 46, 9, .5);
}

/* BURGER */
.pu-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    flex-shrink: 0;
}

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

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

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

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

.pu-mobile-menu {
    display: none;
    background: var(--pu-black);
    border-top: 1px solid var(--pu-border);
    padding: 12px 20px 16px;
}

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

.pu-mobile-menu a {
    display: block;
    color: var(--pu-text);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 15px;
}

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

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

    .pu-burger {
        display: flex;
    }
}

@media (max-width: 520px) {
    .pu-header__inner {
        padding: 8px 12px;
    }

    .btn-login, .btn-signup {
        padding: 6px 12px;
        font-size: 13px;
    }

    .pu-online {
        display: none;
    }
}

.pu-hero {
    position: relative;
    overflow: hidden;
    background: var(--pu-black);
    max-height: 520px;
}

.pu-slider {
    position: relative;
    width: 100%;
}

.pu-slide {
    display: none;
    position: relative;
}

.pu-slide.active {
    display: block;
}

.pu-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
}

.pu-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
}

.pu-slide__title {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 560px;
}

.pu-slide__sub {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--pu-cyan);
    margin-bottom: 24px;
    max-width: 440px;
}

.pu-slide__btn {
    display: inline-block;
    background: var(--pu-red);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: var(--pu-radius-sm);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
    width: fit-content;
}

.pu-slide__btn:hover {
    background: #e62800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 9, .45);
    color: #fff;
}

.pu-slider__arrows {
    position: absolute;
    bottom: 16px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.pu-slider__arrow {
    background: rgba(0, 0, 0, .55);
    border: 1px solid var(--pu-border);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.pu-slider__arrow:hover {
    background: var(--pu-cyan);
    color: var(--pu-black);
}

.pu-slider__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.pu-slider__dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
    border: none;
}

.pu-slider__dot.active {
    background: var(--pu-cyan);
}

@media (max-width: 600px) {
    .pu-slide img {
        height: 260px;
    }

    .pu-slide__overlay {
        padding: 20px 20px;
    }
}

.pu-breadcrumbs {
    background: var(--pu-bg2);
    border-bottom: 1px solid var(--pu-border);
    padding: 10px 0;
}

.pu-breadcrumbs__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pu-muted);
    flex-wrap: wrap;
}

.pu-breadcrumbs__inner a {
    color: var(--pu-muted);
    transition: color .2s;
}

.pu-breadcrumbs__inner a:hover {
    color: var(--pu-cyan);
}

.pu-breadcrumbs__sep {
    color: var(--pu-border);
}

.pu-breadcrumbs__current {
    color: var(--pu-text);
}

.pu-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    display: grid;
    gap: 36px;
}

.pu-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--pu-cyan);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pu-border);
    line-height: 1.3;
}

.pu-info-block {
    background: var(--pu-card);
    border-radius: var(--pu-radius);
    border: 1px solid var(--pu-border);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.pu-info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pu-info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 540px;
}

.pu-info-table th,
.pu-info-table td {
    padding: 11px 18px;
    text-align: left;
    border-bottom: 1px solid var(--pu-border);
    font-size: 14px;
    vertical-align: top;
}

.pu-info-table th {
    background: var(--pu-bg2);
    color: var(--pu-muted);
    font-weight: 400;
    width: 200px;
    white-space: nowrap;
}

.pu-info-table td {
    color: var(--pu-text);
    font-weight: 700;
}

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

.pu-info-table tr:hover td,
.pu-info-table tr:hover th {
    background: rgba(255, 255, 255, .03);
}

.pu-info-table .val-green {
    color: var(--pu-cyan);
}

.pu-info-table .val-gold {
    color: var(--pu-gold);
}

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

.pu-jackpot-card {
    background: var(--pu-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 22px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.pu-jackpot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pu-cyan), var(--pu-gold));
}

.pu-jackpot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 251, 200, .18);
}

.pu-jackpot-card__icon {
    font-size: 32px;
    margin-bottom: 8px;
}

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

.pu-jackpot-card__amount {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--pu-gold);
    line-height: 1;
    letter-spacing: -.01em;
    text-shadow: 0 0 20px rgba(255, 215, 0, .4);
}

.pu-jackpot-card__sub {
    font-size: 12px;
    color: var(--pu-muted);
    margin-top: 6px;
}

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

.pu-screenshot {
    border-radius: var(--pu-radius-sm);
    overflow: hidden;
    border: 1px solid var(--pu-border);
    position: relative;
    aspect-ratio: 16/9;
}

.pu-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.pu-screenshot:hover img {
    transform: scale(1.04);
}

@media (max-width: 700px) {
    .pu-screenshots-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
    }

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

    .pu-screenshot {
        min-width: 82vw;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

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

.pu-tournament-card {
    background: var(--pu-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .2s;
}

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

.pu-tournament-card__badge {
    display: inline-block;
    background: var(--pu-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
    width: fit-content;
}

.pu-tournament-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--pu-text);
    line-height: 1.3;
}

.pu-tournament-card__desc {
    font-size: 13px;
    color: var(--pu-muted);
    line-height: 1.5;
}

.pu-tournament-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--pu-border);
}

.pu-tournament-card__prize {
    font-size: 20px;
    font-weight: 700;
    color: var(--pu-gold);
}

.pu-tournament-card__prize small {
    font-size: 12px;
    color: var(--pu-muted);
    display: block;
    font-weight: 400;
}

.pu-timer {
    font-size: 13px;
    color: var(--pu-cyan);
    font-weight: 700;
    text-align: right;
}

.pu-timer small {
    display: block;
    font-size: 11px;
    color: var(--pu-muted);
    font-weight: 400;
}

@media (max-width: 700px) {
    .pu-tournaments-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
    }

    .pu-tournament-card {
        min-width: 85vw;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.pu-wheel-block {
    background: var(--pu-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 32px 24px;
    text-align: center;
}

.pu-wheel-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto 20px;
}

.pu-wheel-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid var(--pu-red);
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(255, 46, 9, .5));
}

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

.pu-wheel-btn {
    display: inline-block;
    background: var(--pu-cyan);
    color: var(--pu-black);
    font-weight: 700;
    font-size: 16px;
    padding: 13px 40px;
    border-radius: var(--pu-radius-sm);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-bottom: 16px;
}

.pu-wheel-btn:hover {
    background: #00e4b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 251, 200, .35);
}

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

.pu-wheel-result {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pu-wheel-result__win {
    font-size: 20px;
    font-weight: 700;
    color: var(--pu-gold);
    animation: fadeInUp .4s ease;
}

.pu-wheel-result__lose {
    font-size: 16px;
    color: var(--pu-muted);
    animation: fadeInUp .4s ease;
}

.pu-wheel-result__cta {
    display: inline-block;
    background: var(--pu-red);
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--pu-radius-sm);
    text-decoration: none;
    transition: background .2s;
    animation: fadeInUp .5s ease .1s both;
}

.pu-wheel-result__cta:hover {
    background: #e62800;
    color: #fff;
}

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

.pu-content-block {
    background: var(--pu-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 28px 28px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--pu-text);
}

.pu-content-block h1,
.pu-content-block h2,
.pu-content-block h3,
.pu-content-block h4,
.pu-content-block h5,
.pu-content-block h6 {
    color: var(--pu-cyan);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: .6em;
}

.pu-content-block h1 {
    font-size: 1.7em;
}

.pu-content-block h2 {
    font-size: 1.4em;
}

.pu-content-block h3 {
    font-size: 1.2em;
}

.pu-content-block p {
    margin-bottom: .9em;
}

.pu-content-block ul,
.pu-content-block ol {
    margin-bottom: .9em;
    padding-left: 1.5em;
}

.pu-content-block li {
    margin-bottom: .3em;
}

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

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

.pu-content-block blockquote {
    border-left: 4px solid var(--pu-cyan);
    padding: 10px 16px;
    background: rgba(0, 251, 200, .05);
    border-radius: 0 6px 6px 0;
    margin: 1em 0;
    color: var(--pu-muted);
}

.pu-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    overflow-x: auto;
    display: block;
}

.pu-content-block table th {
    background: var(--pu-bg2);
    color: var(--pu-muted);
    font-weight: 700;
}

.pu-content-block table th,
.pu-content-block table td {
    padding: 9px 14px;
    border: 1px solid var(--pu-border);
    text-align: left;
    font-size: 14px;
}

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

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

.pu-content-block code {
    background: var(--pu-bg2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: .9em;
    color: var(--pu-cyan);
}

.pu-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--pu-card);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 18px 20px;
}

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

.pu-author-box__name {
    font-weight: 700;
    color: var(--pu-text);
}

.pu-author-box__bio {
    font-size: 13px;
    color: var(--pu-muted);
    line-height: 1.5;
    margin-top: 3px;
}

.pu-author-box__link {
    font-size: 13px;
    color: var(--pu-cyan);
    margin-top: 4px;
    display: inline-block;
}

.pu-faq {
    display: grid;
    gap: 8px;
}

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

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

.pu-faq-item__q:hover {
    background: rgba(255, 255, 255, .04);
}

.pu-faq-item__q .faq-ico {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--pu-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pu-cyan);
    font-size: 14px;
    transition: transform .3s, background .2s;
}

.pu-faq-item.open .pu-faq-item__q {
    color: var(--pu-cyan);
    background: rgba(0, 251, 200, .04);
}

.pu-faq-item.open .faq-ico {
    transform: rotate(45deg);
    background: var(--pu-cyan);
    color: var(--pu-black);
}

.pu-faq-item__a {
    display: none;
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--pu-muted);
    line-height: 1.65;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.pu-footer {
    background: var(--pu-black);
    border-top: 2px solid var(--pu-border);
    padding: 36px 0 20px;
}

.pu-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 28px;
}

.pu-footer__top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.pu-footer__logo img {
    height: 40px;
}

.pu-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.pu-footer__nav a {
    color: var(--pu-muted);
    font-size: 13px;
    transition: color .2s;
}

.pu-footer__nav a:hover {
    color: var(--pu-cyan);
}

.pu-footer__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--pu-muted);
    margin-bottom: 10px;
}

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

.pu-logos-row .logo-pill {
    background: var(--pu-bg3);
    border: 1px solid var(--pu-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pu-text);
    white-space: nowrap;
}

.pu-footer__legal {
    border-top: 1px solid var(--pu-border);
    padding-top: 18px;
    font-size: 12px;
    color: var(--pu-muted);
    line-height: 1.7;
}

.pu-footer__legal p {
    margin-bottom: .4em;
}

.pu-footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--pu-muted);
}

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

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

.pu-widget__text {
    font-size: 14px;
    color: var(--pu-text);
    line-height: 1.4;
}

.pu-widget__text strong {
    color: var(--pu-gold);
}

.pu-widget__btn {
    display: inline-block;
    background: var(--pu-red);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 28px;
    border-radius: var(--pu-radius-sm);
    text-decoration: none !important;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s;
    flex-shrink: 0;
}

.pu-widget__btn:hover {
    background: #e62800;
    box-shadow: 0 4px 16px rgba(255, 46, 9, .45);
}

.pu-widget__close {
    background: none;
    border: none;
    color: var(--pu-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s;
}

.pu-widget__close:hover {
    color: #fff;
}

body {
    padding-bottom: 70px;
}

.pu-widget.hidden {
    display: none;
}

.wp-block-cover {
    position: relative;
}

.wp-content {
    line-height: 1.8;
}

.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
}

.entry-content > * + * {
    margin-top: 1em;
}

.yoast-breadcrumb a {
    color: inherit;
}

.site-branding {
    display: flex;
    align-items: center;
}

.wpcf7-form .wpcf7-text {
    width: 100%;
}

.wp-caption {
    max-width: 100%;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.screen-reader-text {
    position: absolute;
    left: -9999em;
}

.wp-post-image {
    border-radius: 8px;
}

.has-background {
    padding: 1em;
}

.is-style-outline .wp-block-button__link {
    border: 2px solid currentColor;
}

.pu-xh9q2 {
    display: none;
}

.pu-mn7k1 {
    visibility: hidden;
    position: absolute;
}

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

@media (max-width: 480px) {
    .pu-main {
        padding: 20px 12px 50px;
        gap: 24px;
    }

    .pu-widget {
        padding: 8px 12px;
    }

    .pu-widget__text {
        font-size: 12px;
    }

    .pu-widget__btn {
        font-size: 13px;
        padding: 8px 18px;
    }
}

.incbtd {
    max-width: 980px;
    margin: 48px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(24, 24, 26, 0.98) 0%, rgba(38, 38, 40, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    color: #e8e8ea;
}

.incbtd h1 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.incbtd h2 {
    margin: 34px 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    color: #00fbc8;
}

.incbtd h3 {
    margin: 26px 0 14px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.incbtd p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #e8e8ea;
}

.incbtd ul,
.incbtd ol {
    margin: 0 0 22px;
    padding-left: 24px;
    color: #e8e8ea;
}

.incbtd li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.incbtd a {
    color: #00fbc8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.incbtd a:hover {
    color: #ffffff;
    opacity: 0.95;
}

.incbtd strong,
.incbtd b {
    color: #ffffff;
    font-weight: 700;
}

.incbtd table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
}

.incbtd th {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    color: #00fbc8;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.incbtd td {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.65;
    color: #e8e8ea;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.incbtd tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.incbtd blockquote {
    margin: 28px 0;
    padding: 22px 22px 22px 18px;
    background: rgba(0, 251, 200, 0.05);
    border-left: 4px solid #00fbc8;
    border-radius: 14px;
}

.incbtd blockquote p {
    margin: 0;
    color: #f1f1f1;
}

.incbtd img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.incbtd hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

    .incbtd h1 {
        font-size: 34px;
    }

    .incbtd h2 {
        font-size: 27px;
    }

    .incbtd h3 {
        font-size: 21px;
    }

    .incbtd p,
    .incbtd li {
        font-size: 16px;
    }

    .incbtd th,
    .incbtd td {
        padding: 14px;
    }
}

@media (max-width: 767px) {
    .incbtd {
        margin: 28px auto;
        padding: 24px 18px;
        border-radius: 16px;
    }

    .incbtd h1 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .incbtd h2 {
        margin: 28px 0 14px;
        font-size: 23px;
    }

    .incbtd h3 {
        margin: 22px 0 12px;
        font-size: 19px;
    }

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

    .incbtd ul,
    .incbtd ol {
        padding-left: 20px;
    }

    .incbtd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
    }

    .incbtd th,
    .incbtd td {
        min-width: 180px;
        padding: 12px;
        font-size: 14px;
    }

    .incbtd blockquote {
        padding: 18px 16px 18px 14px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .incbtd {
        margin: 20px auto;
        padding: 20px 14px;
    }

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

    .incbtd h2 {
        font-size: 20px;
    }

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

    .incbtd p,
    .incbtd li,
    .incbtd th,
    .incbtd td {
        font-size: 14px;
    }
}

html,
body,
div,
section,
article,
main,
aside,
footer,
table,
thead,
tbody,
tr,
th,
td,
blockquote {
    background-color: transparent !important;
}

body {
    background: #323234 !important;
}

.pu-header {
    background: #000000 !important;
    background-color: #000000 !important;
    opacity: 1 !important;
}

.pu-header__inner {
    background: transparent;
}

.pu-mobile-menu {
    background: #000000 !important;
}

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
    }

    .pu-hero {
        max-height: none;
    }

    .pu-slide {
        min-height: auto;
    }

    .pu-slide img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
    }

    .pu-slide__overlay {
        padding: 16px 14px 50px;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .3) 45%, rgba(0, 0, 0, .75) 100%);
    }

    .pu-slide__title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 8px;
        max-width: 100%;
    }

    .pu-slide__sub {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .pu-slide__btn {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 11px 16px;
        font-size: 14px;
    }

    .pu-slider__dots {
        bottom: 10px;
    }

    .pu-slider__arrows {
        bottom: 10px;
        right: 10px;
    }

    .pu-slider__arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .pu-main {
        display: block;
        padding: 16px 10px 90px;
    }

    .pu-main > div {
        margin-bottom: 18px;
    }

    .pu-section-title {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .pu-info-block,
    .pu-wheel-block,
    .pu-content-block,
    .pu-author-box,
    .pu-faq-item,
    .pu-jackpot-card,
    .pu-tournament-card {
        border-radius: 8px;
    }

    .pu-info-block {
        overflow: hidden;
    }

    .pu-info-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pu-info-table {
        min-width: 560px;
    }

    .pu-info-table th,
    .pu-info-table td {
        padding: 10px 12px;
        font-size: 13px;
        line-height: 1.4;
    }

    .pu-jackpots-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pu-jackpot-card {
        padding: 16px 14px;
    }

    .pu-jackpot-card__icon {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .pu-jackpot-card__name {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .pu-jackpot-card__amount {
        font-size: 24px;
    }

    .pu-jackpot-card__sub {
        font-size: 11px;
    }

    .pu-screenshots-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .pu-screenshot {
        min-width: 85%;
        flex: 0 0 auto;
        aspect-ratio: 16 / 10;
        scroll-snap-align: start;
    }

    .pu-tournaments-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .pu-tournament-card {
        min-width: 88%;
        flex: 0 0 auto;
        padding: 16px 14px;
        scroll-snap-align: start;
    }

    .pu-tournament-card__name {
        font-size: 16px;
    }

    .pu-tournament-card__desc {
        font-size: 13px;
        line-height: 1.45;
    }

    .pu-tournament-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pu-tournament-card__prize {
        font-size: 18px;
    }

    .pu-timer {
        text-align: left;
        font-size: 12px;
    }

    .pu-wheel-block {
        padding: 18px 12px;
    }

    .pu-wheel-wrap {
        width: 100%;
        max-width: 220px;
    }

    #wheelCanvas {
        width: 220px !important;
        height: 220px !important;
        margin: 0 auto;
    }

    .pu-wheel-pointer {
        top: -14px;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 18px solid var(--pu-red);
    }

    .pu-wheel-btn {
        width: 100%;
        max-width: 220px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .pu-wheel-result {
        min-height: 48px;
    }

    .pu-wheel-result__win {
        font-size: 17px;
        text-align: center;
    }

    .pu-wheel-result__lose {
        font-size: 14px;
        text-align: center;
    }

    .pu-wheel-result__cta {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 10px 14px;
    }

    .pu-content-block {
        padding: 16px 12px;
        font-size: 14px;
        line-height: 1.7;
    }

    .pu-content-block h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .pu-content-block h2 {
        font-size: 20px;
        line-height: 1.25;
    }

    .pu-content-block h3 {
        font-size: 17px;
        line-height: 1.3;
    }

    .pu-content-block p,
    .pu-content-block li {
        font-size: 14px;
        line-height: 1.7;
    }

    .pu-content-block ul,
    .pu-content-block ol {
        padding-left: 18px;
    }

    .pu-content-block table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }

    .pu-content-block table th,
    .pu-content-block table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .pu-content-block blockquote {
        padding: 10px 12px;
        font-size: 13px;
    }

    .pu-faq {
        gap: 8px;
    }

    .pu-faq-item__q {
        padding: 12px 12px;
        font-size: 14px;
        line-height: 1.4;
        align-items: flex-start;
    }

    .pu-faq-item__a {
        padding: 0 12px 12px;
        font-size: 13px;
        line-height: 1.6;
    }

    .pu-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 12px;
    }

    .pu-author-box__avatar {
        width: 56px;
        height: 56px;
    }

    .pu-author-box__bio,
    .pu-author-box__link {
        font-size: 12px;
    }

    .pu-footer__inner {
        padding: 0 10px;
    }

    .pu-footer__top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pu-footer__nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
    }

    .pu-footer__legal,
    .pu-footer__copyright {
        font-size: 11px;
    }

    .pu-widget {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 12px;
    }

    .pu-widget__text {
        font-size: 12px;
        text-align: center;
    }

    .pu-widget__btn {
        width: 100%;
        text-align: center;
        padding: 10px 14px;
        font-size: 13px;
    }

    .pu-widget__close {
        position: absolute;
        top: 6px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .pu-slide img {
        height: 190px;
    }

    .pu-slide__title {
        font-size: 19px;
    }

    .pu-slide__sub {
        font-size: 13px;
    }

    .pu-main {
        padding: 14px 8px 90px;
    }

    .pu-section-title {
        font-size: 18px;
    }

    .pu-info-table {
        min-width: 520px;
    }

    .pu-info-table th,
    .pu-info-table td {
        font-size: 12px;
        padding: 8px 9px;
    }

    .pu-jackpot-card__amount {
        font-size: 21px;
    }

    .pu-screenshot {
        min-width: 88%;
    }

    .pu-tournament-card {
        min-width: 90%;
    }

    #wheelCanvas {
        width: 200px !important;
        height: 200px !important;
    }

    .pu-wheel-wrap,
    .pu-wheel-btn,
    .pu-wheel-result__cta {
        max-width: 200px;
    }

    .pu-content-block {
        padding: 14px 10px;
    }

    .pu-content-block h1 {
        font-size: 22px;
    }

    .pu-content-block h2 {
        font-size: 18px;
    }

    .pu-content-block h3 {
        font-size: 16px;
    }

    .pu-content-block p,
    .pu-content-block li,
    .pu-faq-item__q,
    .pu-faq-item__a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .pu-screenshots-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

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

    .pu-screenshot {
        flex: 0 0 85%;
        min-width: 85%;
        aspect-ratio: 16 / 10;
        scroll-snap-align: start;
        border-radius: 10px;
    }

    .pu-screenshot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .pu-screenshots-grid {
        gap: 10px;
    }

    .pu-screenshot {
        flex: 0 0 90%;
        min-width: 90%;
        aspect-ratio: 16 / 11;
    }
}