
.wp-block-group, .wp-block-columns {
    display: block
}

.elementor-section, .elementor-widget-wrap {
    position: relative
}

.entry-content, .post-content {
    line-height: 1.6
}

.wp-caption, .wp-image-align-none {
    margin: 0 auto
}

:root {
    --pu-black: #000000;
    --pu-bg: #323234;
    --pu-bg-dark: #27272a;
    --pu-bg-card: #3d3d40;
    --pu-cyan: #00fbc8;
    --pu-cyan-dim: #00dbb0;
    --pu-red: #ff2e09;
    --pu-red-dim: #e02207;
    --pu-text: #f0f0f0;
    --pu-text-muted: #a0a0a4;
    --pu-border: #4a4a4e;
    --pu-radius: 10px;
    --pu-radius-sm: 6px;
    --pu-font: 'PT Sans', sans-serif;
    --pu-transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body.pu-body {
    font-family: var(--pu-font);
    background-color: var(--pu-bg);
    color: var(--pu-text);
    line-height: 1.65;
    margin: 0;
    overflow-x: hidden;
}

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

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

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

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

.btn {
    border-radius: var(--pu-radius-sm);
    font-weight: 700;
    transition: transform var(--pu-transition), opacity var(--pu-transition), box-shadow var(--pu-transition);
}

.btn:active {
    transform: scale(0.97);
}

.pu-btn-login {
    background: transparent;
    border: 2px solid var(--pu-cyan);
    color: var(--pu-cyan) !important;
    padding: 7px 18px;
    font-size: 0.875rem;
}

.pu-btn-login:hover {
    background: var(--pu-cyan);
    color: var(--pu-black) !important;
    box-shadow: 0 0 14px rgba(0, 251, 200, 0.45);
}

.pu-btn-signup {
    background: var(--pu-red);
    border: 2px solid var(--pu-red);
    color: #fff !important;
    padding: 7px 18px;
    font-size: 0.875rem;
}

.pu-btn-signup:hover {
    background: var(--pu-red-dim);
    border-color: var(--pu-red-dim);
    box-shadow: 0 0 14px rgba(255, 46, 9, 0.45);
    color: #fff !important;
}

.pu-btn-lg {
    padding: 12px 32px;
    font-size: 1rem;
}

.pu-btn-download {
    background: var(--pu-bg-card);
    border: 2px solid var(--pu-cyan);
    color: var(--pu-cyan) !important;
    padding: 10px 22px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pu-btn-download:hover {
    background: var(--pu-cyan);
    color: var(--pu-black) !important;
    box-shadow: 0 0 14px rgba(0, 251, 200, 0.4);
}

.pu-btn-download svg {
    flex-shrink: 0;
}

.pu-btn-spin {
    background: linear-gradient(135deg, var(--pu-cyan) 0%, var(--pu-cyan-dim) 100%);
    border: none;
    color: var(--pu-black) !important;
    font-weight: 700;
    padding: 12px 36px;
    font-size: 1rem;
    border-radius: var(--pu-radius-sm);
    transition: box-shadow var(--pu-transition), transform var(--pu-transition);
}

.pu-btn-spin:hover {
    box-shadow: 0 0 20px rgba(0, 251, 200, 0.55);
    transform: translateY(-1px);
}

.pu-btn-spin:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.pu-header {
    background-color: var(--pu-black);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.pu-hdr-inner {
    min-height: 54px;
}

.pu-logo img {
    display: block;
    object-fit: contain;
    border-radius: 4px;
}

.pu-nav-link {
    color: var(--pu-text) !important;
    font-size: 0.88rem;
    padding: 6px 10px;
    border-radius: var(--pu-radius-sm);
    transition: background var(--pu-transition), color var(--pu-transition);
}

.pu-nav-link:hover {
    background: rgba(0, 251, 200, 0.12);
    color: var(--pu-cyan) !important;
}

.pu-online-badge {
    font-size: 0.78rem;
    color: var(--pu-text-muted);
    white-space: nowrap;
}

.pu-online-dot {
    width: 8px;
    height: 8px;
    background: var(--pu-cyan);
    border-radius: 50%;
    display: inline-block;
    animation: pu-pulse 1.6s ease-in-out infinite;
}

@keyframes pu-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.35);
    }
}

.pu-online-count {
    color: var(--pu-cyan);
    font-weight: 700;
}

/* Burger */
.pu-burger {
    background: none;
    border: none;
    width: 34px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
    cursor: pointer;
    z-index: 950;
}

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

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

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

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

/* Mobile menu */
.pu-mobile-menu {
    background: var(--pu-black);
    padding: 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--pu-transition);
}

.pu-mobile-menu.is-open {
    max-height: 380px;
    padding: 10px 0 16px;
}

.pu-mob-link {
    display: block;
    color: var(--pu-text) !important;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background var(--pu-transition);
}

.pu-mob-link:hover {
    background: rgba(0, 251, 200, 0.1);
    color: var(--pu-cyan) !important;
}

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

.pu-hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pu-hero-caption {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 24px 20px 32px;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    transform: none;
}

.pu-hero-title {
    font-size: clamp(1.25rem, 4vw, 2.1rem);
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.pu-hero-sub {
    font-size: clamp(0.88rem, 2.5vw, 1.05rem);
    color: var(--pu-text);
    margin-bottom: 18px;
}

.pu-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.pu-main {
    flex: 1 1 auto;
}

.pu-h1-block .pu-page-h1 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--pu-text);
    margin-bottom: 8px;
}

.pu-breadcrumb {
    font-size: 0.82rem;
    color: var(--pu-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

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

.pu-bc-sep {
    color: var(--pu-text-muted);
}

.pu-section {
    background: var(--pu-bg-card);
    border-radius: var(--pu-radius);
    padding: 28px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--pu-border);
    animation: pu-fadeup 0.5s ease both;
}

@keyframes pu-fadeup {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pu-section-title {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    color: var(--pu-cyan);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 251, 200, 0.25);
}

.pu-section-sub {
    color: var(--pu-text-muted);
    font-size: 0.95rem;
}

.pu-prose {
    background: var(--pu-bg-card);
    border-radius: var(--pu-radius);
    padding: 28px 24px;
    margin-bottom: 24px;
    border: 1px solid var(--pu-border);
}

.pu-prose h2, .pu-prose h3, .pu-prose h4 {
    color: var(--pu-cyan);
    margin-top: 1.4em;
    margin-bottom: 0.5em;
}

.pu-prose p {
    margin-bottom: 0.9em;
    color: var(--pu-text);
    line-height: 1.7;
}

.pu-prose ul, .pu-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1em;
}

.pu-prose li {
    margin-bottom: 0.45em;
    color: var(--pu-text);
}

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

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

.pu-prose strong {
    color: #fff;
}

.pu-prose table {
    width: auto;
    min-width: 300px;
    border-collapse: collapse;
    margin: 1em auto;
}

.pu-prose table th, .pu-prose table td {
    padding: 8px 14px;
    border: 1px solid var(--pu-border);
    text-align: left;
    color: var(--pu-text);
}

.pu-prose table th {
    background: rgba(0, 251, 200, 0.1);
    color: var(--pu-cyan);
}

.pu-prose blockquote {
    border-left: 4px solid var(--pu-cyan);
    padding: 8px 16px;
    margin: 1em 0;
    background: rgba(0, 251, 200, 0.06);
    border-radius: 0 var(--pu-radius-sm) var(--pu-radius-sm) 0;
}

.pu-card {
    background: var(--pu-bg-dark);
    border-radius: var(--pu-radius);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--pu-border);
}

.pu-card-header {
    padding: 12px 18px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pu-card--pros .pu-card-header {
    background: rgba(0, 251, 200, 0.15);
    color: var(--pu-cyan);
}

.pu-card--cons .pu-card-header {
    background: rgba(255, 46, 9, 0.15);
    color: var(--pu-red);
}

.pu-check-list, .pu-cross-list {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
}

.pu-check-list li, .pu-cross-list li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--pu-text);
}

.pu-check-list li:last-child, .pu-cross-list li:last-child {
    border-bottom: none;
}

.pu-check-list li::before {
    content: '✓';
    color: var(--pu-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.pu-cross-list li::before {
    content: '✗';
    color: var(--pu-red);
    font-weight: 700;
    flex-shrink: 0;
}

.pu-table {
    color: var(--pu-text);
    border-collapse: collapse;
    width: 100%;
}

.pu-table thead th {
    background: rgba(0, 251, 200, 0.1);
    color: var(--pu-cyan);
    border: 1px solid var(--pu-border);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}

.pu-table tbody tr {
    border: 1px solid var(--pu-border);
    transition: background var(--pu-transition);
}

.pu-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.pu-table th[scope="row"] {
    color: var(--pu-text-muted);
    font-weight: 400;
    width: 38%;
}

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

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

.table-responsive {
    border-radius: var(--pu-radius-sm);
    overflow: hidden;
    border: 1px solid var(--pu-border);
}

.pu-slot-machine {
    background: var(--pu-bg-dark);
    border: 2px solid var(--pu-cyan);
    border-radius: var(--pu-radius);
    padding: 30px 20px;
    max-width: 460px;
    text-align: center;
    box-shadow: 0 0 32px rgba(0, 251, 200, 0.18);
}

.pu-reel {
    width: 90px;
    height: 90px;
    background: var(--pu-black);
    border: 2px solid var(--pu-border);
    border-radius: var(--pu-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    transition: filter 0.15s;
    user-select: none;
}

.pu-reel.spinning {
    filter: blur(3px);
    animation: pu-spin-reel 0.12s linear infinite;
}

@keyframes pu-spin-reel {
    from {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(6px);
    }
    to {
        transform: translateY(0);
    }
}

.pu-slot-result {
    min-height: 28px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--pu-text-muted);
}

.pu-slot-win {
    margin-top: 20px;
    padding: 16px;
    background: rgba(0, 251, 200, 0.1);
    border-radius: var(--pu-radius-sm);
    border: 1px solid var(--pu-cyan);
    animation: pu-winpop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pu-winpop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.pu-win-text {
    color: var(--pu-cyan);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.pu-faq-item.accordion-item {
    background: var(--pu-bg-dark);
    border: 1px solid var(--pu-border);
    border-radius: var(--pu-radius-sm) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.pu-faq-btn.accordion-button {
    background: var(--pu-bg-dark);
    color: var(--pu-text) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 20px;
    box-shadow: none !important;
}

.pu-faq-btn.accordion-button:not(.collapsed) {
    background: rgba(0, 251, 200, 0.08);
    color: var(--pu-cyan) !important;
}

.pu-faq-btn.accordion-button::after {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(140deg);
}

.pu-faq-body {
    background: var(--pu-bg-dark);
    color: var(--pu-text);
    font-size: 0.9rem;
    line-height: 1.65;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--pu-border);
}

.pu-author-block {
    background: var(--pu-bg-dark) !important;
    border-color: rgba(0, 251, 200, 0.2) !important;
}

.pu-author-avatar {
    width: 52px;
    height: 52px;
    background: var(--pu-cyan);
    color: var(--pu-black);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pu-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--pu-text);
    margin-bottom: 4px;
}

.pu-author-bio {
    color: var(--pu-text-muted);
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 6px;
}

.pu-author-link {
    font-size: 0.85rem;
    color: var(--pu-cyan);
}

.pu-footer {
    background: var(--pu-black);
    border-top: 1px solid var(--pu-border);
    padding: 40px 0 20px;
    margin-top: 32px;
}

.pu-footer-logo img {
    border-radius: 4px;
}

.pu-footer-desc {
    color: var(--pu-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.pu-footer-heading {
    color: var(--pu-cyan);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
}

.pu-footer-links li {
    margin-bottom: 6px;
}

.pu-footer-links a {
    color: var(--pu-text-muted);
    font-size: 0.85rem;
    transition: color var(--pu-transition);
}

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

.pu-footer-divider {
    border-color: var(--pu-border);
    margin: 24px 0 16px;
}

.pu-footer-legal {
    color: var(--pu-text-muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.pu-footer-legal a {
    color: var(--pu-cyan);
}

.pu-footer-copyright {
    margin-bottom: 4px;
}

.pu-footer-disclaimer {
    opacity: 0.65;
    font-size: 0.72rem;
}

.pu-pay-badge, .pu-prov-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--pu-border);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 0.75rem;
    color: var(--pu-text-muted);
    white-space: nowrap;
}

.pu-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pu-black);
    border-top: 2px solid var(--pu-red);
    z-index: 999;
    padding: 10px 16px;
    animation: pu-slideup 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes pu-slideup {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pu-widget-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pu-widget-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pu-widget-bonus {
    font-weight: 700;
    font-size: 1rem;
    color: var(--pu-cyan);
}

.pu-widget-sub {
    font-size: 0.78rem;
    color: var(--pu-text-muted);
}

.pu-widget-close {
    background: none;
    border: none;
    color: var(--pu-text-muted);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 6px;
    transition: color var(--pu-transition);
}

.pu-widget-close:hover {
    color: var(--pu-red);
}

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

.pu-f3k9 {
    display: none;
}

.pu-d7h2 {
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

.pu-z8w1 {
    overflow: hidden;
    max-height: 0;
}

.qr91-block {
    font-size: 0;
    line-height: 0;
}

@media (max-width: 575.98px) {
    .pu-hero-img {
        max-height: 280px;
    }

    .pu-hero-caption {
        padding: 16px 12px 22px;
    }

    .pu-section {
        padding: 18px 14px;
    }

    .pu-reel {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

    .pu-slot-machine {
        padding: 20px 12px;
    }

    .pu-btn-lg {
        padding: 10px 22px;
        font-size: 0.92rem;
    }
}

@media (min-width: 992px) {
    .pu-hero-img {
        max-height: 520px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.dbcud ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

.dbcud > h2:last-of-type + p {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
    .pu-hero {
        border-radius: 0 0 18px 18px;
        overflow: hidden;
    }

    #heroCarousel .carousel-item {
        position: relative;
        min-height: 420px;
        background: #000;
    }

    #heroCarousel .pu-hero-img {
        height: 420px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    #heroCarousel .carousel-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.78) 68%, rgba(0, 0, 0, 0.92) 100%);
        z-index: 1;
        pointer-events: none;
    }

    #heroCarousel .pu-hero-caption {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 2;
        padding: 18px 16px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(24, 25, 29, 0.7) 0%, rgba(14, 15, 18, 0.92) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        text-align: left;
    }

    #heroCarousel .pu-hero-title {
        font-size: 28px;
        line-height: 1.12;
        margin-bottom: 10px;
        text-align: left;
    }

    #heroCarousel .pu-hero-sub {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.88);
        text-align: left;
    }

    #heroCarousel .pu-btn-lg {
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 15px;
        justify-content: center;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 42px;
        height: 42px;
        top: 16px;
        bottom: auto;
        transform: none;
        opacity: 1;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(6px);
    }

    #heroCarousel .carousel-control-prev {
        left: 14px;
    }

    #heroCarousel .carousel-control-next {
        right: 14px;
    }

    #heroCarousel .carousel-control-prev-icon,
    #heroCarousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
}

@media (max-width: 480px) {
    #heroCarousel .carousel-item {
        min-height: 380px;
    }

    #heroCarousel .pu-hero-img {
        height: 380px;
    }

    #heroCarousel .pu-hero-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px 14px;
        border-radius: 16px;
    }

    #heroCarousel .pu-hero-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    #heroCarousel .pu-hero-sub {
        font-size: 14px;
        margin-bottom: 14px;
    }

    #heroCarousel .pu-btn-lg {
        min-height: 46px;
        font-size: 14px;
        padding: 11px 14px;
    }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 38px;
        height: 38px;
        top: 12px;
    }

    #heroCarousel .carousel-control-prev {
        left: 12px;
    }

    #heroCarousel .carousel-control-next {
        right: 12px;
    }
}

.pu-table.table,
.pu-table.table > :not(caption) > * > *,
.pu-table.table thead,
.pu-table.table tbody,
.pu-table.table tr,
.pu-table.table th,
.pu-table.table td {
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.table-responsive {
    background: transparent !important;
}

#winners .pu-table.table thead th {
    background: rgba(0, 251, 200, 0.08) !important;
}

#winners .pu-table.table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02) !important;
}

#winners .pu-table.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04) !important;
}

#winners .pu-table.table tbody tr:hover {
    background: rgba(0, 251, 200, 0.06) !important;
}

#app-info .pu-table.table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02) !important;
}

#app-info .pu-table.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04) !important;
}

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

#app-info .pu-table.table th[scope="row"] {
    background: rgba(0, 251, 200, 0.04) !important;
}

.pu-table.table,
.pu-table.table > :not(caption) > * > *,
.pu-table.table thead,
.pu-table.table tbody,
.pu-table.table tr,
.pu-table.table th,
.pu-table.table td {
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    color: var(--pu-text) !important;
}

.table-responsive {
    background: transparent !important;
}

.pu-table.table th,
.pu-table.table td {
    color: var(--pu-text) !important;
}

.pu-table.table thead th {
    color: var(--pu-cyan) !important;
}

.pu-table.table tbody td,
.pu-table.table tbody th {
    color: var(--pu-text) !important;
}

.pu-table .pu-win-amount {
    color: var(--pu-cyan) !important;
    font-weight: 700;
}

#winners .pu-table.table thead th {
    background: rgba(0, 251, 200, 0.08) !important;
    color: var(--pu-cyan) !important;
}

#winners .pu-table.table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02) !important;
}

#winners .pu-table.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04) !important;
}

#winners .pu-table.table tbody tr:hover {
    background: rgba(0, 251, 200, 0.06) !important;
}

#app-info .pu-table.table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02) !important;
}

#app-info .pu-table.table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04) !important;
}

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

#app-info .pu-table.table th[scope="row"] {
    background: rgba(0, 251, 200, 0.04) !important;
    color: var(--pu-cyan) !important;
}

#app-info .pu-table.table td {
    color: var(--pu-text) !important;
}