/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #090f1e;
    color: #e8eaf2;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Header Styles */
.header {
    background: #141b2e;
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

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

.nav-menu a {
    color: #e8eaf2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: #19ac5a;
}

.online-counter {
    background: rgba(25,172,90,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #19ac5a;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.online-counter::before {
    content: '●';
    animation: blink 2s infinite;
}

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

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
}

.btn-login {
    background: #1f2841;
    color: #e8eaf2;
}

.btn-login:hover {
    background: #2a3555;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-signup {
    background: #19ac5a;
    color: #fff;
}

.btn-signup:hover {
    background: #15924c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25,172,90,0.4);
}

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

.burger span {
    width: 25px;
    height: 3px;
    background: #e8eaf2;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-section {
    background: url("hero.png");
    border-radius: 12px;
    margin: 20px 0;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-banner {
    position: relative;
}

.hero-banner img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #b8c1db;
    background: rgba(128, 128, 128, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.promo-card {
    border: 2px solid #19ac5a;
    padding: 25px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 10px;
}

.promo-label {
    font-size: 14px;
    color: #b8c1db;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-code {
    font-size: 32px;
    font-weight: 700;
    color: #19ac5a;
    margin: 15px 0;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.promo-status {
    display: inline-block;
    background: rgba(25,172,90,0.2);
    color: #19ac5a;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 10px 0;
    font-weight: 600;
}

.btn-copy, .btn-activate {
    width: 100%;
    margin-top: 10px;
}

.btn-copy {
    background: #1f2841;
    color: #e8eaf2;
}

.btn-activate {
    background: #19ac5a;
    color: #fff;
}

/* Content Sections */
.content-section {
    background: #141b2e;
    border-radius: 10px;
    padding: 35px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: #fff;
    border-left: 4px solid #19ac5a;
    padding-left: 20px;
}

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

.pros-list, .cons-list {
    background: rgba(31,40,65,0.5);
    padding: 25px;
    border-radius: 8px;
}

.pros-list h3 {
    color: #19ac5a;
    margin-bottom: 15px;
    font-size: 22px;
}

.cons-list h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 22px;
}

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

.pros-list li, .cons-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #19ac5a;
    font-weight: bold;
    font-size: 18px;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 18px;
}

/* Screenshots Gallery */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.screenshot-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

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

.tournament-card {
    background: linear-gradient(135deg, #1f2841 0%, #141b2e 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(25,172,90,0.3);
    transition: all 0.3s;
}

.tournament-card:hover {
    border-color: #19ac5a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25,172,90,0.2);
}

.tournament-title {
    font-size: 20px;
    color: #19ac5a;
    margin-bottom: 12px;
}

.tournament-desc {
    font-size: 14px;
    color: #b8c1db;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tournament-timer {
    background: rgba(25,172,90,0.1);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin: 12px 0;
    font-weight: 600;
    color: #19ac5a;
}

.tournament-prize {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Demo Game */
.demo-game-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.demo-game-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.review-card {
    background: rgba(31,40,65,0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(232,234,242,0.1);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: #19ac5a;
    transform: translateY(-3px);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19ac5a, #1f2841);
}

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

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

.review-text {
    color: #b8c1db;
    line-height: 1.6;
    font-size: 14px;
}

/* Review Form */
.review-form {
    background: rgba(31,40,65,0.5);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(232,234,242,0.2);
    border-radius: 6px;
    background: rgba(9,15,30,0.5);
    color: #e8eaf2;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #19ac5a;
}

/* Footer */
.footer {
    background: #141b2e;
    padding: 40px 25px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

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

.footer-section h4 {
    color: #19ac5a;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin: 10px 0;
}

.footer-menu a {
    color: #b8c1db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #19ac5a;
}

.payment-logos, .provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.payment-logos img, .provider-logos img {
    height: 40px;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s;
}

.payment-logos img:hover, .provider-logos img:hover {
    filter: grayscale(0);
}

.copyright {
    color: #7a8396;
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(232,234,242,0.1);
    line-height: 1.5;
}

/* Fixed Widget */
.fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #19ac5a 0%, #15924c 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: slideUp 0.5s ease;
}

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

.widget-text {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.widget-bonus {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.widget-btn {
    background: #fff;
    color: #19ac5a;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.widget-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Author Box */
.author-box {
    background: rgba(31,40,65,0.5);
    border-left: 4px solid #19ac5a;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19ac5a, #1f2841);
}

.author-info h4 {
    color: #19ac5a;
    margin-bottom: 5px;
}

.author-info p {
    color: #b8c1db;
    font-size: 14px;
    line-height: 1.5;
}

.author-link {
    color: #19ac5a;
    text-decoration: none;
    font-size: 13px;
}

/* Content Styles */
.text-content {
    color: #e8eaf2;
    line-height: 1.8;
}

.text-content h1, .text-content h2, .text-content h3 {
    color: #fff;
    margin: 25px 0 15px;
}

.text-content h2 {
    font-size: 28px;
    border-left: 4px solid #19ac5a;
    padding-left: 15px;
}

.text-content h3 {
    font-size: 22px;
}

.text-content p {
    margin-bottom: 15px;
}

.text-content ul, .text-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.text-content li {
    margin: 8px 0;
}

.text-content a {
    color: #19ac5a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.text-content a:hover {
    border-bottom-color: #19ac5a;
}

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(31,40,65,0.3);
}

.text-content table th,
.text-content table td {
    padding: 12px;
    border: 1px solid rgba(232,234,242,0.2);
    text-align: left;
}

.text-content table th {
    background: rgba(25,172,90,0.2);
    color: #19ac5a;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #141b2e;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 999;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 25px;
    }

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

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

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

    .fixed-widget {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .widget-text {
        font-size: 14px;
        text-align: center;
    }
}

.mobile-slider {
    display: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.mobile-slider > * {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .screenshots-grid.mobile-slider,
    .tournaments-grid.mobile-slider {
        display: flex;
        gap: 15px;
    }
}


.container.info{
    max-width: 920px;
    margin: 24px auto;
    width: 100%;
    padding: 28px 22px;
    background: rgba(20,27,46,.55);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.container.info > *:first-child{ margin-top: 0; }
.container.info > *:last-child{ margin-bottom: 0; }

.container.info p{
    margin: 0 0 14px 0;
    color: #d7dbe3;
    line-height: 1.85;
    font-size: 16px;
}

.container.info h2{
    margin: 26px 0 14px 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(25,172,90,.25);
}

.container.info h3{
    margin: 18px 0 10px 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 750;
}

.container.info h4{
    margin: 18px 0 10px 0;
    color: #19ac5a;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
}

.container.info a{
    color: #19ac5a;
    text-decoration: none;
    font-weight: 650;
    border-bottom: 1px solid rgba(25,172,90,.35);
    transition: filter .2s ease, border-color .2s ease;
}

.container.info a:hover{
    filter: brightness(1.08);
    border-color: rgba(25,172,90,.75);
}

.container.info ul,
.container.info ol{
    margin: 14px 0 18px 0;
    padding-left: 22px;
    color: #d7dbe3;
}

.container.info li{
    margin: 8px 0;
    line-height: 1.75;
}

.container.info ul li::marker,
.container.info ol li::marker{
    color: rgba(25,172,90,.95);
    font-weight: 800;
}

.container.info blockquote{
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #19ac5a;
    background: rgba(9,15,30,.55);
    border-radius: 10px;
    color: #cfd6e3;
}

.container.info table{
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 22px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.container.info thead{
    background: rgba(31,40,65,.75);
}

.container.info th,
.container.info td{
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.container.info th{
    color: #19ac5a;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.container.info td{
    color: #d7dbe3;
    background: rgba(20,27,46,.35);
}

.container.info tr:hover td{
    background: rgba(25,172,90,.06);
}

.container.info hr{
    border: 0;
    height: 1px;
    background: rgba(255,255,255,.10);
    margin: 22px 0;
}

.container.info img{
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 992px){
    .container.info{
        margin: 18px auto;
        padding: 24px 18px;
        border-radius: 14px;
    }
    .container.info h2{ font-size: 24px; }
}

@media (max-width: 768px){
    .container.info{
        margin: 14px 12px;
        width: auto;
        padding: 18px 14px;
        border-radius: 14px;
    }

    .container.info p{ font-size: 15px; line-height: 1.8; }

    .container.info h2{
        font-size: 20px;
        margin-top: 20px;
        padding-bottom: 8px;
    }

    .container.info h3{
        font-size: 17px;
        margin-top: 14px;
    }

    .container.info ul,
    .container.info ol{
        padding-left: 18px;
    }

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

    .container.info th,
    .container.info td{
        padding: 10px 12px;
    }
}

@media (max-width: 420px){
    .container.info{
        margin: 12px 10px;
        padding: 16px 12px;
    }
    .container.info h2{ font-size: 19px; }
}

.screenshots-grid,
.tournaments-grid{
    display: grid;
}

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

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

@media (max-width: 768px){
    .screenshots-grid.mobile-slider,
    .tournaments-grid.mobile-slider{
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .screenshots-grid.mobile-slider > *,
    .tournaments-grid.mobile-slider > *{
        scroll-snap-align: start;
        flex: 0 0 85%;
        max-width: 85%;
    }

    .screenshots-grid.mobile-slider::-webkit-scrollbar,
    .tournaments-grid.mobile-slider::-webkit-scrollbar{
        height: 6px;
    }

    .screenshots-grid.mobile-slider::-webkit-scrollbar-thumb,
    .tournaments-grid.mobile-slider::-webkit-scrollbar-thumb{
        background: rgba(255,255,255,.18);
        border-radius: 999px;
    }
}

.demo-game-wrapper{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.demo-game-wrapper iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px){
    .demo-game-wrapper{
        height: calc(100dvh - 180px);
        min-height: 520px;
        padding-bottom: 0;
    }
}

@media (max-width: 420px){
    .demo-game-wrapper{
        height: calc(100dvh - 160px);
        min-height: 500px;
    }
}
.header{
    background:#141b2e;
    padding:12px 18px;
    border-radius:10px;
    margin:20px 0;
    box-shadow:0 4px 12px rgba(0,0,0,.3);
}

.header-row{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:14px;
}

.header-logo{ min-width:0; }
.logo{ display:inline-flex; align-items:center; }
.logo img{ display:block; height:44px; width:auto; }

.burger{
    display:none;
    width:44px;
    height:44px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(31,40,65,.35);
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    user-select:none;
}

.burger span{
    width:22px;
    height:2px;
    background:#e8eaf2;
    border-radius:2px;
    transition:transform .2s ease, opacity .2s ease;
}

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

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

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

.nav-menu a{
    color:#e8eaf2;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    padding:8px 10px;
    border-radius:10px;
    transition:background .2s ease, color .2s ease;
}

.nav-menu a:hover{
    background:rgba(25,172,90,.12);
    color:#fff;
}

.online-counter{
    background:rgba(25,172,90,.16);
    border:1px solid rgba(25,172,90,.35);
    color:#19ac5a;
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    white-space:nowrap;
}

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

@media (max-width: 991px){
    .header{
        margin:12px 0;
        padding:10px 14px;
    }

    .header-row{
        grid-template-columns:auto auto;
        grid-template-areas:"logo burger";
    }

    .header-logo{ grid-area:logo; }
    .burger{ grid-area:burger; display:flex; justify-self:end; }

    .header-nav{
        position:fixed;
        inset:0 0 0 auto;
        width:min(86vw, 360px);
        height:100dvh;
        background:#141b2e;
        border-left:1px solid rgba(255,255,255,.10);
        box-shadow:-18px 0 40px rgba(0,0,0,.55);
        padding:78px 16px 16px;
        transform:translateX(110%);
        transition:transform .25s ease;
        z-index:1100;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:14px;
        overflow:auto;
        -webkit-overflow-scrolling:touch;
    }

    .header-nav.active{ transform:translateX(0); }

    .nav-menu{
        flex-direction:column;
        gap:8px;
        width:100%;
    }

    .nav-menu li{ width:100%; }

    .nav-menu a{
        width:100%;
        justify-content:center;
        display:flex;
        padding:14px 14px;
        border:1px solid rgba(255,255,255,.10);
        background:rgba(31,40,65,.35);
    }

    .online-counter{
        text-align:center;
        width:100%;
    }

    .header-buttons{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:10px;
        width:100%;
    }

    body.menu-open{ overflow:hidden; }

    body.menu-open::before{
        content:"";
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.55);
        z-index:1090;
    }
}

@media (max-width: 420px){
    .logo img{ height:40px; }
    .header-buttons{ grid-template-columns:1fr; }
}

:root{
    --hx9-bg:#141b2e;
    --hx9-bg2:#0d1321;
    --hx9-text:#e8e9ed;
    --hx9-accent:#19ac5a;
    --hx9-ghost:#1f2841;
    --hx9-border:rgba(255,255,255,.10);
}

.hx9{
    background: linear-gradient(135deg, var(--hx9-bg) 0%, var(--hx9-bg2) 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 12px;
    margin: 16px 0;
}

.hx9__row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding: 12px 14px;
}

.hx9__brand{ display:inline-flex; align-items:center; }
.hx9__brand img{ display:block; height:44px; width:auto; }

.hx9__nav{
    display:flex;
    align-items:center;
    gap:16px;
}

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

.hx9__link{
    color: var(--hx9-text);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    padding:8px 10px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    white-space:nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.hx9__link:hover{
    background: rgba(25,172,90,.10);
    color:#fff;
    transform: translateY(-1px);
}

.hx9__online{
    background: rgba(25,172,90,.12);
    border: 1px solid rgba(25,172,90,.25);
    color: var(--hx9-accent);
    font-weight:800;
    font-size:13px;
    padding:7px 12px;
    border-radius: 999px;
    white-space:nowrap;
}

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

.hx9__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:12px;
    font-weight:900;
    font-size:14px;
    text-decoration:none;
    white-space:nowrap;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.hx9__btn--ghost{
    background: var(--hx9-ghost);
    color: var(--hx9-text);
    border: 1px solid rgba(255,255,255,.10);
}

.hx9__btn--primary{
    background: var(--hx9-accent);
    color:#fff;
    border: 1px solid rgba(25,172,90,.35);
    box-shadow: 0 10px 22px rgba(25,172,90,.22);
}

.hx9__btn:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 26px rgba(0,0,0,.28);
}

.hx9__burger{
    display:none;
    width:46px;
    height:46px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(31,40,65,.35);
    cursor:pointer;
    padding:10px;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-direction:column;
}

.hx9__burger span{
    width:22px;
    height:2px;
    background: var(--hx9-text);
    border-radius:2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hx9__burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hx9__burger.is-open span:nth-child(2){ opacity:0; }
.hx9__burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.hx9-lock{ overflow:hidden; }

@media (max-width: 992px){
    .hx9__burger{ display:inline-flex; }
    .hx9__nav{
        position: fixed;
        left: 0;
        right: 0;
        top: 72px;
        height: calc(100dvh - 72px);
        background: rgba(9,15,30,.92);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255,255,255,.06);
        padding: 16px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        transform: translateX(100%);
        transition: transform .22s ease;
        overflow-y:auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }
    .hx9__nav.is-open{ transform: translateX(0); }

    .hx9__menu{ flex-direction: column; align-items: stretch; gap: 10px; }
    .hx9__item{ width:100%; }
    .hx9__link{
        width:100%;
        justify-content:center;
        padding:14px 14px;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(20,27,46,.55);
    }

    .hx9__online{ text-align:center; }
    .hx9__actions{ justify-content:center; flex-wrap:wrap; }
}

@media (max-width: 520px){
    .hx9{ border-radius: 10px; }
    .hx9__brand img{ height:40px; }
    .hx9__online{ display:none; }
}

.wp-block-spacer { height: 20px; }
.wp-block-columns { display: none; }
.elementor-widget-wrap { display: none; }

.unused-class-a7g3k { display: none; }
.unused-class-m2p9x { visibility: hidden; }
.unused-class-w8r5q { opacity: 0; }
.xf9k2-wrapper { position: relative; }
.b4m7n-container { max-width: 100%; }
