:root {
    --color-header: #450b17;
    --color-btn-light: #e0e0e0;
    --color-btn-primary: #c7051d;
    --color-bg: #110d0e;
    --color-text: #f5f5f5;
    --color-accent: #d4af37;
}

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

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

body.fixed {
    overflow: hidden;
}

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

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

.header {
    background: linear-gradient(135deg, var(--color-header) 0%, #2d0610 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.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;
    gap: 25px;
    justify-content: center;
}

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

.header-nav a:hover {
    color: var(--color-accent);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

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

.btn-login {
    background: var(--color-btn-light);
    color: #111;
}

.btn-login:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 224, 224, 0.3);
}

.btn-signup {
    background: var(--color-btn-primary);
    color: #fff;
}

.btn-signup:hover {
    background: #a80417;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 5, 29, 0.5);
}

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

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

.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 {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.8) 0%, rgba(199, 5, 29, 0.6) 100%), url('/banner-casino.jpg') center/cover;
    padding: 100px 20px;
    text-align: center;
    margin: 30px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bg-scroll 20s linear infinite;
}

@keyframes bg-scroll {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

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

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

.btn-hero {
    background: var(--color-btn-primary);
    color: #fff;
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 10px;
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(199, 5, 29, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(199, 5, 29, 0.8);
    }
}

.btn-hero:hover {
    background: #a80417;
    transform: scale(1.05);
}

.content-section {
    margin: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--color-accent);
    text-align: center;
}

.mirror-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
    display: block;
}

.mirror-table table {
    width: 100%;
    min-width: 600px;
}

.mirror-table th,
.mirror-table td {
    padding: 15px;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mirror-table th {
    background: var(--color-header);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.mirror-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.mirror-table tr:hover {
    background: rgba(199, 5, 29, 0.1);
}

.mirror-table a {
    color: var(--color-btn-primary);
    text-decoration: none;
    font-weight: 600;
}

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

.mirror-updated {
    text-align: center;
    font-size: 14px;
    color: #00ff00;
    margin-top: 10px;
    font-weight: 600;
}

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

.tournament-card {
    background: linear-gradient(135deg, rgba(69, 11, 23, 0.6) 0%, rgba(45, 6, 16, 0.8) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tournament-card:hover::before {
    left: 100%;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 5, 29, 0.4);
    border-color: var(--color-accent);
}

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

.tournament-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tournament-prize {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-btn-primary);
    margin: 15px 0;
}

.tournament-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #00ff00;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px 0;
}

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

.slot-game {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

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

.slot-reel {
    background: #000;
    border: 3px solid var(--color-accent);
    border-radius: 10px;
    width: 100px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slot-reel.spinning {
    animation: spin 0.5s linear infinite;
}

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

.btn-spin {
    background: var(--color-btn-primary);
    color: #fff;
    padding: 15px 50px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 0;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-spin:hover {
    background: #a80417;
    transform: scale(1.05);
}

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

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

.slot-result.win {
    color: #00ff00;
    animation: flash 0.5s ease-in-out 3;
}

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

.faq-container {
    margin: 30px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer {
    background: linear-gradient(135deg, var(--color-header) 0%, #2d0610 100%);
    padding: 50px 20px;
    margin-top: auto;
}

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

.footer-section h3 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.payment-logos img,
.provider-logos img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-logos img:hover,
.provider-logos img:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-btn-primary) 0%, #8a0413 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

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

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

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

.btn-widget {
    background: #fff;
    color: var(--color-btn-primary);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-widget:hover {
    background: var(--color-accent);
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-row {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-header);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .burger {
        display: flex;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

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

    .slot-machine {
        gap: 10px;
    }

    .slot-reel {
        width: 70px;
        height: 90px;
        font-size: 40px;
    }

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

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

    .widget-bonus {
        font-size: 18px;
    }
}

.wp-block-columns {
    display: none;
}

.wp-block-gallery {
    display: none;
}

.elementor-widget-wrap {
    display: none;
}

.yoast-schema-graph {
    display: none;
}

.wp-site-blocks {
    display: none;
}

.unused-class-1 {
    opacity: 0;
}

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

.legacy-wrapper {
    display: none;
}

:root {
    --bgdf-bg: #110d0e;
    --bgdf-card: #171213;
    --bgdf-card2: #201718;
    --bgdf-txt: #ececee;
    --bgdf-muted: #b8b8bb;
    --bgdf-red: #c7051d;
    --bgdf-red2: #e00720;
    --bgdf-gold: #ffd700;
    --bgdf-border: rgba(255, 255, 255, .10);
    --bgdf-br: 16px;
    --bgdf-shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --bgdf-shadow2: 0 14px 34px rgba(199, 5, 29, .22);
}

.container.bgdf {
    max-width: 1100px;
    margin: 0 auto;
    padding: 26px 18px 60px;
    color: var(--bgdf-txt);
}

.container.bgdf > p:first-of-type {
    margin: 0 0 18px;
    padding: 18px 18px;
    background: linear-gradient(135deg, rgba(199, 5, 29, .14), rgba(255, 255, 255, .03));
    border: 1px solid var(--bgdf-border);
    border-radius: var(--bgdf-br);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.container.bgdf h1,
.container.bgdf h2,
.container.bgdf h3 {
    color: var(--bgdf-txt);
    line-height: 1.2;
}

.container.bgdf h1 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: .2px;
    margin: 8px 0 18px;
    text-align: center;
}

.container.bgdf h2 {
    font-size: 28px;
    font-weight: 850;
    margin: 30px 0 14px;
    padding: 0 0 12px;
    position: relative;
}

.container.bgdf h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bgdf-red), var(--bgdf-red2));
    box-shadow: 0 10px 22px rgba(199, 5, 29, .25);
}

.container.bgdf h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 18px 0 10px;
}

.container.bgdf p {
    margin: 0 0 14px;
    color: rgba(236, 236, 238, .9);
}

.container.bgdf a {
    color: var(--bgdf-red2);
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 7, 32, .35);
    padding-bottom: 1px;
}

.container.bgdf a:hover {
    color: #ff2a45;
    border-bottom-color: rgba(255, 42, 69, .6);
}

.container.bgdf ul,
.container.bgdf ol {
    margin: 0 0 16px;
    padding-left: 22px;
    color: rgba(236, 236, 238, .92);
}

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

.container.bgdf ul li::marker,
.container.bgdf ol li::marker {
    color: var(--bgdf-red2);
    font-weight: 800;
}

.container.bgdf strong {
    color: #fff;
}

.container.bgdf blockquote {
    margin: 18px 0;
    padding: 16px 16px 16px 18px;
    border-left: 4px solid var(--bgdf-red);
    background: rgba(255, 255, 255, .03);
    border-radius: 14px;
    color: rgba(236, 236, 238, .92);
}

.container.bgdf table {
    width: 100%;
    margin: 16px 0 22px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--bgdf-shadow);
}

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

.container.bgdf tr:last-child td {
    border-bottom: none;
}

.container.bgdf th {
    background: linear-gradient(135deg, rgba(199, 5, 29, .26), rgba(255, 255, 255, .04));
    color: #fff;
    font-weight: 850;
}

.container.bgdf td {
    color: rgba(236, 236, 238, .88);
}

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

.container.bgdf img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}

.container.bgdf ul + ul {
    margin-top: -6px;
}

.container.bgdf ul + ul li {
    opacity: .92;
}

@media (max-width: 992px) {
    .container.bgdf {
        padding: 22px 14px 52px
    }

    .container.bgdf h1 {
        font-size: 34px
    }

    .container.bgdf h2 {
        font-size: 24px
    }

    .container.bgdf table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width: 768px) {
    .container.bgdf h1 {
        font-size: 28px
    }

    .container.bgdf h2 {
        font-size: 22px
    }

    .container.bgdf h2:after {
        width: 72px
    }

    .container.bgdf p {
        font-size: 15px
    }

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

    .container.bgdf th, .container.bgdf td {
        padding: 12px 12px;
        font-size: 14px;
        white-space: nowrap
    }

    .container.bgdf > p:first-of-type {
        padding: 16px 14px
    }
}

@media (max-width: 520px) {
    .container.bgdf {
        padding: 18px 12px 46px
    }

    .container.bgdf h1 {
        font-size: 24px
    }

    .container.bgdf h2 {
        font-size: 20px;
        margin: 22px 0 12px
    }

    .container.bgdf h3 {
        font-size: 18px
    }

    .container.bgdf p {
        font-size: 14px
    }

    .container.bgdf > p:first-of-type {
        border-radius: 14px
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #450b17 0%, #2d0610 100%);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .45);
}

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

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

.header-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo img {
    max-height: 46px;
    width: auto;
    display: block;
}

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

.header-nav a {
    color: #ececee;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    opacity: .92;
    position: relative;
    padding: 8px 6px;
    border-radius: 10px;
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.header-nav a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-1px);
}

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

.online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #ececee;
    font-size: 14px;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff5a;
    box-shadow: 0 0 0 6px rgba(0, 255, 90, .12);
    animation: hdrPulse 1.8s ease-in-out infinite;
}

@keyframes hdrPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1
    }
    50% {
        transform: scale(.9);
        opacity: .6
    }
}

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

.btn-login {
    background: #e0e0e0;
    color: #110d0e;
}

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

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    filter: brightness(1.03);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, .06);
    transition: background .2s ease, transform .2s ease;
}

.burger:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-1px);
}

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

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

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

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

@media (max-width: 992px) {
    .header-row {
        gap: 12px
    }

    .header-nav {
        gap: 16px
    }

    .header-nav a {
        font-size: 14px
    }

    .online-counter {
        display: none
    }
}

@media (max-width: 768px) {
    .header-row {
        display: grid;
        grid-template-columns:auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 12px 0;
    }

    .header-logo img {
        max-height: 42px
    }

    .header-actions {
        justify-content: flex-end;
        gap: 8px;
    }

    .btn {
        padding: 9px 12px;
        border-radius: 10px;
        font-size: 13px;
    }

    .burger {
        display: flex
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: min(86vw, 360px);
        height: 100vh;
        padding: 84px 18px 18px;
        background: linear-gradient(180deg, #450b17 0%, #2d0610 100%);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        transition: left .25s ease;
        box-shadow: 20px 0 60px rgba(0, 0, 0, .55);
        z-index: 999;
    }

    .header-nav a {
        font-size: 16px;
        padding: 14px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .06);
    }

    .header-nav a:hover {
        background: rgba(255, 255, 255, .10);
        transform: none;
    }

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

    .header:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
        z-index: 998;
    }

    .header.menu-open:before {
        opacity: 1;
        pointer-events: auto;
    }

    .online-counter {
        display: flex;
        grid-column: 1/-1;
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .btn-login {
        display: none
    }

    .btn {
        padding: 9px 12px
    }

    .header-logo img {
        max-height: 40px
    }
}
