
:root {
    --c-primary: #FFDD00;
    --c-primary-dark: #e6c800;
    --c-primary-hover: #ffe966;
    --c-bg: #1C1C1C;
    --c-bg-header: #000000;
    --c-bg-card: #242424;
    --c-bg-card2: #2a2a2a;
    --c-bg-card3: #1e1e1e;
    --c-text: #e0e0e0;
    --c-text-muted: #888;
    --c-border: #2e2e2e;
    --c-border-accent: rgba(255, 221, 0, .3);
    --c-green: #4caf50;
    --c-red: #f44336;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .45);
    --shadow-accent: 0 4px 24px rgba(255, 221, 0, .22);
    --transition: .22s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Open Sans', 'Roboto', Arial, sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 68px;
}

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

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--c-primary-hover);
}

ul, ol {
    padding-left: 1.4rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

input, textarea, select, button {
    font-family: inherit;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.3rem);
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
    margin-bottom: .6rem;
}

h3 {
    font-size: 1.15rem;
    margin-bottom: .4rem;
}

p {
    margin-bottom: .9rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ---- LAYOUT WRAPPER ---- */
.x9q2r-wrap {
    width: 100%;
}

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

.section-block {
    padding: 46px 0;
}

.section-block + .section-block {
    border-top: 1px solid var(--c-border);
}

/* Card wrapper */
.a7kw3-card {
    background: var(--c-bg-card3);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.a7kw3-card:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, .55);
}

/* ---- SECTION TITLE ---- */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-primary);
}

.section-title h2 {
    margin: 0;
}

.section-title-icon {
    width: 34px;
    height: 34px;
    background: var(--c-primary);
    color: #000;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    font-weight: 700;
}

.btn-p1w {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .03em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .18s ease, color .18s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-p1w:hover {
    transform: translateY(-1px);
}

.btn-p1w:active {
    transform: translateY(0) scale(.98);
}

.btn-login {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}

.btn-login:hover {
    background: var(--c-primary);
    color: #000;
    box-shadow: var(--shadow-accent);
}

.btn-register {
    background: var(--c-primary);
    color: #000 !important;
    border-color: var(--c-primary);
}

.btn-register1 {
    background: var(--c-primary);
    color: #000 !important;
}

.btn-register:hover {
    background: #ffe84d;
    color: #000;
    box-shadow: var(--shadow-accent);
}

.btn-hero {
    background: var(--c-primary);
    color: #000;
    font-size: 1.05rem;
    padding: 14px 38px;
    border-radius: 8px;
    border-color: var(--c-primary);
    box-shadow: 0 4px 26px rgba(255, 221, 0, .38);
    animation: pulse-btn 2.2s infinite;
}

.btn-hero:hover {
    background: #fff;
    color: #000;
    animation: none;
    transform: translateY(-2px);
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 26px rgba(255, 221, 0, .38);
    }
    50% {
        box-shadow: 0 4px 42px rgba(255, 221, 0, .65);
    }
}

.btn-spin-main {
    background: var(--c-primary);
    color: #000;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .04em;
    box-shadow: 0 4px 22px rgba(255, 221, 0, .35);
}

.btn-spin-main:hover:not(:disabled) {
    background: #fff;
    transform: scale(1.04);
}

.btn-spin-main:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* ---- HEADER ---- */
.b3m1n-header {
    background: var(--c-bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--c-primary);
    transition: box-shadow .3s;
}

.b3m1n-header.scrolled {
    box-shadow: 0 2px 30px rgba(255, 221, 0, .14);
}

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

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

.logo-img {
    height: 46px;
    width: auto;
    border-radius: 4px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.header-nav .nav-link {
    color: #ccc;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.header-nav .nav-link:hover {
    color: var(--c-primary);
    background: rgba(255, 221, 0, .07);
}

.online-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    font-size: .75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-green);
    box-shadow: 0 0 8px var(--c-green);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .3;
    }
}

.online-count {
    color: var(--c-primary);
    font-weight: 700;
}

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

/* Burger */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s ease;
}

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

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

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

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #0d0d0d;
    border-top: 1px solid #1e1e1e;
    padding: 10px 16px 14px;
    flex-direction: column;
    gap: 4px;
}

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

.mobile-menu .nav-link {
    color: #ccc;
    font-size: .88rem;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 6px;
    transition: background .2s;
}

.mobile-menu .nav-link:hover {
    background: #1a1a1a;
    color: var(--c-primary);
}

.f5v8z-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: url('/1win-banner.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.f5v8z-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .6) 55%, rgba(28, 28, 28, .4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 64px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--c-primary);
    color: #000;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(1.8rem, 5.5vw, 3.2rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .8);
}

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

.hero-sub {
    font-size: 1.05rem;
    color: #bbb;
    margin-bottom: 28px;
    max-width: 500px;
    line-height: 1.6;
}

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

.hero-note {
    font-size: .75rem;
    color: #666;
    margin-top: 12px;
}

/* ---- TABLE OF CONTENTS ---- */
.toc-block {
    background: #161616;
    border: 1px solid #252525;
    border-left: 4px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 22px 26px;
}

.toc-block h3 {
    font-size: 1rem;
    color: var(--c-primary);
    margin-bottom: 14px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 5px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    color: #bbb;
    font-size: .86rem;
    transition: background .2s, color .2s;
}

.toc-list li a::before {
    content: '→';
    color: var(--c-primary);
    font-size: .85rem;
    flex-shrink: 0;
}

.toc-list li a:hover {
    background: rgba(255, 221, 0, .07);
    color: var(--c-primary);
}

/* ---- INFO TABLE ---- */
.info-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #161616;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.info-table th, .info-table td {
    padding: 11px 18px;
    text-align: left;
    border-bottom: 1px solid #242424;
    font-size: .88rem;
}

.info-table th {
    background: #101010;
    color: var(--c-primary);
    font-weight: 700;
    width: 36%;
    border-right: 1px solid #242424;
}

.info-table td {
    color: #d0d0d0;
}

.info-table tr:last-child th, .info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover th, .info-table tr:hover td {
    background: rgba(255, 221, 0, .03);
}

.val-accent {
    color: var(--c-primary);
    font-weight: 700;
}

.val-badge {
    display: inline-block;
    background: rgba(76, 175, 80, .12);
    color: var(--c-green);
    border: 1px solid rgba(76, 175, 80, .28);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: .78rem;
    font-weight: 600;
}

/* ---- MIRRORS TABLE ---- */
.mirror-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.mirror-datetime {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 221, 0, .07);
    border: 1px solid var(--c-border-accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .8rem;
    color: var(--c-primary);
    white-space: nowrap;
}

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

.mirror-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 500px;
}

.mirror-table th {
    background: #101010;
    color: var(--c-primary);
    font-weight: 700;
    padding: 12px 18px;
    text-align: left;
    border-bottom: 2px solid #242424;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mirror-table td {
    padding: 11px 18px;
    border-bottom: 1px solid #202020;
    font-size: .88rem;
    color: #ccc;
}

.mirror-table tr:last-child td {
    border-bottom: none;
}

.mirror-table tr:hover td {
    background: rgba(255, 221, 0, .04);
}

.mirror-table a {
    color: var(--c-primary);
    font-weight: 600;
}

.mirror-table a:hover {
    text-decoration: underline;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.status-badge.active {
    background: rgba(76, 175, 80, .12);
    color: var(--c-green);
    border: 1px solid rgba(76, 175, 80, .28);
}

.status-badge.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* ---- WINNERS LEADERBOARD ---- */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 10px;
}

.winner-card {
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, transform .2s;
}

.winner-card:hover {
    border-color: var(--c-border-accent);
    transform: translateY(-2px);
}

.winner-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--c-bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    color: #888;
    flex-shrink: 0;
}

.winner-card:nth-child(1) .winner-rank {
    background: #FFD700;
    color: #000;
}

.winner-card:nth-child(2) .winner-rank {
    background: #C0C0C0;
    color: #000;
}

.winner-card:nth-child(3) .winner-rank {
    background: #CD7F32;
    color: #fff;
}

.winner-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-nick {
    font-size: .84rem;
    font-weight: 700;
    color: #e8e8e8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.winner-amount {
    color: var(--c-primary);
    font-size: .8rem;
    font-weight: 700;
}

/* ---- WHEEL OF FORTUNE ---- */
.wheel-section {
    text-align: center;
}

.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 34px;
    background: #161616;
    border-radius: 16px;
    border: 1px solid var(--c-border);
    position: relative;
}

.wheel-wrap {
    position: relative;
    display: inline-block;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 28px solid var(--c-primary);
    filter: drop-shadow(0 2px 10px rgba(255, 221, 0, .55));
    z-index: 2;
}

#wheelCanvas {
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 221, 0, .18), 0 0 90px rgba(0, 0, 0, .6);
}

.wheel-desc {
    color: #888;
    font-size: .86rem;
    max-width: 380px;
}

.wheel-result-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.wheel-result-overlay.show {
    display: flex;
}

.wheel-result-box {
    background: var(--c-bg-card);
    border-radius: 16px;
    padding: 38px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--c-primary);
    box-shadow: 0 0 70px rgba(255, 221, 0, .22);
    animation: pop-in .35s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes pop-in {
    from {
        transform: scale(.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.wheel-result-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.wheel-result-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.wheel-result-text {
    color: #aaa;
    font-size: .92rem;
    margin-bottom: 16px;
}

.wheel-result-bonus {
    color: var(--c-primary);
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.review-card {
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color .2s, transform .2s;
}

.review-card:hover {
    border-color: rgba(255, 221, 0, .28);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
}

.review-date {
    color: #555;
    font-size: .75rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin: 3px 0;
}

.star-svg {
    width: 15px;
    height: 15px;
    fill: var(--c-primary);
}

.review-text {
    color: #aaa;
    font-size: .86rem;
    line-height: 1.65;
}

.review-form-wrap {
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 26px;
}

.review-form-wrap h3 {
    color: #fff;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    color: #bbb;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    background: #111;
    border: 1px solid #2e2e2e;
    color: #e8e8e8;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .88rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(255, 221, 0, .1);
}

.form-control::placeholder {
    color: #444;
}

textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.form-success {
    display: none;
    background: rgba(76, 175, 80, .1);
    border: 1px solid rgba(76, 175, 80, .3);
    color: var(--c-green);
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: .88rem;
}

.form-success.show {
    display: block;
    animation: fade-in .3s;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
    color: #fff;
    margin: 1.3em 0 .65em;
}

.cms-content h2 {
    border-bottom: 2px solid var(--c-primary);
    padding-bottom: .35em;
    font-size: 1.45rem;
}

.cms-content h3 {
    color: #eee;
    font-size: 1.15rem;
}

.cms-content p {
    color: #bbb;
    margin-bottom: .95rem;
    line-height: 1.72;
}

.cms-content ul, .cms-content ol {
    color: #bbb;
    padding-left: 1.5rem;
    margin-bottom: .95rem;
}

.cms-content li {
    margin-bottom: .35rem;
}

.cms-content a {
    color: var(--c-primary);
}

.cms-content a:hover {
    text-decoration: underline;
}

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

.cms-content em {
    color: #ccc;
}

.cms-content blockquote {
    border-left: 3px solid var(--c-primary);
    background: rgba(255, 221, 0, .04);
    padding: 14px 20px;
    margin: 1.4rem 0;
    border-radius: 0 8px 8px 0;
    color: #aaa;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4rem 0;
    overflow-x: auto;
    display: block;
}

.cms-content th, .cms-content td {
    padding: 10px 14px;
    border: 1px solid #2e2e2e;
    text-align: left;
}

.cms-content th {
    background: #111;
    color: var(--c-primary);
    font-weight: 700;
}

.cms-content td {
    color: #ccc;
}

.cms-content img {
    border-radius: 8px;
    margin: 1rem 0;
}

.cms-content code {
    background: #111;
    color: var(--c-primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.cms-content pre {
    background: #111;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

.cms-content hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 1.8rem 0;
}

.author-block {
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
}

.author-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--c-primary);
}

.author-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-label {
    font-size: .72rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.author-name {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 5px;
}

.author-bio {
    color: #888;
    font-size: .83rem;
    line-height: 1.55;
    margin-bottom: 6px;
}

.author-link {
    color: var(--c-primary);
    font-size: .8rem;
}

/* ---- FAQ ---- */
.faq-list {
    list-style: none;
    padding: 0;
}

.faq-item {
    background: #161616;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: .92rem;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, .03);
}

.faq-icon {
    width: 22px;
    height: 22px;
    border: 2px solid var(--c-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    font-size: .9rem;
    flex-shrink: 0;
    transition: transform .3s;
    font-style: normal;
}

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

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    color: #999;
    font-size: .88rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fade-in .3s;
}

.m9t4k-footer {
    background: var(--c-bg-header);
    border-top: 2px solid #1a1a1a;
    padding: 46px 0 22px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-bottom: 32px;
}

.footer-col-brand {
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

.footer-col {
    flex: 1;
    min-width: 140px;
}

.footer-logo-img {
    height: 42px;
    margin-bottom: 14px;
    border-radius: 4px;
}

.footer-about {
    color: #555;
    font-size: .82rem;
    line-height: 1.7;
}

.footer-nav-title {
    color: var(--c-primary);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

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

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

.footer-links li a:hover {
    color: var(--c-primary);
}

.footer-divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 24px 0;
}

.footer-logosrow-title {
    color: #444;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo-badge {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 5px;
    padding: 4px 11px;
    font-size: .72rem;
    color: #555;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: .03em;
}

.footer-copyright {
    color: #383838;
    font-size: .75rem;
    line-height: 1.65;
}

.footer-copyright a {
    color: #444;
}

.footer-copyright a:hover {
    color: var(--c-primary);
}

.e2f7p-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(90deg, #080808 0%, #111 100%);
    border-top: 2px solid var(--c-primary);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 32px rgba(255, 221, 0, .14);
}

.widget-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.widget-badge {
    background: var(--c-primary);
    color: #000;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.widget-texts {
    min-width: 0;
}

.widget-label {
    color: #fff;
    font-size: .86rem;
    font-weight: 600;
}

.widget-sub {
    color: var(--c-primary);
    font-weight: 700;
    font-size: .76rem;
}

.widget-btn {
    flex-shrink: 0;
}

.widget-close {
    background: none;
    border: none;
    color: #444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
    flex-shrink: 0;
    line-height: 1;
}

.widget-close:hover {
    color: #777;
}

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}

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

.wp-content-area, .entry-content, .post-thumbnail, .sidebar-widget,
.wp-block-heading, .attachment-post-thumbnail {
    display: inherit;
}

.elementor-widget-container, .elementor-section, .fl-row, .fl-col-group {
    position: inherit;
}

.yoast-breadcrumb, .wpseo-score, .wpseo-metabox {
    visibility: inherit;
}

.wpforms-field, .gform_wrapper, .ninja-forms-cont {
    opacity: inherit;
}

.wp-block-group, .wp-block-columns, .wp-block-image {
    box-sizing: inherit;
}

.site-header, .site-footer, .widget-area, .main-navigation {
    display: inherit;
}

.x8f3t-unused, .r7p2k-hidden, .q4m9v-extra {
    display: none;
}

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

    .burger-btn {
        display: flex;
    }

    .online-badge {
        display: none;
    }

    .footer-top {
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .section-block {
        padding: 32px 0;
    }

    .f5v8z-hero {
        min-height: 380px;
    }

    .hero-content {
        padding: 46px 0;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

    .toc-list {
        grid-template-columns: 1fr;
    }

    .wheel-container {
        padding: 20px 14px;
    }

    #wheelCanvas {
        width: 280px !important;
        height: 280px !important;
    }

    .wheel-result-box {
        padding: 28px 20px;
    }

    .footer-col {
        min-width: 120px;
    }

    .author-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .e2f7p-widget .widget-sub {
        display: none;
    }
}

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

    #wheelCanvas {
        width: 240px !important;
        height: 240px !important;
    }

    .e2f7p-widget {
        padding: 10px 14px;
    }

    .header-inner {
        gap: 8px;
    }

    .logo-img {
        height: 38px;
    }
}

.mutr {
    width: 100%;
    max-width: 980px;
    margin: 40px auto 80px;
    padding: 40px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    line-height: 1.75;
    box-shadow: var(--shadow);
}

.mutr h1,
.mutr h2,
.mutr h3,
.mutr h4,
.mutr h5,
.mutr h6 {
    color: #fff;
    line-height: 1.28;
    letter-spacing: -.02em;
}

.mutr h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 22px;
}

.mutr h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 38px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 221, 0, .18);
    color: var(--c-primary);
}

.mutr h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 26px 0 12px;
}

.mutr h4,
.mutr h5,
.mutr h6 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.mutr p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--c-text);
    overflow-wrap: break-word;
}

.mutr p:last-child {
    margin-bottom: 0;
}

.mutr a {
    color: var(--c-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    transition: color var(--transition);
}

.mutr a:hover {
    color: var(--c-primary-hover);
}

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

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

.mutr ul,
.mutr ol {
    margin: 18px 0 22px;
}

.mutr ul {
    list-style: none;
    padding-left: 0;
}

.mutr ol {
    padding-left: 22px;
}

.mutr ul li {
    position: relative;
    padding-left: 22px;
}

.mutr ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(255, 221, 0, .12);
}

.mutr ol li::marker {
    color: var(--c-primary);
    font-weight: 700;
}

.mutr li {
    margin-bottom: 12px;
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.65;
}

.mutr li:last-child {
    margin-bottom: 0;
}

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

.mutr table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.mutr thead {
    background: #111;
}

.mutr th,
.mutr td {
    padding: 13px 15px;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.mutr th {
    color: var(--c-primary);
    font-weight: 700;
}

.mutr td {
    color: var(--c-text);
}

.mutr tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.mutr blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--c-primary);
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #d9d9d9;
}

.mutr hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 26px 0;
}

.mutr img,
.mutr iframe {
    display: block;
    max-width: 100%;
    border-radius: var(--radius-sm);
}

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

.mutr > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .mutr {
        margin: 28px auto 64px;
        padding: 30px 24px;
    }

    .mutr h2 {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .mutr {
        margin: 20px auto 56px;
        padding: 24px 18px;
        line-height: 1.68;
    }

    .mutr h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .mutr h2 {
        font-size: 22px;
        margin: 26px 0 14px;
        padding-bottom: 10px;
    }

    .mutr h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

    .mutr p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .mutr li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mutr ol {
        padding-left: 18px;
    }

    .mutr ul li {
        padding-left: 18px;
    }

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

    .mutr th,
    .mutr td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mutr {
        width: calc(100% - 24px);
        margin: 16px auto 40px;
        padding: 18px 14px;
        border-radius: 8px;
        box-shadow: none;
    }

    .mutr h1 {
        font-size: 23px;
        line-height: 1.28;
    }

    .mutr h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .mutr h3 {
        font-size: 16px;
    }

    .mutr p {
        font-size: 14px;
        line-height: 1.65;
    }

    .mutr li {
        font-size: 14px;
    }

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

@media (max-width: 380px) {
    .mutr {
        padding: 16px 12px;
    }

    .mutr h1 {
        font-size: 21px;
    }

    .mutr h2 {
        font-size: 18px;
    }
}

.mutr {
    width: 100%;
    max-width: 980px;
    margin: 40px auto 80px;
    padding: 40px;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    line-height: 1.75;
    box-shadow: var(--shadow);
}

.mutr h1,
.mutr h2,
.mutr h3,
.mutr h4,
.mutr h5,
.mutr h6 {
    color: #fff;
    line-height: 1.28;
    letter-spacing: -.02em;
}

.mutr h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin: 0 0 22px;
}

.mutr h2 {
    font-size: clamp(22px, 3vw, 30px);
    margin: 38px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 221, 0, .18);
    color: var(--c-primary);
}

.mutr h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 26px 0 12px;
}

.mutr h4,
.mutr h5,
.mutr h6 {
    font-size: 18px;
    margin: 22px 0 12px;
}

.mutr p {
    margin: 0 0 16px;
    font-size: 16px;
    color: var(--c-text);
    overflow-wrap: break-word;
}

.mutr p:last-child {
    margin-bottom: 0;
}

.mutr a {
    color: var(--c-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
    transition: color var(--transition);
}

.mutr a:hover {
    color: var(--c-primary-hover);
}

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

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

.mutr ul,
.mutr ol {
    margin: 18px 0 22px;
}

.mutr ul {
    list-style: none;
    padding-left: 0;
}

.mutr ol {
    padding-left: 22px;
}

.mutr ul li {
    position: relative;
    padding-left: 22px;
}

.mutr ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
    box-shadow: 0 0 0 4px rgba(255, 221, 0, .12);
}

.mutr ol li::marker {
    color: var(--c-primary);
    font-weight: 700;
}

.mutr li {
    margin-bottom: 12px;
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.65;
}

.mutr li:last-child {
    margin-bottom: 0;
}

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

.mutr table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--c-bg-card2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.mutr thead {
    background: #111;
}

.mutr th,
.mutr td {
    padding: 13px 15px;
    border: 1px solid var(--c-border);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.mutr th {
    color: var(--c-primary);
    font-weight: 700;
}

.mutr td {
    color: var(--c-text);
}

.mutr tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, .02);
}

.mutr blockquote {
    margin: 22px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--c-primary);
    background: rgba(255, 221, 0, .06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: #d9d9d9;
}

.mutr hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 26px 0;
}

.mutr img,
.mutr iframe {
    display: block;
    max-width: 100%;
    border-radius: var(--radius-sm);
}

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

.mutr > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .mutr {
        margin: 28px auto 64px;
        padding: 30px 24px;
    }

    .mutr h2 {
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .mutr {
        margin: 20px auto 56px;
        padding: 24px 18px;
        line-height: 1.68;
    }

    .mutr h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .mutr h2 {
        font-size: 22px;
        margin: 26px 0 14px;
        padding-bottom: 10px;
    }

    .mutr h3 {
        font-size: 18px;
        margin: 22px 0 10px;
    }

    .mutr p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .mutr li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mutr ol {
        padding-left: 18px;
    }

    .mutr ul li {
        padding-left: 18px;
    }

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

    .mutr th,
    .mutr td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mutr {
        width: calc(100% - 24px);
        margin: 16px auto 40px;
        padding: 18px 14px;
        border-radius: 8px;
        box-shadow: none;
    }

    .mutr h1 {
        font-size: 23px;
        line-height: 1.28;
    }

    .mutr h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .mutr h3 {
        font-size: 16px;
    }

    .mutr p {
        font-size: 14px;
        line-height: 1.65;
    }

    .mutr li {
        font-size: 14px;
    }

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

@media (max-width: 380px) {
    .mutr {
        padding: 16px 12px;
    }

    .mutr h1 {
        font-size: 21px;
    }

    .mutr h2 {
        font-size: 18px;
    }
}

.burger-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1101;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.burger-btn {
    gap: 5px;
}

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

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f0f;
    border-top: 1px solid #222;
    padding: 14px 16px 18px;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.mobile-nav.is-open {
    display: block;
}

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

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

header,
.hdr,
.hdr-wrap,
.hdr-inner {
    position: relative;
}

.b3m1n-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--c-bg-header);
    border-bottom: 2px solid var(--c-primary);
}

.b3m1n-header .container {
    position: relative;
}

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

.burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2101;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f0f;
    border-top: 1px solid #222;
    padding: 14px 16px 18px;
    z-index: 2100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    flex-direction: column;
    gap: 6px;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

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

    .online-badge {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

}

.b3m1n-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: var(--c-bg-header);
    border-bottom: 2px solid var(--c-primary);
}

.b3m1n-header .container {
    position: relative;
}

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

.logo-link {
    flex: 0 0 auto;
    position: relative;
    z-index: 3002;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    position: relative;
    z-index: 3002;
}

.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 3003;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    pointer-events: none;
}

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

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f0f0f;
    border-top: 1px solid #222;
    padding: 14px 16px 18px;
    z-index: 3001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    flex-direction: column;
    gap: 6px;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

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

    .online-badge {
        display: none;
    }

    .header-btns .btn-p1w {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

.nx-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: #000;
    border-bottom: 1px solid rgba(255, 221, 0, .22);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .32);
}

.nx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    position: relative;
}

.nx-header__logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 5003;
}

.nx-header__logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: none;
}

.nx-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 auto;
    min-width: 0;
}

.nx-header__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #d7d7d7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.nx-header__link:hover {
    background: rgba(255, 221, 0, .08);
    color: #ffdd00;
}

.nx-header__side {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    position: relative;
    z-index: 5003;
}

.nx-header__online {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9d9d9d;
    font-size: 12px;
    white-space: nowrap;
}

.nx-header__online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #41c95b;
    box-shadow: 0 0 10px rgba(65, 201, 91, .7);
    animation: nxPulse 1.6s infinite;
    flex: 0 0 auto;
}

.nx-header__online-count {
    color: #ffdd00;
    font-weight: 700;
}

.nx-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.nx-btn:hover {
    transform: translateY(-1px);
}

.nx-btn--ghost {
    background: transparent;
    border-color: #ffdd00;
    color: #ffdd00;
}

.nx-btn--ghost:hover {
    background: #ffdd00;
    color: #000;
}

.nx-btn--primary {
    background: #ffdd00;
    border-color: #ffdd00;
    color: #000;
    box-shadow: 0 4px 18px rgba(255, 221, 0, .2);
}

.nx-btn--primary:hover {
    background: #ffe75a;
    border-color: #ffe75a;
    color: #000;
}

.nx-burger {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: none;
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 5004;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nx-burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
    pointer-events: none;
}

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

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

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

.nx-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
    padding: 14px 16px 18px;
    z-index: 5002;
}

.nx-mobile.is-open {
    display: block;
}

.nx-mobile__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nx-mobile__link {
    display: block;
    padding: 14px 14px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    transition: background .2s ease, color .2s ease;
}

.nx-mobile__link:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

.nx-mobile__bottom {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.nx-mobile__online {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b1b1b1;
    font-size: 13px;
    margin-bottom: 12px;
}

.nx-mobile__actions {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 8px;
}

@keyframes nxPulse {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: .35
    }
}

@media (max-width: 991px) {
    .nx-header__nav {
        display: none;
    }

    .nx-header__online {
        display: none;
    }

    .nx-header__actions {
        display: none;
    }

    .nx-burger {
        display: flex;
    }

    .nx-header__inner {
        min-height: 64px;
    }

    .nx-header__logo img {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .nx-header__inner {
        gap: 10px;
        min-height: 60px;
    }

    .nx-header__logo img {
        height: 36px;
    }

    .nx-mobile {
        padding: 12px 12px 16px;
    }

    .nx-mobile__link {
        padding: 13px 12px;
        font-size: 14px;
    }

    .nx-mobile__actions {
        grid-template-columns:1fr;
    }

    .nx-mobile__actions .nx-btn {
        width: 100%;
    }
}

body.nx-menu-open {
    overflow: hidden;
}

.nx-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
    border-bottom: 1px solid rgba(255, 221, 0, .2);
}

.nx-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.nx-header__logo {
    position: relative;
    z-index: 10001;
    flex: 0 0 auto;
}

.nx-header__logo img {
    display: block;
    height: 40px;
    width: auto;
}

.nx-header__nav {
    display: flex;
    gap: 14px;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
}

.nx-header__nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.nx-header__right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 10001;
    flex: 0 0 auto;
}

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

.nx-btn--ghost {
    color: #ffdd00;
    border-color: #ffdd00;
    background: transparent;
}

.nx-btn--primary {
    color: #000;
    background: #ffdd00;
    border-color: #ffdd00;
}

.nx-burger {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 10002;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nx-burger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.nx-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 12px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.nx-mobile.is-open {
    display: block;
}

.nx-mobile a {
    display: block;
    padding: 14px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}

.nx-mobile a:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

@media (max-width: 991px) {
    .nx-header__nav,
    .nx-btn {
        display: none;
    }

    .nx-burger {
        display: flex;
    }
}

.nx-header,
.nx-header * {
    pointer-events: auto;
}

.b3m1n-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;
    border-bottom: 1px solid rgba(255, 221, 0, .2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    justify-content: center;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    position: relative;
    z-index: 10001;
}

.burger-btn {
    display: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 10002;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    pointer-events: none;
}

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

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

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0b0b0b;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
    z-index: 10000;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu .nav-link {
    display: block;
    padding: 14px 12px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 255, 255, .06);
    color: #ffdd00;
}

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

    .online-badge {
        display: none;
    }


    .burger-btn {
        display: flex !important;
    }
}