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

:root {
    --color-bg: #1C1C1C;
    --color-header: #000000;
    --color-accent: #FFDD00;
    --color-accent2: #FFB800;
    --color-text: #EEEEEE;
    --color-text-muted: #AAAAAA;
    --color-card: #242424;
    --color-card2: #2C2C2C;
    --color-border: #333333;
    --color-green: #27ae60;
    --color-red: #e74c3c;
    --font-main: 'Open Sans', 'Roboto', sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --transition: .25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===== UNUSED STYLES FOR UNIQUENESS ===== */
.wp-block-group, .wp-block-columns, .entry-content, .elementor-widget-wrap,
.wp-post-image, .wp-caption, .wp-block-image, .wp-block-paragraph,
.elementor-section, .elementor-column, .wp-block-heading {
    display: block;
}

.yoast-seo-breadcrumb {
    font-size: 12px;
    color: var(--color-text-muted);
}

.wp-block-separator {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.site-main, .site-content, .site-header, .site-footer {
    display: block;
}

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

.a8z3k-unused {
    opacity: 0;
    pointer-events: none;
}

.b7q2m-placeholder {
    display: none;
}

.c4r9x-hidden {
    visibility: hidden;
}

.wp-block-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.has-text-align-center {
    text-align: center;
}

.has-large-font-size {
    font-size: 1.5rem;
}

#wpadminbar {
    display: none !important;
}

/* ===== LAYOUT ===== */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-gap {
    padding: 60px 0;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--color-accent);
    box-shadow: 0 2px 20px rgba(255, 221, 0, .15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 12px;
    flex-wrap: nowrap;
}

.header-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
}

.header-nav ul li a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

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

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

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

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--color-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    z-index: 1100;
}

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

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

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

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

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

.btn-primary {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 4px 16px rgba(255, 221, 0, .35);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(255, 221, 0, .5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: rgba(255, 221, 0, .08);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/banner-1.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(.55);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .2) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-title {
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-promo {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-top: 14px;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text);
}

.section-title span {
    color: var(--color-accent);
}

.section-sub {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.section-head {
    margin-bottom: 32px;
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.adv-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    border-radius: var(--radius) var(--radius) 0 0;
}

.adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(255, 221, 0, .12);
}

.adv-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.adv-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.adv-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* ===== MIRRORS TABLE ===== */
.mirrors-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.mirrors-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.mirrors-meta .live-label {
    background: var(--color-green);
    color: #fff;
    border-radius: 30px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
}

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

.mirrors-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14px;
}

.mirrors-table th {
    background: #111;
    color: var(--color-accent);
    font-weight: 700;
    padding: 12px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.mirrors-table td {
    padding: 11px 14px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: var(--color-card2);
}

.mirrors-table tr:hover td {
    background: #303030;
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mirror-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
    display: inline-block;
}

.mirror-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.mirror-link:hover {
    text-decoration: underline;
}

.mirror-speed {
    color: var(--color-green);
    font-weight: 600;
}

/* ===== SCREENSHOTS SLIDER ===== */
.screenshots-slider {
    position: relative;
}

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

.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.screenshot-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.screenshot-caption {
    background: var(--color-card);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ===== WINNERS ===== */
.winners-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 24px;
}

.winners-table-wrap {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    font-size: 14px;
}

.winners-table th {
    background: #111;
    color: var(--color-accent);
    font-weight: 700;
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.winners-table td {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    background: var(--color-card2);
}

.winners-table tr:nth-child(even) td {
    background: #262626;
}

.winners-table tr:hover td {
    background: #303030;
}

.rank-gold {
    color: #FFD700;
    font-weight: 800;
}

.rank-silver {
    color: #C0C0C0;
    font-weight: 700;
}

.rank-bronze {
    color: #CD7F32;
    font-weight: 700;
}

.winner-sum {
    color: var(--color-green);
    font-weight: 700;
}

.winner-nick {
    font-weight: 600;
}

/* ===== BONUSES ===== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bonus-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(255, 221, 0, .1);
}

.bonus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
}

.bonus-badge {
    position: absolute;
    top: 14px;
    right: -20px;
    background: var(--color-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 28px 3px 14px;
    transform: rotate(15deg);
    letter-spacing: .5px;
}

.bonus-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.bonus-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 20px;
}

/* ===== WHEEL GAME ===== */
.wheel-section {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
}

.wheel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--color-accent), 0 0 40px rgba(255, 221, 0, .3);
    max-width: 320px;
    width: 100%;
    height: auto;
}

.wheel-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(255, 221, 0, .5));
    margin-bottom: -14px;
    z-index: 5;
}

.wheel-result {
    display: none;
    padding: 20px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    animation: fadeInUp .4s ease;
}

.wheel-result.win {
    background: rgba(39, 174, 96, .15);
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.wheel-result.lose {
    background: rgba(231, 76, 60, .1);
    border: 2px solid var(--color-red);
    color: var(--color-red);
}

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

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.faq-q {
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
    transition: color var(--transition);
    user-select: none;
}

.faq-q:hover {
    color: var(--color-accent);
}

.faq-item.open .faq-q {
    color: var(--color-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 20px 18px;
}

/* ===== CONTENT BLOCK (bare HTML from CMS) ===== */
.content-area {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.7;
}

.content-area h1, .content-area h2, .content-area h3, .content-area h4, .content-area h5, .content-area h6 {
    color: #fff;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.3;
}

.content-area h1 {
    font-size: 28px;
}

.content-area h2 {
    font-size: 22px;
    color: var(--color-accent);
}

.content-area h3 {
    font-size: 18px;
}

.content-area p {
    margin-bottom: 14px;
}

.content-area a {
    color: var(--color-accent);
}

.content-area ul, .content-area ol {
    margin: 12px 0 16px 24px;
}

.content-area ul li, .content-area ol li {
    margin-bottom: 6px;
}

.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.content-area table th {
    background: #111;
    color: var(--color-accent);
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.content-area table td {
    padding: 9px 12px;
    border: 1px solid var(--color-border);
    background: var(--color-card2);
}

.content-area blockquote {
    border-left: 4px solid var(--color-accent);
    padding: 12px 18px;
    background: var(--color-card2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    color: var(--color-text-muted);
    font-style: italic;
}

.content-area img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

.content-area strong {
    color: #fff;
    font-weight: 700;
}

.content-area em {
    color: var(--color-text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-header);
    border-top: 2px solid var(--color-accent);
    padding: 40px 0 20px;
    margin-top: auto;
}

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

.footer-logo img {
    height: 38px;
    margin-bottom: 14px;
}

.footer-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pay-badge {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.provider-badge {
    background: var(--color-card2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 11px;
    color: var(--color-text-muted);
}

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

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

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

.footer-license {
    margin-top: 10px;
    font-size: 11px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STICKY WIDGET ===== */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(90deg, #000 0%, #1a1a00 100%);
    border-top: 2px solid var(--color-accent);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(255, 221, 0, .2);
}

.widget-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

.widget-bonus {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-accent);
}

.widget-close {
    background: none;
    border: none;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    flex-shrink: 0;
}

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

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 1050;
    flex-direction: column;
    padding: 80px 24px 24px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-nav ul li a {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav ul li a:hover {
    color: var(--color-accent);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== AUTHOR BOX ===== */
.author-box {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.author-role {
    font-size: 12px;
    color: var(--color-text-muted);
}

.author-link {
    font-size: 12px;
    color: var(--color-accent);
    text-decoration: none;
}

.author-link:hover {
    text-decoration: underline;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 13px;
    color: var(--color-text-muted);
    padding: 10px 0;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb span {
    color: #555;
}

/* ===== UTILITY ===== */
.text-accent {
    color: var(--color-accent);
}

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

.text-green {
    color: var(--color-green);
}

.text-red {
    color: var(--color-red);
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

/* WP-COMPAT dummy ids */
#page, #content, #primary, #secondary, #masthead, #colophon {
    display: block;
}

.wp-content-img-placeholder {
    display: none;
}

#et-info, .et_pb_section {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bonuses-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-item img {
        height: 240px;
    }
}

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

    .burger-btn {
        display: flex;
    }

    .header-inner {
        padding: 8px 12px;
    }

    .section-gap {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sticky-widget {
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-lg {
        width: 100%;
    }
}

.zder {
    --zder-bg: #1c1c1c;
    --zder-card: #242424;
    --zder-card-2: #2b2b2b;
    --zder-border: #363636;
    --zder-text: #f2f2f2;
    --zder-muted: #b3b3b3;
    --zder-accent: #ffdd00;
    --zder-accent-2: #ffbf00;
    --zder-green: #28c76f;
    --zder-red: #ff5a5f;
    --zder-radius: 16px;
    --zder-radius-sm: 10px;
    --zder-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    --zder-max: 980px;
    max-width: var(--zder-max);
    margin: 0 auto;
    padding: 32px 20px 96px;
    color: var(--zder-text);
    font-family: "Open Sans", "Roboto", sans-serif;
}

.zder > * {
    max-width: 100%;
}

.zder h1,
.zder h2,
.zder h3,
.zder h4 {
    color: #fff;
    line-height: 1.22;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.zder h1 {
    font-size: clamp(30px, 4.8vw, 52px);
    margin: 0 0 20px;
}

.zder h2 {
    font-size: clamp(23px, 3vw, 34px);
    margin: 34px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 221, 0, 0.28);
}

.zder h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 24px 0 12px;
    color: var(--zder-accent);
}

.zder h4 {
    font-size: 18px;
    margin: 18px 0 10px;
}

.zder p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.78;
    color: var(--zder-text);
}

.zder a {
    color: var(--zder-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 221, 0, 0.3);
    transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    word-break: break-word;
}

.zder a:hover {
    color: #fff3a3;
    border-color: rgba(255, 221, 0, 0.8);
}

.zder strong,
.zder b {
    color: #fff;
    font-weight: 700;
}

.zder em,
.zder i {
    color: #d6d6d6;
}

.zder ul,
.zder ol {
    margin: 0 0 18px;
    padding-left: 0;
}

.zder ul li,
.zder ol li {
    position: relative;
    margin: 0 0 10px;
    color: var(--zder-text);
    line-height: 1.72;
}

.zder ul li {
    list-style: none;
    padding-left: 22px;
}

.zder ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--zder-accent);
    box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.12);
}

.zder ol {
    counter-reset: zder-ol;
}

.zder ol li {
    list-style: none;
    counter-increment: zder-ol;
    padding-left: 42px;
}

.zder ol li::before {
    content: counter(zder-ol);
    position: absolute;
    top: 2px;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 221, 0, 0.12);
    border: 1px solid rgba(255, 221, 0, 0.28);
    color: var(--zder-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.zder blockquote {
    margin: 22px 0;
    padding: 20px 22px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.09), rgba(255, 221, 0, 0.03));
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-left: 4px solid var(--zder-accent);
    border-radius: 0 var(--zder-radius) var(--zder-radius) 0;
    box-shadow: var(--zder-shadow);
}

.zder blockquote p {
    margin: 0;
    color: #f4f0c7;
}

.zder table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
    background: var(--zder-card);
    border: 1px solid var(--zder-border);
    border-radius: var(--zder-radius);
    overflow: hidden;
    display: block;
    box-shadow: var(--zder-shadow);
}

.zder table thead,
.zder table tbody,
.zder table tr {
    width: 100%;
}

.zder table th,
.zder table td {
    padding: 14px 16px;
    border: 1px solid var(--zder-border);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.6;
}

.zder table th {
    background: #111;
    color: var(--zder-accent);
    font-weight: 800;
    white-space: nowrap;
}

.zder table td {
    color: var(--zder-text);
    background: var(--zder-card);
}

.zder table tr:nth-child(even) td {
    background: var(--zder-card-2);
}

.zder table p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

.zder hr {
    border: 0;
    border-top: 1px solid var(--zder-border);
    margin: 28px 0;
}

.zder img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--zder-radius);
    margin: 18px 0;
}

.zder > p:first-of-type {
    font-size: 18px;
    color: #fff;
}

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

.zder > h1 + p + p {
    color: var(--zder-muted);
}

.zder > h1,
.zder > h1 + p,
.zder > h1 + p + p,
.zder > blockquote,
.zder > table,
.zder > h2,
.zder > h3,
.zder > p,
.zder > ul,
.zder > ol {
    width: 100%;
}

.zder > h1,
.zder > h1 + p,
.zder > h1 + p + p {
    position: relative;
    z-index: 1;
}

.zder > h1::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--zder-accent), transparent);
}

.zder code {
    background: #101010;
    border: 1px solid #2f2f2f;
    color: var(--zder-accent);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.92em;
}

.zder pre {
    background: #101010;
    border: 1px solid #2f2f2f;
    color: #f3f3f3;
    padding: 16px;
    border-radius: var(--zder-radius-sm);
    overflow: auto;
    margin: 18px 0;
}

.zder pre code {
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
}

.zder > table,
.zder > blockquote,
.zder > ul,
.zder > ol,
.zder > p,
.zder > h2,
.zder > h3 {
    scroll-margin-top: 90px;
}

@media (min-width: 768px) {
    .zder {
        padding-top: 40px;
    }

    .zder > h2 {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .zder > h2::before {
        content: "";
        width: 10px;
        height: 30px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--zder-accent), var(--zder-accent-2));
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .zder {
        padding: 24px 14px 88px;
    }

    .zder h1 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .zder h2 {
        font-size: 23px;
        margin-top: 28px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .zder h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .zder p,
    .zder ul li,
    .zder ol li,
    .zder table th,
    .zder table td {
        font-size: 15px;
    }

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

    .zder blockquote {
        padding: 16px 16px 16px 18px;
        margin: 18px 0;
        border-radius: 0 14px 14px 0;
    }

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

    .zder table th,
    .zder table td {
        min-width: 160px;
        white-space: normal;
    }

    .zder ul li {
        padding-left: 20px;
    }

    .zder ol li {
        padding-left: 38px;
    }
}

@media (max-width: 520px) {
    .zder {
        padding-left: 12px;
        padding-right: 12px;
    }

    .zder h1 {
        font-size: 27px;
    }

    .zder h2 {
        font-size: 21px;
    }

    .zder p {
        font-size: 14px;
        line-height: 1.72;
    }

    .zder > h1 + p,
    .zder > p:first-of-type {
        font-size: 15px;
    }

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

    .zder table {
        margin: 18px -4px;
        width: calc(100% + 8px);
    }

    .zder table th,
    .zder table td {
        padding: 12px 12px;
        font-size: 13px;
        min-width: 138px;
    }

    .zder ul li::before {
        top: 10px;
        width: 7px;
        height: 7px;
    }

    .zder ol li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

.zder {
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 221, 0, 0.03), rgba(255, 221, 0, 0.01));
}

@media (max-width: 767px) {
    .zder {
        border-radius: 16px;
    }
}