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

body {
    font-family: Helvetica, sans-serif;
    background-color: #020100;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
}

.xr9k2-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.gx4mb-header {
    background: linear-gradient(135deg, #090111 0%, #1a0822 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(11, 128, 220, 0.3);
}

.pw9vn-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.km7xq-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dv5nt-logo {
    text-decoration: none;
}

.rx8hp-logo-img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.ty6kw-nav {
    display: block;
}

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

.jw8pr-nav-item {
    display: inline-block;
}

.lv9nx-nav-link {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.lv9nx-nav-link:hover {
    color: #a8c94e;
}

.lv9nx-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #a8c94e;
    transition: width 0.3s ease;
}

.lv9nx-nav-link:hover::after {
    width: 100%;
}

.bn3mw-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zx7kv-online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 201, 78, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #a8c94e;
}

.fp2wq-online-icon {
    font-size: 18px;
}

.hm9tx-online-text {
    color: #e8e8e8;
    font-size: 14px;
}

.vq4nr-header-buttons {
    display: flex;
    gap: 10px;
}

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

.rw8kx-burger-line {
    width: 25px;
    height: 3px;
    background: #a8c94e;
    transition: all 0.3s ease;
}

/* Buttons */
.wk2n8-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
}

.wk2n8-btn-login {
    background-color: #0b80dc;
    color: #ffffff;
}

.wk2n8-btn-login:hover {
    background-color: #0966b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 128, 220, 0.4);
}

.wk2n8-btn-signup {
    background-color: #a8c94e;
    color: #090111;
}

.wk2n8-btn-signup:hover {
    background-color: #8fad3a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 201, 78, 0.4);
}

.wk2n8-btn-primary {
    background: linear-gradient(135deg, #a8c94e 0%, #8fad3a 100%);
    color: #090111;
    font-size: 18px;
    padding: 15px 40px;
}

.wk2n8-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 201, 78, 0.5);
}

.wk2n8-btn-secondary {
    background: transparent;
    color: #e8e8e8;
    border: 2px solid #0b80dc;
    font-size: 18px;
    padding: 15px 40px;
}

.wk2n8-btn-secondary:hover {
    background-color: #0b80dc;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hero Section */
.v7nm3-hero {
    background: linear-gradient(rgba(9, 1, 17, 0.7), rgba(9, 1, 17, 0.7)), url('/banner.png');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    animation: fadeIn 1s ease-in;
}

.kf82p-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pq4ls-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.8s ease-out;
}

.zm9wx-hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: #a8c94e;
    font-weight: 500;
    animation: slideUp 0.8s ease-out;
}

.df5ht-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.bc6yz-main {
    flex: 1;
    padding: 60px 0;
}

.yr3md-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.yr3md-section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0b80dc, #a8c94e);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Promo Section */
.tn4wm-promo-section {
    margin-bottom: 60px;
}

.lq8hp-promo-card {
    background: linear-gradient(135deg, #1a0822 0%, #2d0f3f 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(168, 201, 78, 0.2);
    border: 2px solid #a8c94e;
}

.js2vx-promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.pk7nt-promo-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(11, 128, 220, 0.1);
    padding: 25px 40px;
    border-radius: 15px;
    border: 2px dashed #0b80dc;
}

.fv9qr-promo-label {
    font-size: 16px;
    color: #a8c94e;
    font-weight: 600;
}

.dx6km-promo-code {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    font-family: monospace;
}

.mt5ws-promo-status {
    font-size: 14px;
    color: #a8c94e;
}

.wr4pj-promo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.wk2n8-btn-copy {
    background-color: #0b80dc;
    color: #ffffff;
}

.wk2n8-btn-activate {
    background-color: #a8c94e;
    color: #090111;
}

/* Screenshots Section */
.gx5mb-screenshots-section {
    margin-bottom: 60px;
}

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

.zw9px-screenshot-item {
    background: #1a0822;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.zw9px-screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 128, 220, 0.3);
    border-color: #0b80dc;
}

.bh4rt-screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.lm8cs-screenshot-caption {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #a8c94e;
}

/* Tournaments Section */
.qt2nv-tournaments-section {
    margin-bottom: 60px;
}

.hp9xm-tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.km4ws-tournament-card {
    background: linear-gradient(135deg, #1a0822 0%, #2d0f3f 100%);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #0b80dc;
}

.km4ws-tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 128, 220, 0.4);
}

.rx7bp-tournament-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #a8c94e;
}

.fq3dn-tournament-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #d0d0d0;
    line-height: 1.6;
}

.vl8kw-tournament-timer {
    background: rgba(168, 201, 78, 0.1);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.jm6yr-timer-label {
    color: #a8c94e;
    font-size: 14px;
}

.nz4xh-timer-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-left: 5px;
}

.ps9mt-tournament-prize {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
}

/* Video Section */
.dy6zn-video-section {
    margin-bottom: 60px;
}

.wt5pk-video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 128, 220, 0.3);
}

.mx7vb-video-iframe {
    width: 100%;
    height: 500px;
}

/* Wheel Section */
.qn8hv-wheel-section {
    margin-bottom: 60px;
}

.zr4pm-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a0822 0%, #2d0f3f 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid #0b80dc;
}

.fk9jx-wheel-canvas {
    max-width: 100%;
    height: auto;
}

.wk2n8-btn-spin {
    background: linear-gradient(135deg, #0b80dc 0%, #0966b3 100%);
    color: #ffffff;
    font-size: 20px;
    padding: 15px 50px;
}

.hv3ln-wheel-result {
    text-align: center;
    background: rgba(168, 201, 78, 0.2);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #a8c94e;
}

.tx9kw-result-text {
    font-size: 22px;
    font-weight: 700;
    color: #a8c94e;
    margin-bottom: 20px;
}

.wk2n8-btn-claim {
    background-color: #a8c94e;
    color: #090111;
}

/* Content Section */
.bv7xm-content-section {
    margin-bottom: 60px;
}

.pn4kz-content-wrapper {
    background: #1a0822;
    border-radius: 15px;
    padding: 40px;
    line-height: 1.8;
}

.pn4kz-content-wrapper h1,
.pn4kz-content-wrapper h2,
.pn4kz-content-wrapper h3 {
    color: #a8c94e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pn4kz-content-wrapper p {
    margin-bottom: 15px;
    color: #e8e8e8;
}

.pn4kz-content-wrapper ul,
.pn4kz-content-wrapper ol {
    margin: 15px 0 15px 30px;
    color: #e8e8e8;
}

.pn4kz-content-wrapper li {
    margin-bottom: 10px;
}

.pn4kz-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #090111;
}

.pn4kz-content-wrapper th,
.pn4kz-content-wrapper td {
    border: 2px solid #0b80dc;
    padding: 15px;
    text-align: left;
}

.pn4kz-content-wrapper th {
    background: #0b80dc;
    color: #ffffff;
    font-weight: 700;
}

.pn4kz-content-wrapper a {
    color: #0b80dc;
    text-decoration: underline;
}

/* Reviews Section */
.rm9yd-reviews-section {
    margin-bottom: 60px;
}

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

.jt8qw-review-card {
    background: #1a0822;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #0b80dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jt8qw-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 128, 220, 0.3);
}

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

.dw7fr-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a8c94e;
}

.yq3nx-review-info {
    flex: 1;
}

.hz9bm-review-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.fp4rc-review-stars {
    color: #ffd700;
    font-size: 16px;
}

.vm8kt-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #d0d0d0;
}

/* Review Form */
.pw7kn-review-form-wrapper {
    background: linear-gradient(135deg, #1a0822 0%, #2d0f3f 100%);
    border-radius: 15px;
    padding: 40px;
    border: 2px solid #a8c94e;
}

.nd5vx-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #a8c94e;
    text-align: center;
}

.xf9mq-review-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.kp4wm-form-label {
    display: block;
    margin-bottom: 8px;
    color: #e8e8e8;
    font-weight: 600;
}

.qt8nx-form-input,
.qm6vy-form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #090111;
    border: 2px solid #0b80dc;
    border-radius: 8px;
    color: #e8e8e8;
    font-size: 15px;
    font-family: Helvetica, sans-serif;
    transition: border-color 0.3s ease;
}

.qt8nx-form-input:focus,
.qm6vy-form-textarea:focus {
    outline: none;
    border-color: #a8c94e;
}

.wk2n8-btn-submit {
    background-color: #a8c94e;
    color: #090111;
    width: 100%;
    font-size: 18px;
    padding: 15px;
}

.lw5nx-form-success {
    background: rgba(168, 201, 78, 0.2);
    border: 2px solid #a8c94e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #a8c94e;
    font-size: 18px;
    margin-top: 20px;
}

/* Footer */
.kw9mx-footer {
    background: linear-gradient(135deg, #090111 0%, #1a0822 100%);
    padding: 60px 0 20px;
    margin-top: auto;
}

.pv6qn-footer-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.zn8ht-footer-section {
    display: flex;
    flex-direction: column;
}

.mt5wq-footer-desc {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.qx7mb-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #a8c94e;
}

.lp3wn-footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm9kx-footer-item {
    color: #d0d0d0;
    font-size: 14px;
}

.dy6vr-footer-link {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dy6vr-footer-link:hover {
    color: #0b80dc;
}

.fw7xn-footer-payments,
.fw7xn-footer-providers {
    margin-bottom: 30px;
}

.bm4qv-payments-grid,
.bm4qv-providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.nx8wk-payment-logo,
.rm5wv-provider-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nx8wk-payment-logo:hover,
.rm5wv-provider-logo:hover {
    transform: scale(1.1);
}

.yx3pq-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.wt9mn-copyright,
.dk6wm-legal,
.nv7xm-domain {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Fixed Widget */
.nq7rw-widget-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #a8c94e 0%, #8fad3a 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

.mv8kx-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fx4nb-widget-text {
    color: #090111;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.wk2n8-btn-widget {
    background-color: #090111;
    color: #a8c94e;
    padding: 12px 35px;
}

.wk2n8-btn-widget:hover {
    background-color: #0b80dc;
    color: #ffffff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .ty6kw-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #090111;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .ty6kw-nav.active {
        display: block;
    }

    .qm4zx-nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .mx6pq-burger {
        display: flex;
    }

    .hp9xm-tournaments-grid,
    .nv7qk-screenshots-grid {
        grid-template-columns: 1fr;
    }

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

    .pq4ls-hero-title {
        font-size: 36px;
    }

    .zm9wx-hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .pw9vn-header-wrapper {
        gap: 15px;
    }

    .km7xq-header-left {
        gap: 15px;
    }

    .zx7kv-online-counter {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .nv7qk-screenshots-grid {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .zw9px-screenshot-item {
        min-width: 280px;
        scroll-snap-align: center;
    }

    .hp9xm-tournaments-grid {
        overflow-x: auto;
        display: flex;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }

    .km4ws-tournament-card {
        min-width: 280px;
        scroll-snap-align: center;
    }

    .mv8kx-widget-content {
        justify-content: center;
        text-align: center;
    }

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

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

    .lq8hp-promo-card {
        padding: 25px;
    }

    .dx6km-promo-code {
        font-size: 24px;
    }
}

/* Unused styles for uniqueness */
.unused-class-a3x {
    display: none;
}

.unused-class-b7y {
    visibility: hidden;
}

.unused-class-c2z {
    position: absolute;
    left: -9999px;
}

.legacy-wp-style {
    font-family: "Times New Roman", serif;
}

.elementor-hidden {
    opacity: 0;
}

/* =========================
   PRO BLOCK (.container.pro)
   ========================= */
.container.pro{
    max-width: 980px;              /* читабельна ширина */
    margin: 22px auto 60px;
    padding: 28px 18px 40px;

    background: rgba(9, 1, 17, 0.58);
    border: 1px solid rgba(168, 201, 78, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);

    color: rgba(232,232,232,0.92);
    font-size: 16px;
    line-height: 1.9;
}

/* Заголовки */
.container.pro h1,
.container.pro h2,
.container.pro h3{
    color: #a8c94e;
    line-height: 1.25;
    letter-spacing: .2px;
}

.container.pro h2{
    font-size: 26px;
    margin: 28px 0 14px;
    padding-left: 14px;
    border-left: 4px solid rgba(168,201,78,.85);
}

.container.pro h3{
    font-size: 20px;
    margin: 18px 0 10px;
    color: rgba(232,232,232,.96);
}

/* Текст */
.container.pro p{
    margin: 0 0 14px;
}

/* Посилання */
.container.pro a{
    color: #0b80dc;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;

    /* щоб довгі урли не ламали верстку */
    overflow-wrap: anywhere;
    word-break: break-word;
}
.container.pro a:hover{
    color: #a8c94e;
}

/* Списки */
.container.pro ul,
.container.pro ol{
    margin: 12px 0 18px;
    padding-left: 22px;
}

.container.pro li{
    margin: 8px 0;
}

/* UL зробимо “чек-list” */
.container.pro ul{
    list-style: none;
    padding-left: 0;
}
.container.pro ul li{
    position: relative;
    padding-left: 28px;
}
.container.pro ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #a8c94e;
    font-weight: 900;
}

/* OL акуратні цифри */
.container.pro ol{
    list-style: none;
    padding-left: 0;
    counter-reset: step;
}
.container.pro ol li{
    counter-increment: step;
    position: relative;
    padding-left: 42px;
    margin: 10px 0;
}
.container.pro ol li::before{
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(11,128,220,.18);
    border: 1px solid rgba(11,128,220,.45);
    color: #0b80dc;
    font-weight: 900;
}

/* Трохи “повітря” між секціями */
.container.pro h2 + p,
.container.pro h3 + p{
    margin-top: 6px;
}

/* Перший абзац як лід */
.container.pro > p:first-of-type{
    background: rgba(9,1,17,.52);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 16px 16px;
    margin-bottom: 18px;
}

/* =========================
   Mobile
   ========================= */
@media (max-width: 768px){
    .container.pro{
        margin: 14px auto 44px;
        padding: 18px 14px 28px;
        font-size: 15px;
        line-height: 1.85;
        border-radius: 16px;
    }

    .container.pro h2{
        font-size: 20px;
        margin: 20px 0 12px;
        padding-left: 12px;
    }

    .container.pro h3{
        font-size: 17px;
    }

    .container.pro ol li{
        padding-left: 40px;
    }
}

@media (max-width: 420px){
    .container.pro{
        font-size: 14.5px;
    }
}
/* =========================
   HEADER (rework)
   ========================= */
.gx4mb-header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 1, 17, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 12px 0;
}

.pw9vn-header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap; /* важливо: не переносити в рядки */
}

/* left */
.km7xq-header-left{
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.dv5nt-logo{
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.rx8hp-logo-img{
    width: auto;
    height: 42px;
    max-width: 170px;
    display: block;
    transition: transform .2s ease;
}
.rx8hp-logo-img:hover{ transform: scale(1.03); }

/* desktop nav */
.ty6kw-nav{
    display: block;
}

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

.lv9nx-nav-link{
    color: rgba(232,232,232,0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.lv9nx-nav-link:hover{
    color: #fff;
    background: rgba(11,128,220,0.18);
    transform: translateY(-1px);
}

/* right */
.bn3mw-header-right{
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

/* online counter (desktop only) */
.zx7kv-online-counter{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(168,201,78,0.35);
    background: rgba(168,201,78,0.08);
}
.hm9tx-online-text{ font-size: 13px; }

/* buttons */
.vq4nr-header-buttons{
    display: flex;
    align-items: center;
    gap: 10px;
}

.wk2n8-btn{
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.wk2n8-btn-login{
    background: #0b80dc;
    color: #fff;
    box-shadow: 0 8px 20px rgba(11,128,220,.22);
}
.wk2n8-btn-login:hover{
    background: #0966b3;
    transform: translateY(-1px);
}

.wk2n8-btn-signup{
    background: #a8c94e;
    color: #090111;
    box-shadow: 0 8px 20px rgba(168,201,78,.18);
}
.wk2n8-btn-signup:hover{
    background: #8fad3a;
    transform: translateY(-1px);
}

/* burger */
.mx6pq-burger{
    display: none; /* показуємо на моб */
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    justify-content: center;
}

.rw8kx-burger-line{
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: rgba(232,232,232,0.95);
    transition: transform .25s ease, opacity .25s ease;
}

/* бургер активний (якщо ти додаєш .active на кнопку) */
.mx6pq-burger.active .rw8kx-burger-line:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.mx6pq-burger.active .rw8kx-burger-line:nth-child(2){
    opacity: 0;
}
.mx6pq-burger.active .rw8kx-burger-line:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Responsive
   ========================= */

/* tablet & down: nav -> burger menu */
@media (max-width: 992px){
    .mx6pq-burger{ display: inline-flex; }

    /* ховаємо десктоп нав в рядку */
    .ty6kw-nav{
        display: none;
        position: fixed;
        left: 14px;
        right: 14px;
        top: 72px; /* під висоту хедера */
        background: rgba(9, 1, 17, 0.96);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 14px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.55);
        backdrop-filter: blur(10px);
    }

    .ty6kw-nav.active{ display: block; }

    .qm4zx-nav-menu{
        flex-direction: column;
        gap: 10px;
    }

    .lv9nx-nav-link{
        width: 100%;
        padding: 12px 12px;
        background: rgba(255,255,255,0.03);
    }
    .lv9nx-nav-link:hover{
        background: rgba(11,128,220,0.22);
        transform: none;
    }
}

/* mobile: все в один рядок + онлайн сховати */
@media (max-width: 768px){
    .pw9vn-header-wrapper{
        gap: 10px;
    }

    .rx8hp-logo-img{
        height: 38px;
        max-width: 140px;
    }

    /* приховуємо онлайн на моб */
    .zx7kv-online-counter{
        display: none !important;
    }

    /* кнопки компактніше */
    .wk2n8-btn{
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 12px;
    }

    .vq4nr-header-buttons{
        gap: 8px;
    }

    /* щоб точно влізло в один ряд */
    .km7xq-header-left{ gap: 10px; }
    .bn3mw-header-right{ gap: 8px; }
}

/* very small phones */
@media (max-width: 420px){
    /* якщо не влазить — можна сховати текст на кнопці входу */
    .wk2n8-btn-login{ padding: 9px 10px; }
    .wk2n8-btn-signup{ padding: 9px 10px; }

    /* опціонально: зробити logo ще меншим */
    .rx8hp-logo-img{
        height: 34px;
        max-width: 120px;
    }
}
