@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', 'Roboto', sans-serif;
    background-color: #1C1C1C;
    color: #ECECEC;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #FFDD00;
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #ffe94d;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

/* === WP COMPAT PLACEHOLDERS (unused - obfuscation) === */
.wp-block-group, .wp-block-cover, .entry-content, .elementor-widget-container, .e-con-inner {
    display: contents;
}

.wp-content-placeholder {
    display: none !important;
}

#wpadminbar {
    display: none;
}

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

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

main {
    flex: 1;
}

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

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

.header-logo img {
    height: 48px;
    width: auto;
}

.header-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-nav a {
    color: #ECECEC;
    font-size: .9rem;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background .2s, color .2s;
}

.header-nav a:hover {
    background: #1a1a1a;
    color: #FFDD00;
}

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

.online-counter {
    font-size: .78rem;
    color: #aaa;
    white-space: nowrap;
}

.online-counter span {
    color: #4ade80;
    font-weight: 700;
}

.btn-login {
    background: transparent;
    border: 2px solid #FFDD00;
    color: #FFDD00;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.btn-login:hover {
    background: #FFDD00;
    color: #000;
}

.btn-signup {
    background: #FFDD00;
    border: 2px solid #FFDD00;
    color: #000;
    padding: 7px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    transition: background .2s, color .2s, transform .15s;
    white-space: nowrap;
    display: inline-block;
}

.btn-signup:hover {
    background: #ffe94d;
    color: #000;
    transform: translateY(-1px);
}

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

.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #FFDD00;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

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

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

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

.mobile-nav {
    display: none;
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 12px 16px 16px;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 6px;
    display: flex;
}

.mobile-nav a {
    display: block;
    color: #ECECEC;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: .95rem;
    transition: background .2s;
}

.mobile-nav a:hover {
    background: #1a1a1a;
    color: #FFDD00;
}

.mobile-nav.open {
    display: block;
    animation: slideDown .25s ease;
}

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

/* === HERO === */
#hero {
    position: relative;
    background: url('/1win-banner.png') center/cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 48px 24px;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.hero-content h1 span {
    color: #FFDD00;
}

.hero-content p {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background: #FFDD00;
    color: #000;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(255, 221, 0, .4);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 221, 0, .18);
    border: 1px solid #FFDD00;
    color: #FFDD00;
    font-size: .8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* === SECTION COMMON === */
.section-block {
    padding: 60px 0;
}

.section-block + .section-block {
    border-top: 1px solid #2a2a2a;
}

.section-title {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: .95rem;
    margin-bottom: 36px;
}

.section-title span {
    color: #FFDD00;
}

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

.adv-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px 20px;
    transition: border-color .25s, transform .25s;
}

.adv-card:hover {
    border-color: #FFDD00;
    transform: translateY(-3px);
}

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

.adv-card h3 {
    font-size: 1rem;
    color: #FFDD00;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: .88rem;
    color: #bbb;
    line-height: 1.55;
}

/* === TOURNAMENTS === */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s;
}

.tour-card:hover {
    border-color: #FFDD00;
}

.tour-badge {
    background: #FFDD00;
    color: #000;
    font-size: .72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.tour-card h3 {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.tour-card p {
    font-size: .85rem;
    color: #aaa;
    flex: 1;
}

.tour-prize {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFDD00;
}

.tour-prize small {
    font-size: .7rem;
    color: #888;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.tour-timer {
    display: flex;
    gap: 8px;
    align-items: center;
}

.timer-unit {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
}

.timer-unit .num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFDD00;
    display: block;
}

.timer-unit .lbl {
    font-size: .62rem;
    color: #777;
    text-transform: uppercase;
}

.timer-sep {
    color: #FFDD00;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: -4px;
}

.btn-tour {
    display: block;
    background: #FFDD00;
    color: #000;
    font-weight: 700;
    font-size: .88rem;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    transition: background .2s;
}

.btn-tour:hover {
    background: #ffe94d;
    color: #000;
}

/* === VIDEO REVIEW === */
.video-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #111;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-author {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 860px;
    margin: 20px auto 0;
    background: #111;
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #2a2a2a;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #FFDD00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info p {
    font-size: .83rem;
    color: #aaa;
}

.author-info strong {
    color: #fff;
    font-size: .92rem;
}

.author-info a {
    color: #FFDD00;
    font-size: .8rem;
}

/* === SLOTS GRID === */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.slot-card {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: border-color .25s, transform .25s;
}

.slot-card:hover {
    border-color: #FFDD00;
    transform: translateY(-3px);
}

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

.slot-card-body {
    padding: 10px 8px 12px;
}

.slot-card h4 {
    font-size: .82rem;
    color: #ddd;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-play-slot {
    display: block;
    background: #FFDD00;
    color: #000;
    font-weight: 700;
    font-size: .78rem;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background .2s;
}

.btn-play-slot:hover {
    background: #ffe94d;
    color: #000;
}

/* === WHEEL OF FORTUNE === */
.wheel-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
}

#fortuneCanvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(255, 221, 0, .3);
}

.wheel-arrow {
    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: 28px solid #FFDD00;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5));
    z-index: 10;
}

.btn-spin {
    background: #FFDD00;
    color: #000;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 44px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 18px rgba(255, 221, 0, .35);
}

.btn-spin:hover {
    background: #ffe94d;
    transform: translateY(-2px);
}

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

.wheel-result {
    display: none;
    background: #111;
    border: 2px solid #FFDD00;
    border-radius: 14px;
    padding: 24px 32px;
    text-align: center;
    animation: fadeInUp .4s ease;
}

.wheel-result.show {
    display: block;
}

.wheel-result h3 {
    font-size: 1.3rem;
    color: #FFDD00;
    margin-bottom: 8px;
}

.wheel-result p {
    color: #ddd;
    margin-bottom: 16px;
    font-size: .95rem;
}

.btn-get-bonus {
    display: inline-block;
    background: #FFDD00;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background .2s, transform .2s;
}

.btn-get-bonus:hover {
    background: #ffe94d;
    color: #000;
    transform: translateY(-2px);
}

.wheel-lose {
    display: none;
    text-align: center;
    padding: 16px;
    animation: fadeInUp .4s ease;
}

.wheel-lose.show {
    display: block;
}

.wheel-lose p {
    color: #888;
    margin-bottom: 12px;
}

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

/* === CONTENT BLOCK (голые теги) === */
.content-block {
    max-width: 860px;
    margin: 0 auto;
}

.content-block h1, .content-block h2, .content-block h3, .content-block h4 {
    color: #fff;
    margin: 1.4em 0 .6em;
    line-height: 1.3;
}

.content-block h2 {
    font-size: 1.4rem;
    border-left: 4px solid #FFDD00;
    padding-left: 12px;
}

.content-block h3 {
    font-size: 1.15rem;
    color: #FFDD00;
}

.content-block p {
    color: #ccc;
    margin-bottom: 1em;
    line-height: 1.7;
    font-size: .96rem;
}

.content-block ul, .content-block ol {
    margin: .8em 0 1em 1.4em;
    color: #ccc;
    font-size: .95rem;
}

.content-block ul {
    list-style: disc;
}

.content-block ol {
    list-style: decimal;
}

.content-block li {
    margin-bottom: .4em;
    line-height: 1.6;
}

.content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2em 0;
    font-size: .9rem;
}

.content-block table th {
    background: #FFDD00;
    color: #000;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
}

.content-block table td {
    padding: 9px 14px;
    border: 1px solid #2a2a2a;
    color: #ccc;
    text-align: left;
}

.content-block table tr:nth-child(even) td {
    background: #161616;
}

.content-block blockquote {
    border-left: 4px solid #FFDD00;
    background: #111;
    padding: 12px 18px;
    margin: 1em 0;
    color: #bbb;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.content-block a {
    color: #FFDD00;
    text-decoration: underline;
}

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

.content-block em {
    color: #ddd;
}

.content-block hr {
    border: none;
    border-top: 1px solid #2a2a2a;
    margin: 1.5em 0;
}

.content-block img {
    max-width: 100%;
    border-radius: 8px;
    margin: .8em 0;
}

/* === FAQ === */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item.open {
    border-color: #FFDD00;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: .96rem;
    user-select: none;
    gap: 12px;
}

.faq-q:hover {
    color: #FFDD00;
}

.faq-q .faq-icon {
    color: #FFDD00;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform .3s;
    line-height: 1;
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    color: #bbb;
    font-size: .9rem;
    line-height: 1.65;
}

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

/* === FOOTER === */
#site-footer {
    background: #000;
    border-top: 2px solid #1a1a1a;
    padding: 40px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 44px;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-nav-links a {
    color: #888;
    font-size: .85rem;
    transition: color .2s;
}

.footer-nav-links a:hover {
    color: #FFDD00;
}

.footer-payments {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-payments-title, .footer-providers-title {
    font-size: .75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

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

.pay-badge, .prov-badge {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: .72rem;
    color: #aaa;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: .78rem;
    color: #555;
}

.footer-legal {
    font-size: .72rem;
    color: #444;
    line-height: 1.6;
    max-width: 820px;
    text-align: center;
}

.footer-license {
    font-size: .72rem;
    color: #555;
}

.footer-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 2px solid #555;
    border-radius: 50%;
    color: #555;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* === BOTTOM WIDGET === */
#sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #0a0a0a 0%, #111 100%);
    border-top: 2px solid #FFDD00;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .6);
    animation: slideUp .5s ease;
}

.widget-text {
    font-size: .85rem;
    color: #ddd;
}

.widget-text strong {
    color: #FFDD00;
    font-size: .95rem;
    display: block;
}

.btn-widget {
    display: inline-block;
    background: #FFDD00;
    color: #000 !important;
    font-weight: 800;
    font-size: .92rem;
    padding: 10px 24px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 12px rgba(255, 221, 0, .35);
    text-decoration: none !important;
}

.btn-widget:hover {
    background: #ffe94d;
    color: #000 !important;
    transform: translateY(-1px);
}

#widget-close {
    background: none;
    border: none;
    color: #555;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    transition: color .2s;
}

#widget-close:hover {
    color: #888;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* === SLIDERS (mobile) === */
.slider-wrapper {
    overflow: hidden;
}

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

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: background .2s;
    border: none;
}

.slider-dot.active {
    background: #FFDD00;
}

/* unused obfuscation styles */
.x9f2a {
    display: none;
}

.b3k7m {
    visibility: hidden;
}

.q1z8r {
    opacity: 0;
    position: absolute;
}

.w4e6t {
    pointer-events: none;
}

div.elementor-section {
    all: unset;
}

.wp-block-image {
    all: unset;
}

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

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

    .burger {
        display: flex;
    }

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

    #hero {
        min-height: 400px;
    }

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

    .wheel-container {
        width: 260px;
        height: 260px;
    }

    #fortuneCanvas {
        width: 260px !important;
        height: 260px !important;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        gap: 20px;
    }

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

.qazx {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 20px 84px;
    color: #ececec;
}

.qazx h1,
.qazx h2,
.qazx h3,
.qazx h4,
.qazx h5,
.qazx h6 {
    color: #fff;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.qazx h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.qazx h2 {
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    margin-top: 50px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
}

.qazx h3 {
    font-size: clamp(1.12rem, 1.9vw, 1.42rem);
    margin-top: 30px;
    margin-bottom: 14px;
    color: #ffdd00;
}

.qazx h4 {
    font-size: 1.04rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.qazx p {
    margin-bottom: 16px;
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.76;
}

.qazx > p:first-of-type {
    font-size: 1.06rem;
    color: #ececec;
}

.qazx a {
    color: #ffdd00;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.qazx a:hover {
    color: #ffe94d;
}

.qazx strong,
.qazx b {
    color: #fff;
    font-weight: 800;
}

.qazx em,
.qazx i {
    font-style: italic;
}

.qazx ul,
.qazx ol {
    margin: 0 0 20px;
    padding-left: 24px;
}

.qazx ul li,
.qazx ol li {
    margin-bottom: 10px;
    color: #cfcfcf;
    line-height: 1.72;
}

.qazx ul li::marker,
.qazx ol li::marker {
    color: #ffdd00;
    font-weight: 800;
}

.qazx li p {
    margin-bottom: 0;
}

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

.qazx blockquote p {
    margin: 0;
    color: #ececec;
}

.qazx table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
}

.qazx tr {
    border-bottom: 1px solid #2a2a2a;
}

.qazx tr:last-child {
    border-bottom: 0;
}

.qazx th,
.qazx td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.qazx th {
    background: rgba(255, 221, 0, 0.08);
    color: #ffdd00;
    font-size: 0.9rem;
    font-weight: 800;
}

.qazx td {
    color: #ececec;
    font-size: 0.95rem;
}

.qazx hr {
    border: 0;
    border-top: 1px solid #2a2a2a;
    margin: 32px 0;
}

.qazx img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.qazx .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 14px;
}

.qazx .table-wrap table {
    margin: 0;
    min-width: 700px;
}

@media (max-width: 767px) {
    .qazx {
        padding: 24px 16px 64px;
    }

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

    .qazx h2 {
        margin-top: 36px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .qazx h3 {
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .qazx p {
        font-size: 0.96rem;
        line-height: 1.72;
        margin-bottom: 14px;
    }

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

    .qazx ul li,
    .qazx ol li {
        margin-bottom: 8px;
    }

    .qazx blockquote {
        margin: 22px 0;
        padding: 16px;
    }

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

    .qazx table {
        border: 0;
        background: transparent;
    }

    .qazx tr {
        display: block;
        margin-bottom: 12px;
        padding: 10px 12px;
        background: #111;
        border: 1px solid #2a2a2a;
        border-radius: 14px;
    }

    .qazx th {
        border: 0;
        padding: 0 0 8px;
        background: transparent;
        font-size: 0.82rem;
    }

    .qazx td {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
        border-top: 1px solid #2a2a2a;
    }

    .qazx tr td:first-of-type {
        border-top: 0;
    }

    .qazx td::before {
        content: attr(data-label);
        color: #ffdd00;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 479px) {
    .qazx {
        padding-left: 14px;
        padding-right: 14px;
    }

    .qazx h1 {
        font-size: 1.8rem;
    }

    .qazx h2 {
        font-size: 1.26rem;
    }

    .qazx h3 {
        font-size: 1.06rem;
    }

    .qazx p,
    .qazx td,
    .qazx ul li,
    .qazx ol li {
        font-size: 0.93rem;
    }
}

.qazx {
    max-width: 980px;
    margin: 0 auto;
    padding: 42px 20px 84px;
    color: #ececec;
    background: #111;
    border: 1px solid rgba(255, 221, 0, 0.22);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 767px) {
    .qazx {
        padding: 24px 16px 64px;
        border-radius: 14px;
    }
}