
:root {
    --pu-bg: #323234;
    --pu-header: #000000;
    --pu-footer: #000000;
    --pu-cyan: #00fbc8;
    --pu-red: #ff2e09;
    --pu-text: #e8e8ec;
    --pu-text-muted: #a0a0aa;
    --pu-block-bg: #28282a;
    --pu-block-bg2: #1e1e20;
    --pu-border: #3a3a3c;
    --pu-radius: 12px;
    --pu-radius-sm: 8px;
    --pu-font: 'PT Sans', sans-serif;
    --pu-shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --pu-transition: .22s ease;
}

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

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

body {
    font-family: var(--pu-font);
    background-color: var(--pu-bg);
    color: var(--pu-text);
    line-height: 1.6;
    min-height: 100vh;
}

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

a:hover {
    color: #fff;
}

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

strong {
    color: #fff;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--pu-font);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

/* ---- Unused style stubs for uniqueness ---- */
.x0000-ghost {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.qz91b-stub {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.wp9c-unused-class {
    font-size: 0;
}

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

.x7f2a-header-inner {
    padding: 10px 0;
    gap: 12px;
}

.x7f2a-logo-link img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.x7f2a-online-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pu-cyan);
    box-shadow: 0 0 6px var(--pu-cyan);
    animation: x7f2a-pulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes x7f2a-pulse {
    0%, 100% {
        box-shadow: 0 0 6px var(--pu-cyan);
    }
    50% {
        box-shadow: 0 0 14px var(--pu-cyan);
    }
}

.x7f2a-online-label {
    font-size: .82rem;
    color: var(--pu-text-muted);
}

.x7f2a-online-label strong {
    color: var(--pu-cyan);
}

/* Nav links */
.x7f2a-nav-link {
    color: var(--pu-text-muted);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color var(--pu-transition);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.x7f2a-nav-link:hover {
    color: var(--pu-cyan);
    border-bottom-color: var(--pu-cyan);
}

/* Auth buttons */
.x7f2a-btn-login {
    background: transparent;
    border: 2px solid var(--pu-cyan);
    color: var(--pu-cyan);
    font-weight: 700;
    font-size: .85rem;
    padding: 7px 18px;
    border-radius: 6px;
    transition: background var(--pu-transition), color var(--pu-transition), transform .1s;
    white-space: nowrap;
}

.x7f2a-btn-login:hover {
    background: var(--pu-cyan);
    color: #000;
    transform: translateY(-1px);
}

.x7f2a-btn-register {
    background: var(--pu-red);
    border: 2px solid var(--pu-red);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 7px 18px;
    border-radius: 6px;
    transition: background var(--pu-transition), box-shadow var(--pu-transition), transform .1s;
    white-space: nowrap;
}

.x7f2a-btn-register:hover {
    background: #e0200a;
    box-shadow: 0 4px 16px rgba(255, 46, 9, .4);
    transform: translateY(-1px);
    color: #fff;
}

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

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

.x7f2a-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.x7f2a-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu */
.x7f2a-mobile-menu {
    display: none;
    background: #0d0d0d;
    border-top: 1px solid #222;
    animation: x7f2a-slideDown .22s ease forwards;
}

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

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

.x7f2a-mobile-nav .x7f2a-nav-link {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--pu-border);
}

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

.x4e1d-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
}

.x4e1d-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.x4e1d-hero-content {
    max-width: 560px;
}

.x4e1d-hero-tag {
    display: inline-block;
    background: var(--pu-cyan);
    color: #000;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.x4e1d-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.x4e1d-hero-sub {
    font-size: 1.05rem;
    color: #d0d0d8;
    margin-bottom: 8px;
    line-height: 1.55;
}

.x4e1d-btn-hero-reg {
    background: var(--pu-red);
    color: #fff;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 46, 9, .45);
    transition: all var(--pu-transition);
}

.x4e1d-btn-hero-reg:hover {
    background: #e0200a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 46, 9, .55);
    color: #fff;
}

.x4e1d-btn-hero-demo {
    background: transparent;
    border: 2px solid var(--pu-cyan);
    color: var(--pu-cyan);
    font-weight: 700;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--pu-transition);
}

.x4e1d-btn-hero-demo:hover {
    background: var(--pu-cyan);
    color: #000;
    transform: translateY(-2px);
}

/* ========================
   MAIN BLOCKS
   ======================== */
.x4e1d-main {
    padding: 40px 0 60px;
}

.x4e1d-block {
    background: var(--pu-block-bg);
    border-radius: var(--pu-radius);
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: var(--pu-shadow);
    border: 1px solid var(--pu-border);
    transition: box-shadow var(--pu-transition);
    animation: x4e1d-fadeUp .4s ease both;
}

.x4e1d-block:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, .55);
}

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

.x4e1d-block-title {
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    position: relative;
    padding-bottom: 12px;
}

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

.x4e1d-block-sub {
    color: var(--pu-text-muted);
    font-size: .92rem;
    margin-top: 8px;
    margin-bottom: 22px;
}

/* ---- Info / App Tables ---- */
.x4e1d-info-table {
    width: 100%;
    color: var(--pu-text);
    font-size: .92rem;
}

.x4e1d-info-table td {
    padding: 10px 14px;
    border: 1px solid var(--pu-border);
    vertical-align: middle;
}

.x4e1d-info-table td:first-child {
    color: var(--pu-text-muted);
    width: 46%;
    background: var(--pu-block-bg2);
}

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

/* ---- Winners Table ---- */
.x4e1d-winners-table {
    width: 100%;
    color: var(--pu-text);
    font-size: .9rem;
}

.x4e1d-winners-table thead th {
    background: var(--pu-block-bg2);
    color: var(--pu-cyan);
    font-weight: 700;
    padding: 10px 14px;
    border: 1px solid var(--pu-border);
    text-align: left;
}

.x4e1d-winners-table tbody td {
    padding: 9px 14px;
    border: 1px solid var(--pu-border);
}

.x4e1d-winners-table tbody tr:nth-child(odd) td {
    background: var(--pu-block-bg2);
}

.x4e1d-winners-table tbody tr:hover td {
    background: rgba(0, 251, 200, .07);
}

.x4e1d-win-sum {
    color: var(--pu-cyan);
    font-weight: 700;
}

.x4e1d-winners-table tbody tr:nth-child(1) td:first-child,
.x4e1d-winners-table tbody tr:nth-child(2) td:first-child,
.x4e1d-winners-table tbody tr:nth-child(3) td:first-child {
    color: var(--pu-red);
    font-weight: 700;
}

/* ---- App block ---- */
.x4e1d-app-btns {
    max-width: 300px;
}

.x4e1d-app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    border-radius: var(--pu-radius-sm);
    font-family: var(--pu-font);
    font-weight: 700;
    transition: all var(--pu-transition);
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none;
}

.x4e1d-app-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.x4e1d-app-btn-sub {
    display: block;
    font-size: .7rem;
    font-weight: 400;
    opacity: .8;
}

.x4e1d-app-btn-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.x4e1d-app-ios {
    background: #1b1b1b;
    border-color: #444;
}

.x4e1d-app-gplay {
    background: #1b1b1b;
    border-color: #444;
}

.x4e1d-app-apk {
    background: rgba(0, 251, 200, .1);
    border-color: var(--pu-cyan);
    color: var(--pu-cyan);
}

.x4e1d-app-ios:hover {
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff;
}

.x4e1d-app-gplay:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    color: #fff;
}

.x4e1d-app-apk:hover {
    background: var(--pu-cyan);
    color: #000;
    transform: translateY(-2px);
}

/* ---- Bonuses ---- */
.x4e1d-bonus-card {
    background: var(--pu-block-bg2);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--pu-transition), box-shadow var(--pu-transition);
    position: relative;
    overflow: hidden;
}

.x4e1d-bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--pu-radius);
    background: linear-gradient(135deg, rgba(0, 251, 200, .04), transparent 60%);
    pointer-events: none;
}

.x4e1d-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .55);
    border-color: var(--pu-cyan);
}

.x4e1d-bonus-badge {
    display: inline-block;
    background: var(--pu-red);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
}

.x4e1d-bonus-badge--weekly {
    background: var(--pu-cyan);
    color: #000;
}

.x4e1d-bonus-badge--free {
    background: #8b5cf6;
}

.x4e1d-bonus-icon {
    width: 48px;
    height: 48px;
}

.x4e1d-bonus-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.x4e1d-bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pu-cyan);
    line-height: 1.1;
}

.x4e1d-bonus-desc {
    font-size: .88rem;
    color: var(--pu-text-muted);
    line-height: 1.5;
    flex: 1;
}

.x4e1d-btn-bonus-cta {
    background: var(--pu-red);
    color: #fff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: .9rem;
    margin-top: auto;
    transition: all var(--pu-transition);
    text-align: center;
}

.x4e1d-btn-bonus-cta:hover {
    background: #e0200a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 46, 9, .4);
}

/* Bonus slider (mobile) */
.x4e1d-bonus-slider {
    overflow: hidden;
}

.x4e1d-slider-track {
    display: flex;
    transition: transform .35s ease;
}

.x4e1d-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.x4e1d-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--pu-border);
    cursor: pointer;
    transition: background var(--pu-transition), transform var(--pu-transition);
    padding: 0;
}

.x4e1d-dot--active, .x4e1d-dot:hover {
    background: var(--pu-cyan);
    transform: scale(1.2);
}

/* ---- Demo block ---- */
.x4e1d-demo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 500px;
    background: #111;
    border-radius: var(--pu-radius-sm);
    border: 1px solid var(--pu-border);
}

.x4e1d-demo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .72);
    cursor: pointer;
    z-index: 5;
    transition: background var(--pu-transition);
}

.x4e1d-demo-overlay:hover {
    background: rgba(0, 0, 0, .6);
}

.x4e1d-demo-overlay.hidden {
    display: none;
}

.x4e1d-demo-play-btn {
    text-align: center;
}

.x4e1d-demo-play-btn svg {
    transition: transform var(--pu-transition), filter var(--pu-transition);
}

.x4e1d-demo-overlay:hover .x4e1d-demo-play-btn svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 16px rgba(255, 46, 9, .7));
}

.x4e1d-demo-play-txt {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 12px;
}

.x4e1d-demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.x4e1d-demo-note {
    font-size: .88rem;
    color: var(--pu-text-muted);
}

.x4e1d-link-accent {
    color: var(--pu-cyan);
    font-weight: 700;
}

.x4e1d-link-accent:hover {
    color: #fff;
}

/* ---- Content/Review block ---- */
.x4e1d-author-bar {
    border-bottom: 1px solid var(--pu-border);
    padding-bottom: 16px;
}

.x4e1d-author-avatar {
    border-radius: 50%;
    border: 2px solid var(--pu-cyan);
    object-fit: cover;
}

.x4e1d-author-name {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

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

/* Bare HTML content styling */
.x4e1d-review-body {
    padding-top: 16px;
}

.x4e1d-review-body h2,
.x4e1d-review-body h3 {
    font-size: 1.25rem;
    color: #fff;
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--pu-border);
}

.x4e1d-review-body p {
    margin-bottom: 14px;
    color: var(--pu-text);
    line-height: 1.65;
}

.x4e1d-review-body ul,
.x4e1d-review-body ol {
    margin: 0 0 14px 22px;
    color: var(--pu-text);
    line-height: 1.7;
}

.x4e1d-review-body li {
    margin-bottom: 6px;
}

.x4e1d-review-body strong {
    color: #fff;
}

.x4e1d-review-body a {
    color: var(--pu-cyan);
}

.x4e1d-review-body a:hover {
    color: #fff;
}

.x4e1d-review-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    overflow-x: auto;
    display: block;
    font-size: .9rem;
}

.x4e1d-review-body table th,
.x4e1d-review-body table td {
    border: 1px solid var(--pu-border);
    padding: 9px 14px;
    text-align: left;
    vertical-align: middle;
}

.x4e1d-review-body table thead th {
    background: var(--pu-block-bg2);
    color: var(--pu-cyan);
    font-weight: 700;
}

.x4e1d-review-body table tbody tr:nth-child(odd) td {
    background: rgba(255, 255, 255, .03);
}

.x4e1d-review-body blockquote {
    border-left: 4px solid var(--pu-cyan);
    padding: 10px 18px;
    background: var(--pu-block-bg2);
    border-radius: 0 var(--pu-radius-sm) var(--pu-radius-sm) 0;
    margin-bottom: 14px;
    font-style: italic;
    color: var(--pu-text-muted);
}

/* ---- FAQ / Accordion ---- */
.x4e1d-acc-item {
    background: var(--pu-block-bg2);
    border: 1px solid var(--pu-border) !important;
    border-radius: var(--pu-radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.x4e1d-acc-btn {
    background: var(--pu-block-bg2) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: .97rem;
    padding: 16px 20px;
    border: none !important;
    box-shadow: none !important;
}

.x4e1d-acc-btn::after {
    filter: invert(1) brightness(2);
}

.x4e1d-acc-btn:not(.collapsed) {
    color: var(--pu-cyan) !important;
}

.x4e1d-acc-body {
    background: #1a1a1c;
    color: var(--pu-text);
    font-size: .92rem;
    line-height: 1.65;
    padding: 16px 20px;
    border-top: 1px solid var(--pu-border);
}

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

.x9b3c-footer-inner {
    padding: 0;
}

.x9b3c-footer-desc {
    font-size: .82rem;
    color: var(--pu-text-muted);
    max-width: 200px;
    margin: 0;
}

.x9b3c-fnav-link {
    color: var(--pu-text-muted);
    font-size: .88rem;
    transition: color var(--pu-transition);
}

.x9b3c-fnav-link:hover {
    color: var(--pu-cyan);
}

.x9b3c-fcontact-title {
    font-weight: 700;
    color: #fff;
    font-size: .9rem;
    margin: 0;
}

.x9b3c-section-label {
    font-size: .8rem;
    color: var(--pu-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.x9b3c-flogo-link img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.x9b3c-provider-badge,
.x9b3c-pay-badge {
    display: inline-block;
    background: #1e1e20;
    border: 1px solid var(--pu-border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .8rem;
    color: var(--pu-text-muted);
    transition: border-color var(--pu-transition), color var(--pu-transition);
}

.x9b3c-provider-badge:hover,
.x9b3c-pay-badge:hover {
    border-color: var(--pu-cyan);
    color: var(--pu-cyan);
}

.x9b3c-legal-txt {
    font-size: .78rem;
    color: #555;
    margin-bottom: 6px;
}

.x9b3c-legal-txt a {
    color: #555;
}

.x9b3c-legal-txt a:hover {
    color: var(--pu-text-muted);
}


@media (max-width: 767px) {
    .x4e1d-block {
        padding: 20px 14px;
    }

    .x4e1d-hero {
        min-height: 340px;
    }

    .x4e1d-hero-content {
        max-width: 100%;
    }

    .x4e1d-demo-wrapper {
        aspect-ratio: 4/3;
    }

    .x7f2a-auth-btns .x7f2a-btn-login,
    .x7f2a-auth-btns .x7f2a-btn-register {
        padding: 6px 12px;
        font-size: .78rem;
    }

    .x4e1d-app-btns {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: .9rem;
    }

    .x4e1d-hero-title {
        font-size: 1.5rem;
    }

    .x4e1d-hero-sub {
        font-size: .9rem;
    }

    .x4e1d-btn-hero-reg, .x4e1d-btn-hero-demo {
        padding: 10px 18px;
        font-size: .9rem;
    }

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

    .x4e1d-widget-bonus {
        font-size: .85rem;
    }

    .x4e1d-btn-widget-reg {
        padding: 8px 14px;
        font-size: .82rem;
    }
}

/* ========================
   UNUSED STUBS (uniqueness)
   ======================== */
.ab7d2-placeholder-line {
    height: 1px;
    background: transparent;
}

.c0e91-invisible-tag {
    font-size: 0;
    line-height: 0;
}

.f3a55-noop-class {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.d8b1c-dummy-wrap {
    visibility: hidden;
    display: none;
}

.z2091-extra-rule {
    color: inherit;
    border: 0;
    margin: 0;
    padding: 0;
}

.table,
.table > :not(caption) > * > * {
    --bs-table-bg: transparent;
    --bs-table-color: var(--pu-text);
    --bs-table-border-color: var(--pu-border);
    background-color: transparent !important;
    color: var(--pu-text) !important;
    border-color: var(--pu-border) !important;
}

.table-responsive {
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius);
    overflow: auto;
    background: var(--pu-block-bg2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.x4e1d-info-table,
.x4e1d-winners-table,
.x4e1d-review-body table {
    width: 100%;
    min-width: 620px;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--pu-block-bg2);
    color: var(--pu-text);
}

.x4e1d-info-table td,
.x4e1d-winners-table th,
.x4e1d-winners-table td,
.x4e1d-review-body table th,
.x4e1d-review-body table td {
    padding: 13px 16px;
    border: 0;
    border-bottom: 1px solid var(--pu-border);
    color: var(--pu-text);
    background: transparent;
    vertical-align: middle;
}

.x4e1d-info-table tr:last-child td,
.x4e1d-winners-table tbody tr:last-child td,
.x4e1d-review-body table tbody tr:last-child td {
    border-bottom: 0;
}

.x4e1d-info-table td:first-child {
    width: 42%;
    color: var(--pu-text-muted) !important;
    background: rgba(0, 0, 0, .16) !important;
    font-weight: 600;
}

.x4e1d-info-table td:last-child {
    color: var(--pu-text) !important;
    font-weight: 700;
}

.x4e1d-winners-table thead th,
.x4e1d-review-body table thead th {
    background: rgba(0, 251, 200, .08) !important;
    color: var(--pu-cyan) !important;
    font-weight: 700;
    text-align: left;
}

.x4e1d-info-table tr:nth-child(even) td,
.x4e1d-winners-table tbody tr:nth-child(even) td,
.x4e1d-review-body table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .025) !important;
}

.x4e1d-info-table tr:hover td,
.x4e1d-winners-table tbody tr:hover td,
.x4e1d-review-body table tbody tr:hover td {
    background: rgba(0, 251, 200, .075) !important;
}

.x4e1d-info-table strong,
.x4e1d-winners-table strong,
.x4e1d-review-body table strong {
    color: var(--pu-text) !important;
}

.x4e1d-win-sum {
    color: var(--pu-cyan) !important;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .table-responsive {
        margin-inline: -6px;
        border-radius: var(--pu-radius-sm);
    }

    .x4e1d-info-table,
    .x4e1d-winners-table,
    .x4e1d-review-body table {
        min-width: 560px;
        font-size: .86rem;
    }

    .x4e1d-info-table td,
    .x4e1d-winners-table th,
    .x4e1d-winners-table td,
    .x4e1d-review-body table th,
    .x4e1d-review-body table td {
        padding: 11px 12px;
    }
}

@media (max-width: 480px) {
    .x4e1d-info-table,
    .x4e1d-winners-table,
    .x4e1d-review-body table {
        min-width: 500px;
        font-size: .82rem;
    }

    .x4e1d-info-table td,
    .x4e1d-winners-table th,
    .x4e1d-winners-table td,
    .x4e1d-review-body table th,
    .x4e1d-review-body table td {
        padding: 10px;
    }
}