/* Main Styles for 1xbet */
:root {
    --color-primary: #012B00;
    --color-secondary: #00B300;
    --color-bg: #0A1E00;
    --color-text: #FFFFFF;
    --color-accent: #00FF00;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.x7k2m9p {
    display: none;
}

.wp-block-xyz {
    visibility: hidden;
}

.elementor-hidden {
    opacity: 0;
    position: absolute;
}

.a8v3n {
    padding: 15px;
}

.q9w2e {
    margin: 20px 0;
}

.z5t7y {
    display: flex;
}

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

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

/* Header */
.xh9k2 {
    background: linear-gradient(135deg, var(--color-primary) 0%, #014400 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 20px;
}

.logo-wrapper img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-wrapper img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-secondary);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.online-counter {
    background: rgba(0, 179, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-login {
    background: var(--color-text);
    color: var(--color-primary);
}

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

.btn-signup {
    background: var(--color-secondary);
    color: var(--color-text);
    animation: pulse 2s infinite;
}

.btn-signup:hover {
    background: #00d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 179, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 179, 0, 0);
    }
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--color-text);
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.m3k9x {
    background: linear-gradient(to right, rgba(1, 43, 0, 0.9), rgba(1, 43, 0, 0.7)), url('/x-banner.png');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.m3k9x::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    background: rgba(1, 43, 0, 0.3);
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

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

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

/* Content Sections */
.p7n4k {
    padding: 50px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-secondary);
}

/* Pros and Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros-box, .cons-box {
    background: rgba(1, 43, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(0, 179, 0, 0.3);
}

.pros-box {
    border-color: var(--color-secondary);
}

.cons-box {
    border-color: #ff4444;
}

.pros-box h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.cons-box h3 {
    color: #ff4444;
    margin-bottom: 20px;
}

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box li::before {
    content: '✓ ';
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: 10px;
}

.cons-box li::before {
    content: '✗ ';
    color: #ff4444;
    font-weight: bold;
    margin-right: 10px;
}

/* Winners Rating */
.winners-table {
    background: rgba(1, 43, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    overflow-x: auto;
}

.winners-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.winners-table th {
    background: var(--color-primary);
    padding: 15px;
    border: 1px solid var(--color-secondary);
}

.winners-table td {
    padding: 12px 15px;
    border: 1px solid rgba(0, 179, 0, 0.2);
}

.winners-table tr:hover {
    background: rgba(0, 179, 0, 0.1);
}

/* Video Review */
.video-wrapper {
    background: rgba(1, 43, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Bonuses */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.bonus-card {
    background: linear-gradient(135deg, var(--color-primary), #014400);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 179, 0, 0.3);
}

.bonus-card h3 {
    color: var(--color-secondary);
    font-size: 24px;
    margin-bottom: 15px;
}

.bonus-card .bonus-amount {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-accent);
    margin: 20px 0;
}

/* Slot Game */
.slot-game {
    background: rgba(1, 43, 0, 0.8);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    border: 3px solid var(--color-secondary);
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.reel {
    width: 100px;
    height: 100px;
    background: #000;
    border: 3px solid var(--color-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: transform 0.1s;
}

.reel.spinning {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.spin-button {
    background: var(--color-secondary);
    color: var(--color-text);
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.spin-button:hover {
    background: #00d400;
    transform: scale(1.05);
}

.slot-result {
    margin-top: 20px;
    font-size: 24px;
    min-height: 60px;
}

.win-message {
    color: var(--color-accent);
    font-weight: bold;
    animation: blink 1s infinite;
}

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

/* Reviews */
.reviews-section {
    margin: 40px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: rgba(1, 43, 0, 0.6);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 179, 0, 0.3);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.review-info h4 {
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.review-text {
    line-height: 1.6;
}

/* Review Form */
.review-form {
    background: rgba(1, 43, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.review-form h3 {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 179, 0, 0.3);
    border-radius: 5px;
    color: var(--color-text);
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: var(--color-secondary);
    color: var(--color-text);
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #00d400;
    transform: translateY(-2px);
}

/* Footer */
.x2m9p {
    background: var(--color-primary);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-logos img, .provider-logos img {
    height: 30px;
    filter: brightness(0.8);
    transition: filter 0.3s;
}

.payment-logos img:hover, .provider-logos img:hover {
    filter: brightness(1);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--color-primary), #014400);
    padding: 15px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s;
}

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

.widget-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.widget-text {
    font-size: 18px;
    font-weight: bold;
}

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

/* Author Info */
.author-info {
    background: rgba(1, 43, 0, 0.6);
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 4px solid var(--color-secondary);
}

.author-info h4 {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.author-info a {
    color: var(--color-accent);
    text-decoration: none;
}

/* Content Styling */
.content-block h1, .content-block h2, .content-block h3 {
    color: var(--color-secondary);
    margin: 25px 0 15px;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    margin: 15px 0 15px 30px;
}

.content-block li {
    margin-bottom: 8px;
}

.content-block table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(1, 43, 0, 0.6);
}

.content-block table th {
    background: var(--color-primary);
    padding: 12px;
    border: 1px solid var(--color-secondary);
    text-align: left;
}

.content-block table td {
    padding: 10px 12px;
    border: 1px solid rgba(0, 179, 0, 0.2);
}

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

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
    }

    .nav-menu {
        display: none;
    }

    .burger {
        display: flex;
    }

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

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .slot-machine {
        flex-wrap: wrap;
    }

    .widget-content {
        flex-direction: column;
        gap: 10px;
    }

    .winners-table {
        overflow-x: scroll;
    }
}

.fade-in {
    animation: fadeIn 1s;
}

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

/* WP styles for obfuscation */
.wp-content-area {
    display: none;
}

.elementor-section {
    visibility: hidden;
    position: absolute;
}

.yoast-schema {
    opacity: 0;
}

.pqre {
    max-width: 980px;
    margin: 0 auto 24px;
    padding: 34px 24px 42px;
    color: #eef8ea;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #102709;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

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

.pqre h2 {
    font-size: clamp(1.38rem, 2.2vw, 1.92rem);
    margin-top: 46px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pqre h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.34rem);
    margin-top: 28px;
    margin-bottom: 14px;
    color: #8dff8d;
}

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

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

.pqre > p:first-of-type {
    color: #eef8ea;
    font-size: 1.05rem;
}

.pqre a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.pqre a:hover {
    color: #cffff0;
}

.pqre strong,
.pqre b {
    color: #ffffff;
    font-weight: 800;
}

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

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

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

.pqre ul li::marker,
.pqre ol li::marker {
    color: #00b300;
    font-weight: 800;
}

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

.pqre blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-left: 4px solid #00b300;
    border-radius: 0 14px 14px 0;
    background: rgba(0, 179, 0, 0.08);
}

.pqre blockquote p {
    margin: 0;
    color: #eef8ea;
}

.pqre table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.pqre thead tr {
    background: #012b00;
}

.pqre th,
.pqre td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pqre th {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
}

.pqre td {
    color: #eef8ea;
    font-size: 0.95rem;
}

.pqre tbody tr:last-child td {
    border-bottom: 0;
}

.pqre hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 32px 0;
}

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

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

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

@media (max-width: 767px) {
    .pqre {
        padding: 22px 16px 28px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .pqre h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .pqre h2 {
        margin-top: 34px;
        margin-bottom: 14px;
        padding-bottom: 8px;
        font-size: 1.26rem;
    }

    .pqre h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        font-size: 1.05rem;
    }

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

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

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

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

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

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

    .pqre thead {
        display: none;
    }

    .pqre tbody {
        display: grid;
        gap: 12px;
    }

    .pqre tr {
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pqre td {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pqre td:last-child {
        border-bottom: 0;
    }

    .pqre td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 4px;
        color: #8dff8d;
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
}

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

    .pqre h1 {
        font-size: 1.64rem;
    }

    .pqre h2 {
        font-size: 1.16rem;
    }

    .pqre h3 {
        font-size: 1.01rem;
    }

    .pqre p,
    .pqre td,
    .pqre ul li,
    .pqre ol li {
        font-size: 0.92rem;
    }
}

.xh9k2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #012b00 0%, #0b2402 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.xh9k2 .container {
    max-width: 1240px;
}

.xh9k2 .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 12px 0;
}

.xh9k2 .logo-wrapper {
    flex: 0 0 auto;
}

.xh9k2 .logo-wrapper a {
    display: inline-flex;
    align-items: center;
}

.xh9k2 .logo-wrapper img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 100%;
}

.xh9k2 nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.xh9k2 .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.xh9k2 .nav-menu li {
    margin: 0;
    padding: 0;
}

.xh9k2 .nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #f4fff1;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.xh9k2 .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #8dff8d;
    transform: translateY(-1px);
}

.xh9k2 .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.xh9k2 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.xh9k2 .btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.xh9k2 .btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.xh9k2 .btn-signup {
    background: #00b300;
    color: #ffffff;
    border: 1px solid #00b300;
    box-shadow: 0 10px 24px rgba(0, 179, 0, 0.22);
}

.xh9k2 .btn-signup:hover {
    background: #00c400;
    color: #ffffff;
    border-color: #00c400;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 179, 0, 0.32);
}

.xh9k2 .burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.xh9k2 .burger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

.xh9k2 .burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
}

@media (max-width: 991px) {
    .xh9k2 .header-content {
        min-height: 72px;
        gap: 14px;
    }

    .xh9k2 nav {
        display: none;
    }

    .xh9k2 .burger {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .xh9k2 .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .xh9k2 .header-content {
        min-height: 68px;
        gap: 10px;
        padding: 10px 0;
    }

    .xh9k2 .logo-wrapper img {
        height: 42px;
    }

    .xh9k2 .header-actions {
        gap: 8px;
        margin-left: auto;
    }

    .xh9k2 .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .xh9k2 .burger {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .xh9k2 .burger span {
        width: 18px;
    }
}

@media (max-width: 575px) {
    .xh9k2 .header-content {
        flex-wrap: nowrap;
    }

    .xh9k2 .logo-wrapper {
        min-width: 0;
    }

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

    .xh9k2 .header-actions {
        gap: 6px;
    }

    .xh9k2 .btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 0.8rem;
    }

    .xh9k2 .burger {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 420px) {
    .xh9k2 .header-content {
        gap: 8px;
    }

    .xh9k2 .logo-wrapper img {
        height: 34px;
    }

    .xh9k2 .btn {
        padding: 0 8px;
        font-size: 0.76rem;
    }

    .xh9k2 .btn-login,
    .xh9k2 .btn-signup {
        min-width: auto;
    }
}

.xh9k2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #012b00 0%, #0b2402 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.xh9k2 .container,
.mobile-menu-panel .container {
    max-width: 1240px;
}

.xh9k2 .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    padding: 12px 0;
}

.logo-wrapper {
    flex: 0 0 auto;
}

.logo-wrapper a {
    display: inline-flex;
    align-items: center;
}

.logo-wrapper img {
    display: block;
    width: auto;
    height: 50px;
    max-width: 100%;
}

.header-nav-desktop {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #f4fff1;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #8dff8d;
    transform: translateY(-1px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.btn-signup {
    background: #00b300;
    color: #ffffff;
    border: 1px solid #00b300;
    box-shadow: 0 10px 24px rgba(0, 179, 0, 0.22);
}

.btn-signup:hover {
    background: #00c400;
    color: #ffffff;
    border-color: #00c400;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 179, 0, 0.32);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

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

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

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

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

.mobile-menu-panel {
    display: none;
    background: linear-gradient(180deg, #0d2d06 0%, #0a1e00 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-menu-panel.active {
    display: block;
}

.mobile-menu-panel .container {
    padding-top: 12px;
    padding-bottom: 16px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f4fff1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 179, 0, 0.14);
    border-color: rgba(0, 179, 0, 0.35);
    color: #9cff9c;
}

@media (max-width: 991px) {
    .xh9k2 .header-content {
        min-height: 72px;
        gap: 14px;
    }

    .header-nav-desktop {
        display: none;
    }

    .burger {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .mobile-menu-panel {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .xh9k2 .container,
    .mobile-menu-panel .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .xh9k2 .header-content {
        min-height: 68px;
        gap: 10px;
        padding: 10px 0;
    }

    .logo-wrapper img {
        height: 42px;
    }

    .header-actions {
        gap: 8px;
        margin-left: auto;
    }

    .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .burger {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .burger span {
        width: 18px;
    }

    .mobile-nav-menu a {
        min-height: 44px;
        font-size: 0.92rem;
    }
}

@media (max-width: 575px) {
    .xh9k2 .header-content {
        flex-wrap: nowrap;
    }

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

    .header-actions {
        gap: 6px;
    }

    .btn {
        min-height: 36px;
        padding: 0 10px;
        font-size: 0.8rem;
    }

    .burger {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 420px) {
    .xh9k2 .header-content {
        gap: 8px;
    }

    .logo-wrapper img {
        height: 34px;
    }

    .btn {
        padding: 0 8px;
        font-size: 0.76rem;
    }
}

.xh9k2 {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: linear-gradient(180deg, #012b00 0%, #0a2401 100%);
    border-bottom: 1px solid rgba(0, 179, 0, 0.24);
}

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

.logo-wrapper {
    flex: 0 0 auto;
}

.logo-wrapper a {
    display: inline-flex;
    align-items: center;
}

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

.header-nav-desktop {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background .25s ease, color .25s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #8dff8d;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}

.btn-login {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-signup {
    background: #00b300;
    color: #ffffff;
    border: 1px solid #00b300;
}

.btn-signup:hover {
    background: #00c400;
    color: #ffffff;
}

.burger {
    display: none;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: .25s ease;
}

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

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

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

.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1099;
    background: #0b2203;
    border-top: 1px solid rgba(0, 179, 0, 0.18);
    border-bottom: 1px solid rgba(0, 179, 0, 0.18);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu-panel.active {
    display: block;
}

.mobile-menu-panel .container {
    padding-top: 12px;
    padding-bottom: 14px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mobile-nav-menu li {
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 179, 0, 0.14);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.mobile-nav-menu a:hover {
    background: rgba(0, 179, 0, 0.12);
    color: #9cff9c;
}

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

    .burger {
        display: inline-flex;
    }
}

@media (min-width: 992px) {
    .mobile-menu-panel {
        display: none !important;
    }

    .burger {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .xh9k2 .header-content {
        min-height: 64px;
        gap: 10px;
    }

    .logo-wrapper img {
        height: 32px;
    }

    .btn {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.72rem;
    }

    .burger {
        width: 34px;
        height: 34px;
    }

    .mobile-menu-panel {
        top: 64px;
    }
}

.xh9k2 {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: linear-gradient(180deg, #012b00 0%, #0a2401 100%);
    border-bottom: 1px solid rgba(0, 179, 0, 0.24);
}

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

.mobile-menu-panel {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 1099;
    background: #0b2203;
    border-top: 1px solid rgba(0, 179, 0, 0.18);
    border-bottom: 1px solid rgba(0, 179, 0, 0.18);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.4);
}

.mobile-menu-panel.active {
    display: block;
}

.mobile-menu-panel .container {
    padding-top: 16px;
    padding-bottom: 14px;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mobile-nav-menu li:first-child {
    margin-top: 2px;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 179, 0, 0.14);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 575px) {
    .xh9k2 .header-content {
        min-height: 60px;
        padding: 8px 0;
    }

    .logo-wrapper img {
        height: 30px;
    }

    .mobile-menu-panel {
        top: 60px;
    }

    .mobile-menu-panel .container {
        padding-top: 18px;
        padding-bottom: 12px;
    }

    .mobile-nav-menu {
        gap: 6px;
    }

    .mobile-nav-menu a {
        min-height: 44px;
        font-size: 0.92rem;
    }
}

.mobile-menu-panel {
    padding-top: 4px;
}