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

.elementor-element {
    margin: 0;
}

.yoast-seo-meta {
    visibility: hidden;
}

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #0A1E00;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.xb-body-main {
    min-height: 100vh;
}

/* Header Styles */
.xb7k2-header-wrap {
    background-color: #012B00;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.xb-logo {
    max-height: 50px;
    transition: transform 0.3s ease;
}

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

.xb-nav-main .nav-link {
    color: #FFFFFF !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.xb-nav-main .nav-link:hover {
    color: #00B300 !important;
    transform: translateY(-2px);
}

.xb-nav-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00B300;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.xb-nav-main .nav-link:hover::after {
    width: 80%;
}

.xb-btn-login {
    background-color: #FFFFFF;
    color: #012B00;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.xb-btn-signup {
    background-color: #00B300;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.xb-btn-signup:hover {
    background-color: #009900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 179, 0, 0.3);
    color: #FFFFFF;
}

.xb-burger {
    background-color: transparent;
    border: 2px solid #00B300;
    padding: 5px 10px;
}

.xb-online-counter {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border-radius: 8px;
    font-size: 14px;
    animation: fadeIn 1s ease-in;
}

.xb-online-icon {
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.xb-hero-section {
    min-height: 500px;
    position: relative;
}

.xb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.xb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 43, 0, 0.8) 0%, rgba(10, 30, 0, 0.9) 100%);
}

.xb-hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.xb-hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1.2s ease-out;
}

.xb-btn-hero {
    background: linear-gradient(135deg, #00B300 0%, #009900 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: slideInLeft 1.4s ease-out;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.4);
}

.xb-btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 179, 0, 0.6);
    background: linear-gradient(135deg, #009900 0%, #00B300 100%);
}

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

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

/* Main Content */
.xb-main-content {
    animation: fadeIn 1.5s ease-in;
}

/* Jackpots Section */
.xb-jackpot-card {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #00B300;
}

.xb-jackpot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 179, 0, 0.4);
}

.xb-jackpot-label {
    color: #00B300;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

.xb-jackpot-amount {
    font-size: 36px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 179, 0, 0.5);
}

.xb-jackpot-currency {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.8;
}

/* Mirrors Section */
.xb-mirrors-table-wrap {
    background: #012B00;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.xb-mirrors-table {
    margin-bottom: 0;
}

.xb-mirrors-table thead {
    background-color: #013d00;
}

.xb-mirrors-table th {
    color: #00B300;
    font-weight: 700;
    padding: 15px;
    border: none;
}

.xb-mirrors-table td {
    padding: 15px;
    vertical-align: middle;
}

.xb-btn-mirror {
    background-color: #00B300;
    color: #FFFFFF;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.xb-btn-mirror:hover {
    background-color: #009900;
    transform: scale(1.1);
    color: #FFFFFF;
}

/* Tournaments Section */
.xb-tournament-card {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #00B300;
    height: 100%;
}

.xb-tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 179, 0, 0.4);
}

.xb-tournament-title {
    color: #00B300;
}

.xb-tournament-timer {
    background: rgba(0, 179, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #00B300;
}

.xb-timer-display {
    font-size: 24px;
    font-family: 'Courier New', monospace;
}

/* Slot Game Section */
.xb-slot-game-card {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #00B300;
}

.xb-slot-reels {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
}

.xb-slot-reel {
    background: linear-gradient(135deg, #FFFFFF 0%, #f0f0f0 100%);
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.xb-slot-symbol {
    font-size: 48px;
}

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

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

.xb-btn-spin {
    background: linear-gradient(135deg, #00B300 0%, #009900 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.4);
    min-width: 200px;
}

.xb-btn-spin:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 179, 0, 0.6);
}

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

.xb-win-alert {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border: 2px solid #00B300;
    color: #FFFFFF;
}

.xb-btn-claim {
    background-color: #00B300;
    color: #FFFFFF;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.xb-btn-claim:hover {
    background-color: #009900;
    transform: scale(1.05);
    color: #FFFFFF;
}

/* Content Section */
.xb-content-box {
    background: linear-gradient(135deg, #013d00 0%, #012B00 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #00B300;
}

.xb-content-box h1,
.xb-content-box h2,
.xb-content-box h3,
.xb-content-box h4,
.xb-content-box h5,
.xb-content-box h6 {
    color: #00B300;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.xb-content-box ul,
.xb-content-box ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.xb-content-box li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.xb-content-box a {
    color: #00B300;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.xb-content-box a:hover {
    color: #FFFFFF;
}

.xb-content-box table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
}

.xb-content-box table th,
.xb-content-box table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #00B300;
}

.xb-content-box table th {
    background-color: #013d00;
    color: #00B300;
    font-weight: 700;
}

.xb-content-box blockquote {
    border-left: 4px solid #00B300;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    opacity: 0.9;
}

/* FAQ Section */
.xb-faq-accordion .accordion-item {
    background-color: #012B00;
    border: 1px solid #00B300;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.xb-faq-button {
    background-color: #013d00;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.xb-faq-button:not(.collapsed) {
    background-color: #00B300;
    color: #FFFFFF;
}

.xb-faq-button:hover {
    background-color: #00B300;
}

.xb-faq-button:focus {
    box-shadow: none;
    outline: none;
}

.xb-faq-body {
    background-color: #012B00;
    color: #FFFFFF;
    line-height: 1.8;
}

/* Footer */
.xb-footer-container {
    background-color: #012B00;
    border-top: 3px solid #00B300;
}

.xb-footer-title {
    color: #00B300;
    font-weight: 700;
}

.xb-footer-menu a {
    transition: all 0.3s ease;
    text-decoration: none;
}

.xb-footer-menu a:hover {
    color: #00B300 !important;
    padding-left: 5px;
}

.xb-payments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.xb-payment-item {
    background: rgba(0, 179, 0, 0.1);
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
    color: #00B300;
    border: 1px solid #00B300;
}

.xb-providers-list {
    font-size: 12px;
    line-height: 1.6;
}

/* Fixed Widget */
.xb-fixed-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #012B00 0%, #013d00 100%);
    border-top: 3px solid #00B300;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.xb-btn-widget {
    background: linear-gradient(135deg, #00B300 0%, #009900 100%);
    color: #FFFFFF !important;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.xb-btn-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 179, 0, 0.6);
    color: #FFFFFF !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .xb-hero-title {
        font-size: 2rem;
    }

    .xb-jackpot-amount {
        font-size: 24px;
    }

    .xb-slot-reel {
        width: 80px;
        height: 80px;
    }

    .xb-slot-symbol {
        font-size: 36px;
    }

    .xb-widget-content {
        flex-direction: column;
        text-align: center;
    }

    .xb-btn-widget {
        width: 100%;
    }

    .xb-payments-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .xb-btn-login {
        display: none !important;
    }

    .xb-mirrors-table {
        font-size: 14px;
    }

    .xb-mirrors-table th,
    .xb-mirrors-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 576px) {
    .xb-slot-reels {
        gap: 10px !important;
        padding: 20px;
    }

    .xb-slot-reel {
        width: 70px;
        height: 70px;
    }

    .xb-slot-symbol {
        font-size: 32px;
    }

    .xb-payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional unique styles for obfuscation */
.unused-class-x7k3m {
    display: none;
}

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

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

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

.unused-class-j7k2x {
    transform: scale(0);
}

.unused-element-k9x2j {
    width: 0;
    height: 0;
    overflow: hidden;
}

.tyfd {
    --tyfd-bg: #0d2303;
    --tyfd-surface: #123006;
    --tyfd-surface-2: #16380a;
    --tyfd-border: rgba(0, 179, 0, 0.28);
    --tyfd-border-strong: rgba(0, 179, 0, 0.5);
    --tyfd-text: #f4fff0;
    --tyfd-muted: #b7d4ad;
    --tyfd-accent: #00b300;
    --tyfd-accent-2: #33d633;
    --tyfd-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    --tyfd-radius: 20px;
    max-width: 980px;
    margin: 32px auto 72px;
    padding: 36px 32px;
    background: radial-gradient(circle at top right, rgba(0, 179, 0, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0, 179, 0, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(18, 48, 6, 0.96) 0%, rgba(13, 35, 3, 0.98) 100%);
    border: 1px solid var(--tyfd-border);
    border-radius: 28px;
    box-shadow: var(--tyfd-shadow);
    color: var(--tyfd-text);
    position: relative;
    overflow: hidden;
}

.tyfd::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 179, 0, 0.06), transparent 18%, transparent 82%, rgba(0, 179, 0, 0.06));
    pointer-events: none;
}

.tyfd > * {
    position: relative;
    z-index: 1;
}

.tyfd h1,
.tyfd h2,
.tyfd h3,
.tyfd h4,
.tyfd h5,
.tyfd h6 {
    color: var(--tyfd-text);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tyfd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 22px;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(0, 179, 0, 0.22);
}

.tyfd h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    margin: 34px 0 16px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(0, 179, 0, 0.2);
}

.tyfd h3 {
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    margin: 26px 0 12px;
    color: #dfffd6;
}

.tyfd p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--tyfd-muted);
}

.tyfd > p:first-of-type {
    font-size: 1.05rem;
    color: var(--tyfd-text);
}

.tyfd a {
    color: #8aff8a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, opacity 0.2s ease;
    word-break: break-word;
}

.tyfd a:hover {
    color: #ffffff;
}

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

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

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

.tyfd li {
    margin-bottom: 10px;
    line-height: 1.75;
    color: var(--tyfd-text);
}

.tyfd ul li::marker,
.tyfd ol li::marker {
    color: var(--tyfd-accent-2);
    font-weight: 700;
}

.tyfd blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(0, 179, 0, 0.12), rgba(0, 179, 0, 0.04));
    border: 1px solid rgba(0, 179, 0, 0.24);
    border-left: 4px solid var(--tyfd-accent);
    border-radius: 0 18px 18px 0;
}

.tyfd blockquote p {
    margin: 0;
    color: #ebffe5;
}

.tyfd table {
    width: 100%;
    margin: 24px 0;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(8, 24, 2, 0.72);
    border: 1px solid var(--tyfd-border-strong);
    border-radius: 18px;
    overflow: hidden;
}

.tyfd thead th {
    background: linear-gradient(180deg, rgba(0, 179, 0, 0.18), rgba(0, 179, 0, 0.08));
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 179, 0, 0.26);
}

.tyfd tbody td {
    padding: 14px 16px;
    color: var(--tyfd-text);
    border-bottom: 1px solid rgba(0, 179, 0, 0.14);
    vertical-align: top;
    background: transparent;
}

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

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

.tyfd hr {
    border: 0;
    border-top: 1px solid rgba(0, 179, 0, 0.18);
    margin: 28px 0;
}

.tyfd img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 22px 0;
    border-radius: 18px;
    border: 1px solid rgba(0, 179, 0, 0.2);
}

.tyfd dl {
    margin: 10px 0 24px;
}

.tyfd dt {
    margin-top: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.tyfd dd {
    margin: 8px 0 0;
    padding: 0 0 14px 18px;
    border-left: 2px solid rgba(0, 179, 0, 0.18);
}

.tyfd dd p {
    margin: 0;
}

.tyfd code {
    color: #d2ffd2;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 6px;
}

.tyfd table a,
.tyfd blockquote a,
.tyfd dd a {
    color: #a6ff9c;
}

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

    .tyfd h1 {
        padding-bottom: 16px;
    }

    .tyfd h2 {
        margin-top: 30px;
    }

    .tyfd table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

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

    .tyfd h1 {
        font-size: 1.7rem;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .tyfd h2 {
        font-size: 1.24rem;
        margin: 26px 0 12px;
        padding-bottom: 10px;
    }

    .tyfd h3 {
        font-size: 1.04rem;
        margin: 22px 0 10px;
    }

    .tyfd p,
    .tyfd li,
    .tyfd dd p {
        font-size: 0.95rem;
        line-height: 1.72;
    }

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

    .tyfd blockquote {
        padding: 16px 14px;
        margin: 20px 0;
        border-radius: 0 14px 14px 0;
    }

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

    .tyfd table {
        white-space: normal;
        border-radius: 16px;
        overflow: hidden;
    }

    .tyfd thead {
        display: none;
    }

    .tyfd tbody tr {
        display: block;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(0, 179, 0, 0.2);
        background: rgba(255, 255, 255, 0.02);
    }

    .tyfd tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.035);
    }

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

    .tyfd tbody td {
        display: block;
        padding: 10px 0;
        border: 0;
        background: transparent !important;
    }

    .tyfd tbody td + td {
        border-top: 1px solid rgba(0, 179, 0, 0.12);
    }

    .tyfd dt {
        font-size: 1rem;
    }

    .tyfd dd {
        padding-left: 14px;
    }
}

@media (max-width: 479px) {
    .tyfd {
        padding: 18px 14px;
    }

    .tyfd h1 {
        font-size: 1.5rem;
    }

    .tyfd p,
    .tyfd li,
    .tyfd tbody td,
    .tyfd dt,
    .tyfd dd p {
        font-size: 0.92rem;
    }
}

.xb7k2-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, #012b00 0%, #011f00 100%);
    border-bottom: 1px solid rgba(0, 179, 0, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.xb7k2-header-wrap .container-fluid {
    max-width: 1440px;
}

.xb7k2-header-wrap .row {
    min-height: 84px;
}

.xb-logo-link {
    max-width: 170px;
}

.xb-logo {
    display: block;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.xb-nav-main {
    width: 100%;
}

.xb-nav-main .nav {
    gap: 8px;
}

.xb-nav-main .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.xb-nav-main .nav-link:hover,
.xb-nav-main .nav-link:focus {
    color: #ffffff !important;
    background: rgba(0, 179, 0, 0.14);
    box-shadow: inset 0 0 0 1px rgba(0, 179, 0, 0.2);
    transform: translateY(-1px);
}

.xb-nav-main .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: #00b300;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.xb-nav-main .nav-link:hover::after,
.xb-nav-main .nav-link:focus::after {
    transform: scaleX(1);
}

.xb-btn-login,
.xb-btn-signup {
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.xb-btn-login:hover,
.xb-btn-login:focus {
    background: #ffffff;
    color: #012b00;
    border-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.14);
}

.xb-btn-signup {
    background: linear-gradient(180deg, #00c900 0%, #00a800 100%);
    color: #ffffff;
    border: 1px solid #00b300;
}

.xb-btn-signup:hover,
.xb-btn-signup:focus {
    background: linear-gradient(180deg, #00db00 0%, #00b300 100%);
    color: #ffffff;
    border-color: #00db00;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 179, 0, 0.32);
}

.xb-burger {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
}

.xb-burger:focus {
    box-shadow: none;
}

.xb-burger span,
.xb-burger::before,
.xb-burger::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .2s ease, opacity .2s ease;
}

.xb-burger .navbar-toggler-icon {
    display: none;
}

@media (max-width: 767.98px) {
    .xb7k2-header-wrap .container-fluid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .xb7k2-header-wrap .row {
        min-height: 72px;
        row-gap: 0;
    }

    .xb-logo-link {
        max-width: 118px;
    }

    .xb-logo {
        max-height: 38px;
    }

    .xb7k2-header-wrap .col-6.col-md-3.order-1,
    .xb7k2-header-wrap .col-6.col-md-3.order-2 {
        width: 50%;
    }

    .xb7k2-header-wrap .col-12.col-md-6.order-3.order-md-2 {
        width: 100%;
        margin-top: 12px !important;
    }

    .xb7k2-header-wrap .d-flex.justify-content-end.align-items-center.gap-2 {
        gap: 8px !important;
    }

    .xb-btn-signup {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 12px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .xb-burger {
        display: inline-flex;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .xb-nav-main {
        display: none;
        width: 100%;
        padding: 6px 0 2px;
        animation: xbFadeDown .22s ease;
    }

    .xb-nav-main.is-open {
        display: block;
    }

    .xb-nav-main .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0;
        margin: 0;
    }

    .xb-nav-main .nav-item {
        width: 100%;
        padding: 0 !important;
    }

    .xb-nav-main .nav-link {
        justify-content: flex-start;
        width: 100%;
        min-height: 48px;
        padding: 14px 16px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 179, 0, 0.08) 100%);
        box-shadow: inset 0 0 0 1px rgba(0, 179, 0, 0.18);
        font-size: 15px;
    }

    .xb-nav-main .nav-link::after {
        display: none;
    }

    .xb-nav-main .nav-link:hover,
    .xb-nav-main .nav-link:focus {
        background: linear-gradient(180deg, rgba(0, 179, 0, 0.16) 0%, rgba(0, 179, 0, 0.1) 100%);
        transform: none;
    }
}

@media (min-width: 768px) {
    .xb-nav-main {
        display: block !important;
    }

    .xb-burger {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .xb7k2-header-wrap .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .xb-logo-link {
        max-width: 98px;
    }

    .xb-logo {
        max-height: 32px;
    }

    .xb-btn-signup {
        padding: 8px 10px;
        font-size: 11px;
    }

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

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