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

body {
    font-family: 'PT Sans', Arial, sans-serif;
    background-color: #323234;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.t4n8q-header {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.r7k3m-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.y2p9v-logo-block {
    flex-shrink: 0;
}

.h3j6w-logo-img {
    max-height: 50px;
    width: auto;
}

.s9v2k-nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.c8k2f-menu-link {
    color: #00fbc8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.c8k2f-menu-link:hover {
    color: #ff2e09;
    transform: translateY(-2px);
}

.x5q8r-online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
}

.b2n7m-counter-icon {
    font-size: 18px;
}

.p3f8d-counter-num {
    color: #00fbc8;
    font-weight: bold;
}

.z7h4q-header-buttons {
    display: flex;
    gap: 12px;
}

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

.l6m9p-btn-login {
    background: linear-gradient(135deg, #00fbc8, #00d4a8);
    color: #000000;
}

.l6m9p-btn-login:hover {
    background: linear-gradient(135deg, #00d4a8, #00b890);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 251, 200, 0.4);
}

.k3v8x-btn-signup {
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    color: #ffffff;
}

.k3v8x-btn-signup:hover {
    background: linear-gradient(135deg, #cc2507, #aa1f06);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 46, 9, 0.4);
}

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

.j4p7s-burger-line {
    width: 30px;
    height: 3px;
    background-color: #00fbc8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .s9v2k-nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #000000;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .s9v2k-nav-menu.active {
        display: block;
    }

    .m4h7p-menu-list {
        flex-direction: column;
        gap: 15px;
    }

    .f9r2n-burger {
        display: flex;
    }

    .x5q8r-online-counter {
        order: -1;
    }
}

.q8m3v-hero-banner {
    position: relative;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.n5k9r-slider-wrapper {
    position: relative;
    height: 500px;
}

.w7t2p-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.w7t2p-slide.active {
    opacity: 1;
}

.x4h8m-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f6q3n-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
}

.r9v5k-slide-title {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.m2p7x-slide-text {
    font-size: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.d8k4v-cta-button {
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    color: #ffffff;
    font-size: 20px;
    padding: 15px 40px;
    border-radius: 30px;
}

.d8k4v-cta-button:hover {
    background: linear-gradient(135deg, #cc2507, #aa1f06);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 46, 9, 0.5);
}

.t5h9m-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.p3k8v-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.p3k8v-dot.active {
    background-color: #ff2e09;
    transform: scale(1.2);
}

.n2v8s-container {
    flex: 1;
    margin-top: 30px;
}

.p8d4x-heading-primary {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.s8m4r-section-title {
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.v6n2q-pros-cons {
    margin: 40px 0;
}

.k7p3x-pros-cons-row {
    margin-top: 30px;
}

.w2q8v-card-box {
    background: linear-gradient(135deg, #1a1a1c, #2a2a2d);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.w2q8v-card-box:hover {
    transform: translateY(-5px);
}

.w2q8v-card-box.pros {
    border-left: 5px solid #00fbc8;
}

.w2q8v-card-box.cons {
    border-left: 5px solid #ff2e09;
}

.r4n7k-card-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.m6p2s-list {
    list-style: none;
    padding: 0;
}

.x8k4n-list-item {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #d0d0d0;
    line-height: 1.8;
}

.x8k4n-list-item:before {
    content: "▸";
    position: absolute;
    left: 10px;
    color: #00fbc8;
    font-weight: bold;
}

.y3v8q-author-block {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2a2d, #1a1a1c);
    border-radius: 12px;
    border-left: 4px solid #ff2e09;
}

.t7k2m-author-text {
    color: #ffffff;
    margin-bottom: 10px;
}

.h5n9p-author-bio {
    color: #c0c0c0;
    line-height: 1.8;
}

.d2r6x-author-link a {
    color: #00fbc8;
    text-decoration: none;
}

.d2r6x-author-link a:hover {
    color: #ff2e09;
}

.p9m5k-screenshots {
    margin: 50px 0;
}

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

.x4k8r-screenshot-item {
    text-align: center;
    background: #1a1a1c;
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.x4k8r-screenshot-item:hover {
    transform: scale(1.05);
}

.w2h6m-screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.f5t9p-screenshot-caption {
    color: #c0c0c0;
    font-size: 16px;
}

.k6v2n-winners {
    margin: 50px 0;
}

.r8m3p-winners-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.q5h9t-winners-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1c;
    border-radius: 10px;
    overflow: hidden;
}

.x7k2v-table-header {
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    color: #ffffff;
}

.n4p8m-th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.f3h7q-table-row {
    border-bottom: 1px solid #2a2a2d;
    transition: background 0.3s ease;
}

.f3h7q-table-row:hover {
    background: #2a2a2d;
}

.m2v5x-td {
    padding: 12px 15px;
    color: #d0d0d0;
}

.m2v5x-td.highlight {
    color: #00fbc8;
    font-weight: bold;
}

.h8v3k-games {
    margin: 50px 0;
}

.p6m9r-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.t4n7k-game-card {
    background: linear-gradient(135deg, #1a1a1c, #2a2a2d);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.t4n7k-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 251, 200, 0.3);
}

.x2h8v-game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.q5k9m-game-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
}

.w7t3p-game-provider {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 15px;
}

.f8k2n-game-btn {
    background: linear-gradient(135deg, #00fbc8, #00d4a8);
    color: #000000;
    width: 100%;
}

.f8k2n-game-btn:hover {
    background: linear-gradient(135deg, #00d4a8, #00b890);
    transform: scale(1.05);
}

.r3v8m-wheel-section {
    margin: 50px 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a1c, #2a2a2d);
    border-radius: 20px;
}

.k6n2p-wheel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.t9h5x-wheel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.v4m8q-wheel-canvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 251, 200, 0.3));
}

.w7k3t-spin-btn {
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    color: #ffffff;
    font-size: 20px;
    padding: 15px 50px;
    border-radius: 30px;
}

.w7k3t-spin-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #cc2507, #aa1f06);
    transform: scale(1.1);
}

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

.f2p6n-wheel-result {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2d, #1a1a1c);
    border-radius: 15px;
    max-width: 500px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.m8v3q-result-title {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
}

.r7t2k-result-text {
    font-size: 18px;
    color: #c0c0c0;
    margin-bottom: 25px;
}

.d4n8v-claim-btn {
    background: linear-gradient(135deg, #00fbc8, #00d4a8);
    color: #000000;
    font-size: 18px;
    padding: 12px 40px;
}

.d4n8v-claim-btn:hover {
    background: linear-gradient(135deg, #00d4a8, #00b890);
    transform: scale(1.05);
}

.n7q4k-faq {
    margin: 50px 0;
}

.v3m8p-faq-accordion {
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.k2h6r-faq-item {
    background: #1a1a1c;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.x9t5m-faq-question {
    width: 100%;
    padding: 20px;
    background: #1a1a1c;
    border: none;
    color: #ffffff;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.x9t5m-faq-question:hover {
    background: #2a2a2d;
}

.x9t5m-faq-question.active {
    background: linear-gradient(135deg, #2a2a2d, #1a1a1c);
    color: #00fbc8;
}

.f4n7p-faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #ff2e09;
    transition: transform 0.3s ease;
}

.w6k3q-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #2a2a2d;
}

.w6k3q-faq-answer.show {
    max-height: 500px;
    padding: 20px;
}

.w6k3q-faq-answer p {
    color: #c0c0c0;
    line-height: 1.8;
}

.q7m3v-footer {
    background-color: #000000;
    margin-top: 60px;
    padding: 40px 0 20px;
}

.p9k5t-footer-row {
    margin-bottom: 30px;
}

.f9p3k-footer-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.t2n6q-footer-menu-item {
    margin-bottom: 10px;
}

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

.v8k4p-footer-link:hover {
    color: #00fbc8;
}

.m7v2k-payments-logos,
.p4k9v-providers-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.n3h7q-payment-logo,
.x8n2t-provider-logo {
    width: 60px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.n3h7q-payment-logo:hover,
.x8n2t-provider-logo:hover {
    filter: grayscale(0%);
}

.h5v9k-footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a2a2d;
    margin-top: 30px;
}

.t3m7r-license-text,
.w6k2n-legal-text,
.r9t4v-copyright {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 10px;
}

.k9m4v-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    padding: 15px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease;
}

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

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

.r6t2n-widget-text {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.v8k5m-widget-link {
    background: #000000;
    color: #00fbc8;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.v8k5m-widget-link:hover {
    background: #1a1a1c;
    transform: scale(1.05);
    color: #ffffff;
}

.f2n9q-widget-close {
    position: absolute;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

.f2n9q-widget-close:hover {
    color: #000000;
}

.w3j7r-content-block {
    margin: 40px 0;
}

.f6k2m-text-content {
    background: linear-gradient(135deg, #1a1a1c, #2a2a2d);
    padding: 30px;
    border-radius: 15px;
    color: #d0d0d0;
    line-height: 1.8;
}

.f6k2m-text-content h2 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.f6k2m-text-content h3 {
    color: #00fbc8;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.f6k2m-text-content ul,
.f6k2m-text-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.f6k2m-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.f6k2m-text-content th,
.f6k2m-text-content td {
    border: 1px solid #2a2a2d;
    padding: 12px;
    text-align: left;
}

.f6k2m-text-content th {
    background: #2a2a2d;
    color: #ffffff;
    font-weight: bold;
}

.f6k2m-text-content a {
    color: #00fbc8;
    text-decoration: none;
}

.f6k2m-text-content a:hover {
    color: #ff2e09;
}

@media (max-width: 768px) {
    .r9v5k-slide-title {
        font-size: 32px;
    }

    .m2p7x-slide-text {
        font-size: 16px;
    }

    .n5k9r-slider-wrapper {
        height: 350px;
    }

    .p8d4x-heading-primary {
        font-size: 28px;
    }

    .s8m4r-section-title {
        font-size: 24px;
    }

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

    .p6m9r-games-grid {
        grid-template-columns: 1fr;
    }

    .v4m8q-wheel-canvas {
        width: 300px;
        height: 300px;
    }
}

.elementor-section {
    display: none;
}

.wp-block-group {
    margin: 0;
}

.yoast-breadcrumb {
    display: none;
}

.iuvd {
    max-width: 980px;
    margin: 40px auto;
    padding: 40px 34px;
    background: radial-gradient(circle at top right, rgba(0, 251, 200, .1), transparent 28%),
    linear-gradient(180deg, rgba(42, 42, 44, .98), rgba(26, 26, 28, .98));
    border: 1px solid rgba(0, 251, 200, .16);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
    color: #f0f0f0;
}

.iuvd h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.14;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.02em;
}

.iuvd h2 {
    margin: 34px 0 14px;
    font-size: clamp(1.35rem, 2.7vw, 2rem);
    line-height: 1.24;
    font-weight: 800;
    color: #00fbc8;
}

.iuvd h3 {
    margin: 24px 0 10px;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
}

.iuvd p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.82;
    color: #d8d8d8;
}

.iuvd a {
    color: #00fbc8;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 251, 200, .35);
    transition: color .25s ease, border-color .25s ease;
}

.iuvd a:hover {
    color: #7fffe5;
    border-color: rgba(127, 255, 229, .7);
}

.iuvd ul,
.iuvd ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.iuvd ul {
    list-style: none;
}

.iuvd ol {
    list-style: decimal;
}

.iuvd ul li,
.iuvd ol li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.75;
    color: #d8d8d8;
}

.iuvd ul li {
    position: relative;
    padding-left: 18px;
}

.iuvd ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00fbc8;
    box-shadow: 0 0 0 4px rgba(0, 251, 200, .12);
}

.iuvd table {
    width: 100%;
    margin: 22px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    display: table;
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(0, 251, 200, .16);
    border-radius: 18px;
}

.iuvd thead th,
.iuvd th,
.iuvd td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.iuvd thead th,
.iuvd th {
    font-size: .95rem;
    font-weight: 700;
    color: #00fbc8;
    background: rgba(0, 251, 200, .08);
    border-bottom: 1px solid rgba(0, 251, 200, .16);
}

.iuvd td {
    font-size: .95rem;
    line-height: 1.65;
    color: #e8e8e8;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

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

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

.iuvd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #00fbc8;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 251, 200, .09), rgba(255, 255, 255, .025));
}

.iuvd blockquote p {
    margin: 0;
    color: #ffffff;
}

.iuvd strong,
.iuvd b {
    color: #ffffff;
    font-weight: 700;
}

.iuvd img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

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

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

@media (max-width: 991px) {
    .iuvd {
        margin: 28px auto;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .iuvd h1 {
        margin-bottom: 18px;
    }

    .iuvd h2 {
        margin-top: 28px;
    }

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

@media (max-width: 767px) {
    .iuvd {
        margin: 20px auto;
        padding: 22px 16px;
        border-radius: 18px;
    }

    .iuvd h1 {
        font-size: 1.75rem;
        line-height: 1.18;
    }

    .iuvd h2 {
        margin: 24px 0 12px;
        font-size: 1.28rem;
    }

    .iuvd h3 {
        margin: 18px 0 8px;
        font-size: 1.02rem;
    }

    .iuvd p,
    .iuvd ul li,
    .iuvd ol li {
        font-size: .95rem;
        line-height: 1.72;
    }

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

    .iuvd th,
    .iuvd td {
        padding: 12px 13px;
        font-size: .9rem;
    }

    .iuvd blockquote {
        margin: 18px 0;
        padding: 15px 14px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .iuvd {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .iuvd h1 {
        font-size: 1.52rem;
    }

    .iuvd h2 {
        font-size: 1.14rem;
    }

    .iuvd h3 {
        font-size: .98rem;
    }

    .iuvd p,
    .iuvd ul li,
    .iuvd ol li,
    .iuvd th,
    .iuvd td {
        font-size: .88rem;
    }

    .iuvd table {
        border-radius: 14px;
    }

    .iuvd th,
    .iuvd td {
        min-width: 160px;
    }
}

.t4n8q-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 251, 200, .12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.r7k3m-navbar {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 18px;
    min-height: 78px;
}

.y2p9v-logo-block {
    flex-shrink: 0;
}

.d8f5x-logo-link {
    display: inline-flex;
    align-items: center;
}

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

.s9v2k-nav-menu {
    min-width: 0;
}

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

.c8k2f-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.c8k2f-menu-link:hover {
    color: #00fbc8;
    background: rgba(0, 251, 200, .08);
    transform: translateY(-1px);
}

.x5q8r-online-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    white-space: nowrap;
}

.v9k4t-counter-text {
    color: #cfcfcf;
    font-size: 14px;
    font-weight: 600;
}

.p3f8d-counter-num {
    color: #00fbc8;
}

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

.z7h4q-header-buttons .btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.z7h4q-header-buttons .btn:hover {
    transform: translateY(-1px);
}

.l6m9p-btn-login {
    background: linear-gradient(135deg, #00fbc8, #00d4a8);
    color: #000;
    box-shadow: 0 8px 22px rgba(0, 251, 200, .18);
}

.k3v8x-btn-signup {
    background: linear-gradient(135deg, #ff2e09, #cc2507);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 46, 9, .18);
}

.f9r2n-burger {
    display: none;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.f9r2n-burger:hover {
    background: rgba(0, 251, 200, .08);
    border-color: rgba(0, 251, 200, .24);
}

.j4p7s-burger-line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #00fbc8;
    transition: transform .25s ease, opacity .25s ease;
}

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

.f9r2n-burger.active .j4p7s-burger-line:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 1199px) {
    .r7k3m-navbar {
        grid-template-columns:auto 1fr auto;
        gap: 14px;
    }

    .x5q8r-online-counter {
        display: none;
    }
}

@media (max-width: 991px) {
    .r7k3m-navbar {
        grid-template-columns:auto 1fr auto auto;
        min-height: 72px;
        gap: 10px;
        position: relative;
    }

    .s9v2k-nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        padding: 12px;
        background: rgba(8, 8, 8, .98);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    }

    .s9v2k-nav-menu.active {
        display: block;
    }

    .m4h7p-menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .c8k2f-menu-link {
        justify-content: flex-start;
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 15px;
    }

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

    .z7h4q-header-buttons .btn {
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .f9r2n-burger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .r7k3m-navbar {
        grid-template-columns:auto 1fr auto auto;
        min-height: 66px;
        gap: 8px;
    }

    .h3j6w-logo-img {
        height: 44px;
    }

    .z7h4q-header-buttons {
        gap: 6px;
    }

    .z7h4q-header-buttons .btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

    .f9r2n-burger {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
    }
}

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

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

    .z7h4q-header-buttons .btn {
        min-height: 38px;
        padding: 0 10px;
        font-size: 11px;
        border-radius: 9px;
    }

    .f9r2n-burger {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .j4p7s-burger-line {
        width: 18px;
    }

    .s9v2k-nav-menu {
        top: calc(100% + 8px);
        padding: 10px;
        border-radius: 16px;
    }
}