
.xq7r2-stub {
    display: none;
    visibility: hidden;
}

.b3k9p-noop {
    opacity: 0;
    pointer-events: none;
}

.wp-block-group {
    box-sizing: border-box;
}

.entry-content-asset {
    max-width: 100%;
}

#wpadminbar {
    display: none !important;
}

:root {
    --clr-bg: #1C1C1C;
    --clr-header: #000000;
    --clr-accent: #FFDD00;
    --clr-accent-dark: #e5c700;
    --clr-text: #F0F0F0;
    --clr-text-muted: #AAAAAA;
    --clr-card: #252525;
    --clr-card-alt: #2a2a2a;
    --clr-border: #333333;
    --clr-green: #28a745;
    --clr-red: #dc3545;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--clr-accent);
    text-decoration: none;
}

a:hover {
    color: var(--clr-accent-dark);
}

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

#x9f2a-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--clr-header);
    border-bottom: 2px solid var(--clr-accent);
    padding: 0 16px;
}

.m3p7q-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 12px;
}

.k2v8w-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.k2v8w-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.n5t1x-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.n5t1x-nav a {
    color: var(--clr-text);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.n5t1x-nav a:hover {
    color: var(--clr-accent);
    background: rgba(255, 221, 0, .08);
}

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

.r8d2e-online-count {
    font-size: 11px;
    color: var(--clr-text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.r8d2e-online-count .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00e676;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

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

.btn-hdr-login {
    background: transparent;
    border: 2px solid var(--clr-accent);
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-hdr-login:hover {
    background: var(--clr-accent);
    color: #000;
}

.btn-hdr-reg {
    background: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-hdr-reg:hover {
    background: var(--clr-accent-dark);
    border-color: var(--clr-accent-dark);
    color: #000;
}

.j7s3h-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

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

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

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

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

.w4f6l-mobile-menu {
    display: none;
    flex-direction: column;
    background: #0a0a0a;
    border-top: 1px solid var(--clr-border);
    padding: 12px 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.w4f6l-mobile-menu.is-open {
    display: flex;
}

.w4f6l-mobile-menu a {
    color: var(--clr-text);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border);
    transition: background .2s;
}

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

.w4f6l-mobile-menu a:hover {
    background: rgba(255, 221, 0, .07);
    color: var(--clr-accent);
}

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

#p1u9v-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .1) 100%);
}

.h5c3r-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.h5c3r-hero-content h1 {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.h5c3r-hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    max-width: 520px;
    line-height: 1.55;
}

.e2g8t-hero-bonus {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-size: clamp(20px, 4vw, 36px);
    font-weight: 900;
    padding: 6px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.f9q1n-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(255, 221, 0, .4);
}

.f9q1n-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 221, 0, .55);
    color: #000;
}

.s4d7y-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px;
}

.t2k5p-section-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--clr-accent);
    display: inline-block;
}

#v3l8m-proscons {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.u1r6k-proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.q5f2b-pros-col, .o8n4j-cons-col {
    background: var(--clr-card-alt);
    border-radius: var(--radius-md);
    padding: 24px;
}

.q5f2b-pros-col h3 {
    color: var(--clr-green);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.o8n4j-cons-col h3 {
    color: var(--clr-red);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.y7c1w-pros-list, .i9p3e-cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.y7c1w-pros-list li, .i9p3e-cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-text);
}

.y7c1w-pros-list li::before {
    content: '✓';
    color: var(--clr-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.i9p3e-cons-list li::before {
    content: '✗';
    color: var(--clr-red);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

#c6r9v-content {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.wp-block-text-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--clr-accent);
}

.wp-block-text-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #e0e0e0;
}

.wp-block-text-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #d0d0d0;
}

.wp-block-text-content p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: var(--clr-text);
}

.wp-block-text-content ul, .wp-block-text-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

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

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

.wp-block-text-content strong {
    color: #fff;
}

.wp-block-text-content em {
    font-style: italic;
    color: #ccc;
}

.wp-block-text-content blockquote {
    border-left: 4px solid var(--clr-accent);
    padding: 12px 18px;
    margin: 18px 0;
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #ccc;
    font-style: italic;
}

.wp-block-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.wp-block-text-content th {
    background: var(--clr-accent);
    color: #000;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}

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

.wp-block-text-content tr:nth-child(even) td {
    background: rgba(255, 255, 255, .03);
}

#d4h8n-screenshots {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

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

.a2s9t-screenshots-grid img {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 2px solid var(--clr-border);
    transition: border-color .2s, transform .25s;
}

.a2s9t-screenshots-grid img:hover {
    border-color: var(--clr-accent);
    transform: scale(1.02);
}

.g6p1r-slider-wrap {
    position: relative;
    overflow: hidden;
}

.g6p1r-slider-track {
    display: flex;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.g6p1r-slider-track img {
    flex: 0 0 100%;
    width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 2px solid var(--clr-border);
}

.c8u5q-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.c8u5q-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-border);
    cursor: pointer;
    transition: background .2s;
}

.c8u5q-slider-dots .dot.active {
    background: var(--clr-accent);
}

#l7m3x-appinfo {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.b9q4z-app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.t6k2w-app-table-wrap {
    overflow-x: auto;
}

.e5n8j-app-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.e5n8j-app-table th, .e5n8j-app-table td {
    padding: 10px 16px;
    border: 1px solid var(--clr-border);
    text-align: left;
}

.e5n8j-app-table th {
    background: rgba(255, 221, 0, .1);
    color: var(--clr-accent);
    font-weight: 700;
    width: 40%;
}

.e5n8j-app-table td {
    color: var(--clr-text);
}

.e5n8j-app-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.v4r7u-app-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.j3c6d-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-card-alt);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    transition: border-color .2s, background .2s;
}

.j3c6d-store-btn:hover {
    border-color: var(--clr-accent);
    background: rgba(255, 221, 0, .06);
    color: var(--clr-text);
}

.j3c6d-store-btn svg {
    flex-shrink: 0;
}

.j3c6d-store-btn .s2l5p-btn-label {
    display: flex;
    flex-direction: column;
}

.j3c6d-store-btn .s2l5p-btn-label small {
    font-size: 11px;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.j3c6d-store-btn .s2l5p-btn-label strong {
    font-size: 15px;
}

#k8f1p-games {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.r2m9v-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.w5b4n-game-card:hover {
    border-color: var(--clr-accent);
    transform: translateY(-4px);
}

.w5b4n-game-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.u1h7c-game-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.u1h7c-game-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.q6t3y-play-btn {
    display: inline-block;
    background: var(--clr-accent);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background .2s;
    margin-top: auto;
}

.q6t3y-play-btn:hover {
    background: var(--clr-accent-dark);
    color: #000;
}

#z5r2q-wheel {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
    text-align: center;
}

.a8d3k-wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.n4v7p-canvas-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.n4v7p-canvas-container canvas {
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--clr-accent), 0 0 40px rgba(255, 221, 0, .25);
}

.m2s8g-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 24px solid var(--clr-accent);
    filter: drop-shadow(0 2px 6px rgba(255, 221, 0, .5));
}

.h6b9r-spin-btn {
    background: var(--clr-accent);
    color: #000;
    font-weight: 800;
    font-size: 16px;
    padding: 13px 40px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(255, 221, 0, .35);
}

.h6b9r-spin-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 221, 0, .5);
}

.h6b9r-spin-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.f1o5p-win-result {
    display: none;
    background: rgba(40, 167, 69, .12);
    border: 2px solid var(--clr-green);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    animation: fadeInUp .4s ease;
    text-align: center;
}

.f1o5p-win-result.show {
    display: block;
}

.f1o5p-win-result h3 {
    color: var(--clr-green);
    font-size: 20px;
    margin-bottom: 8px;
}

.f1o5p-win-result p {
    color: var(--clr-text);
    margin-bottom: 14px;
}

.l9e4m-lose-result {
    display: none;
    background: rgba(220, 53, 69, .1);
    border: 2px solid var(--clr-red);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    animation: fadeInUp .4s ease;
    text-align: center;
}

.l9e4m-lose-result.show {
    display: block;
}

.l9e4m-lose-result h3 {
    color: var(--clr-red);
    font-size: 18px;
    margin-bottom: 8px;
}

.c7k3f-get-bonus-btn {
    display: inline-block;
    background: var(--clr-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background .2s;
}

.c7k3f-get-bonus-btn:hover {
    background: #218838;
    color: #fff;
}

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

#t3n6s-faq {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.p8c2l-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.b5v9u-faq-item.open {
    border-color: var(--clr-accent);
}

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

.d7q4x-faq-question .icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    transition: background .2s, transform .3s;
    color: var(--clr-accent);
}

.b5v9u-faq-item.open .d7q4x-faq-question .icon {
    background: var(--clr-accent);
    color: #000;
    transform: rotate(45deg);
}

.r1m6k-faq-answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}

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

#g2b8t-author {
    background: var(--clr-card);
    border-radius: var(--radius-lg);
    margin: 20px;
}

.j5w3p-author-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.j5w3p-author-inner img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 3px solid var(--clr-accent);
    object-fit: cover;
    flex-shrink: 0;
}

.o4r7n-author-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.o4r7n-author-info p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.o4r7n-author-info a {
    color: var(--clr-accent);
    font-size: 13px;
}

#e9d2h-footer {
    background: var(--clr-header);
    border-top: 2px solid var(--clr-accent);
    padding: 40px 20px 24px;
}

.y3t6c-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.f8b1w-footer-top {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.k5m9v-footer-logo img {
    height: 40px;
}

.h2n7s-footer-nav h4, .p6q4r-footer-payment h4, .i1u8d-footer-providers h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    margin-bottom: 14px;
}

.h2n7s-footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.h2n7s-footer-nav ul a {
    font-size: 13px;
    color: var(--clr-text-muted);
    transition: color .2s;
}

.h2n7s-footer-nav ul a:hover {
    color: var(--clr-accent);
}

.w7c3p-payment-logos, .x4l6b-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.a9q2m-payment-badge, .r5d8k-provider-badge {
    background: var(--clr-card-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-text-muted);
    white-space: nowrap;
}

.t3v1e-footer-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 20px 0;
}

.u6o9k-footer-bottom {
    text-align: center;
    font-size: 12px;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

.u6o9k-footer-bottom p {
    margin-bottom: 6px;
}

#s7j4f-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, #000 0%, #111 100%);
    border-top: 3px solid var(--clr-accent);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.n2k8p-widget-text {
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 600;
    white-space: nowrap;
}

.n2k8p-widget-text span {
    color: var(--clr-accent);
    font-weight: 800;
}

.v5h1r-widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.m3b6q-reg-widget-btn {
    background: var(--clr-accent);
    color: #000 !important;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    text-decoration: none !important;
    transition: background .2s, transform .2s;
    animation: wiggle 3s ease 2s 3;
    white-space: nowrap;
    display: inline-block;
}

.m3b6q-reg-widget-btn:hover {
    background: var(--clr-accent-dark);
    transform: scale(1.04);
    color: #000 !important;
}

@keyframes wiggle {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.06);
    }
    20% {
        transform: scale(.97);
    }
}

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

    .k5m9v-footer-logo {
        grid-column: 1 / -1;
    }

    .b9q4z-app-inner {
        grid-template-columns: 1fr;
    }

    .r2m9v-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .u1r6k-proscons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .n5t1x-nav {
        display: none;
    }

    .j7s3h-burger {
        display: flex;
    }

    .a2s9t-screenshots-grid {
        display: none;
    }

    .g6p1r-slider-wrap.is-slider {
        display: block;
    }

    .r2m9v-games-grid {
        display: none;
    }

    .g7e2a-games-slider-wrap.is-slider {
        display: block;
    }

    .u1r6k-proscons-grid {
        grid-template-columns: 1fr;
    }

    .f8b1w-footer-top {
        grid-template-columns: 1fr;
    }

    .n4v7p-canvas-container {
        width: 260px;
        height: 260px;
    }

    .n4v7p-canvas-container canvas {
        width: 260px !important;
        height: 260px !important;
    }

    .s7j4f-widget-text-long {
        display: none;
    }

    .j5w3p-author-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.g6p1r-slider-wrap.is-slider {
    display: none;
}

.g7e2a-games-slider-wrap.is-slider {
    display: none;
}

.e2p1q-swipe-hint {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-align: center;
    margin-top: 8px;
    display: none;
}

@media (max-width: 640px) {
    .e2p1q-swipe-hint {
        display: block;
    }
}

body {
    padding-bottom: 58px;
}

.o3r7s-fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.o3r7s-fadein.visible {
    opacity: 1;
    transform: none;
}

.wp-content-area {
    display: contents;
}

.elementor-widget-container {
    display: contents;
}

.site-content {
    display: contents;
}

html,
body {
    background: #1c1c1c !important;
}

body,
.site,
.site-wrapper,
.site-content,
.wp-site-blocks,
.entry-content,
main,
main.site-main,
#primary,
#content,
.content-area {
    background: #1c1c1c !important;
}

.container.plbs {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 20px 72px;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    color: #f0f0f0;
    font-family: 'Open Sans', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.72;
}

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

.plbs h1,
.plbs h2,
.plbs h3,
.plbs h4 {
    line-height: 1.24;
    letter-spacing: -0.02em;
}

.plbs h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4.8vw, 52px);
    font-weight: 800;
    color: #ffffff;
}

.plbs h2 {
    margin: 46px 0 16px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffdd00;
}

.plbs h3 {
    margin: 28px 0 14px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #ffffff;
}

.plbs h4 {
    margin: 22px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #e6e6e6;
}

.plbs p {
    margin: 0 0 18px;
    color: #d8d8d8;
}

.plbs > h1 + p {
    font-size: 18px;
    color: #efefef;
}

.plbs a {
    color: #ffdd00;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.plbs a:hover {
    color: #ffe766;
    opacity: 1;
}

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

.plbs ul,
.plbs ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.plbs li {
    margin-bottom: 10px;
    color: #d9d9d9;
}

.plbs li::marker {
    color: #ffdd00;
}

.plbs table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0 34px;
    background: #1d1d1d;
    border: 1px solid #363636;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.plbs th,
.plbs td {
    text-align: left;
    vertical-align: top;
    padding: 14px 16px;
    border-bottom: 1px solid #363636;
}

.plbs th {
    background: #101010;
    font-size: 13px;
    font-weight: 700;
    color: #ffdd00;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plbs td {
    font-size: 15px;
    color: #ececec;
}

.plbs tbody tr:nth-child(even),
.plbs table tr:nth-child(even) td {
    background: #242424;
}

.plbs tbody tr:last-child td,
.plbs table tr:last-child td {
    border-bottom: 0;
}

.plbs blockquote {
    margin: 26px 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.08), rgba(255, 221, 0, 0.03));
    border-left: 4px solid #ffdd00;
    border-radius: 0 16px 16px 0;
}

.plbs blockquote p {
    margin-bottom: 0;
    color: #f3f3f3;
}

.plbs hr {
    border: 0;
    height: 1px;
    margin: 32px 0;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

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

@media (max-width: 991px) {
    .container.plbs {
        padding: 34px 18px 56px;
        border-radius: 18px;
        font-size: 15px;
    }

    .plbs h1 {
        margin-bottom: 20px;
    }

    .plbs h2 {
        margin-top: 40px;
    }

    .plbs table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .container.plbs {
        padding: 26px 14px 46px;
        border-radius: 16px;
        line-height: 1.66;
    }

    .plbs h1 {
        font-size: 30px;
    }

    .plbs h2 {
        font-size: 24px;
        margin-top: 34px;
        margin-bottom: 14px;
    }

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

    .plbs p,
    .plbs li,
    .plbs td {
        font-size: 15px;
    }

    .plbs ul,
    .plbs ol {
        padding-left: 20px;
        margin-bottom: 18px;
    }

    .plbs blockquote {
        padding: 16px 16px 16px 18px;
        margin: 22px 0;
        border-radius: 0 12px 12px 0;
    }

    .plbs th,
    .plbs td {
        padding: 12px 14px;
    }
}

@media (max-width: 560px) {
    .container.plbs {
        padding: 22px 12px 40px;
        font-size: 14px;
        border-radius: 14px;
    }

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

    .plbs > h1 + p {
        font-size: 16px;
    }

    .plbs h2 {
        font-size: 22px;
        margin-top: 30px;
    }

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

    .plbs table,
    .plbs tbody,
    .plbs tr,
    .plbs th,
    .plbs td {
        display: block;
        width: 100%;
    }

    .plbs table {
        white-space: normal;
        overflow: hidden;
        border-radius: 14px;
    }

    .plbs tr:first-child th:first-child {
        border-top-left-radius: 14px;
    }

    .plbs tr:first-child th:last-child {
        border-top-right-radius: 14px;
    }

    .plbs th {
        padding: 10px 12px;
        font-size: 12px;
    }

    .plbs tbody tr,
    .plbs table tr:not(:first-child) {
        padding: 12px;
        border-bottom: 1px solid #363636;
    }

    .plbs tbody tr:last-child,
    .plbs table tr:last-child {
        border-bottom: 0;
    }

    .plbs td {
        padding: 0;
        border: 0;
        font-size: 14px;
        white-space: normal;
    }

    .plbs td + td {
        margin-top: 4px;
    }

    .plbs blockquote {
        padding: 14px 14px 14px 16px;
    }
}

@media (max-width: 380px) {
    .plbs h1 {
        font-size: 24px;
    }

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

    .plbs h3 {
        font-size: 17px;
    }

    .plbs p,
    .plbs li,
    .plbs td {
        font-size: 13px;
    }

    .plbs tbody tr,
    .plbs table tr:not(:first-child) {
        padding: 10px;
    }
}