/* XLNTrade-inspired public site theme for Menasati */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

:root {
    --xln-primary: #1667c2;
    --xln-primary-dark: #0e437d;
    --xln-green: #00ca39;
    --xln-red: #ee1212;
    --xln-dark: #323232;
    --xln-gray-bg: #e9e9e9;
    --xln-white: #ffffff;
}

body.xln-site {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--xln-dark);
    background: var(--xln-gray-bg);
}

body.xln-site .header-section,
body.xln-site .footer-section,
body.xln-site .call-to-action {
    display: none !important;
}

/* ===== HEADER ===== */
.xln-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: box-shadow .25s ease;
}

.xln-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.xln-header .xln-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.xln-header .xln-brand img {
    max-height: 42px;
    width: auto;
    display: block;
}

.xln-header .xln-brand-sub {
    font-size: .68rem;
    color: #6c757d;
    margin-top: 2px;
}

.xln-header .xln-menu {
    display: flex;
    align-items: center;
    gap: .15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.xln-header .xln-menu > li {
    position: relative;
}

.xln-header .xln-menu > li > a,
.xln-header .xln-util a {
    display: block;
    padding: .55rem .85rem;
    color: #323232;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.xln-header .xln-menu > li > a:hover,
.xln-header .xln-menu > li > a.active {
    color: var(--xln-primary);
}

.xln-header .xln-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    list-style: none;
    margin: 0;
    z-index: 50;
}

.xln-header .xln-menu > li:hover .xln-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.xln-header .xln-submenu a {
    display: block;
    padding: .45rem 1rem;
    color: #323232;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
}

.xln-header .xln-submenu a:hover {
    background: #f5f5f5;
    color: var(--xln-primary);
}

.xln-header .xln-util {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.xln-header .xln-btn-login {
    color: var(--xln-primary) !important;
    font-weight: 700;
}

.xln-header .xln-btn-open {
    background: var(--xln-primary);
    color: #fff !important;
    border-radius: 4px;
    padding: .5rem 1.1rem !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .03em;
}

.xln-header .xln-btn-open:hover {
    background: var(--xln-primary-dark);
    color: #fff !important;
    text-decoration: none;
}

.xln-header .xln-toggler {
    display: none;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: #323232;
    padding: .25rem;
}

/* ===== HERO SLIDER ===== */
.xln-hero-wrap {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    margin-top: 72px;
}

.xln-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.xln-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xln-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,18,32,.88) 0%, rgba(8,18,32,.55) 55%, rgba(8,18,32,.25) 100%);
}

.xln-hero-slider {
    position: relative;
    z-index: 2;
    padding: 80px 0 120px;
}

.xln-slide {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.xln-slide-copy {
    flex: 1;
    color: #fff;
    max-width: 560px;
}

.xln-slide-copy h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
}

.xln-slide-copy p {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.xln-slide-visual {
    flex: 1;
    text-align: center;
}

.xln-slide-visual img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

.xln-hero-btn {
    display: inline-block;
    min-width: 172px;
    padding: .65rem 1.5rem;
    background: var(--xln-green);
    color: #fff !important;
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background .25s;
}

.xln-hero-btn:hover {
    background: #00a82e;
    color: #fff !important;
    text-decoration: none;
}

.xln-quotes-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0,0,0,.55);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .65rem 0;
}

.xln-quotes-ticker ul {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    width: max-content;
}

.xln-quotes-ticker li {
    flex: 0 0 auto;
    color: #e2e8f0;
    font-size: .82rem;
    white-space: nowrap;
}

.xln-quotes-ticker strong {
    color: #fff;
    margin-right: .35rem;
}

.xln-quotes-ticker .up { color: #34d399; }
.xln-quotes-ticker .down { color: #f87171; }

.xln-quotes-ticker ul.is-marquee {
    animation: xlnTickerScroll var(--ticker-duration, 42s) linear infinite;
    will-change: transform;
}

.xln-quotes-ticker:hover ul.is-marquee {
    animation-play-state: paused;
}

@keyframes xlnTickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

[dir="rtl"] .xln-quotes-ticker ul.is-marquee {
    animation-name: xlnTickerScrollRtl;
}

@keyframes xlnTickerScrollRtl {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .xln-quotes-ticker ul.is-marquee {
        animation: none;
    }
}

/* Owl nav for hero */
.xln-hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15) !important;
    color: #fff !important;
    font-size: 1.25rem !important;
    border: 1px solid rgba(255,255,255,.25) !important;
}

.xln-hero-slider .owl-nav .owl-prev { left: -10px; }
.xln-hero-slider .owl-nav .owl-next { right: -10px; }

/* ===== LEGEND ICONS ===== */
.xln-legend {
    background: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,.15);
    padding: 50px 0;
    position: relative;
    z-index: 4;
}

.xln-legend-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.xln-legend-item img {
    max-height: 64px;
    margin-bottom: .75rem;
}

.xln-legend-item .text {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

/* ===== WHY TRADE ===== */
.xln-why-trade {
    min-height: 460px;
    display: flex;
    align-items: center;
    background-color: var(--xln-gray-bg);
    background-size: cover;
    background-position: center left;
    padding: 80px 0;
}

.xln-why-trade h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #343434;
    margin-top: 0;
    margin-bottom: 1rem;
}

.xln-why-trade .text {
    color: #343434;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.xln-btn-white {
    display: inline-block;
    min-width: 172px;
    padding: .55rem 1.25rem;
    color: #343434 !important;
    border: 3px solid var(--xln-green);
    border-radius: 4px;
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    background: transparent;
    transition: border-color .25s;
}

.xln-btn-white:hover {
    border-color: var(--xln-red);
    color: #343434 !important;
    text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.xln-testimonials {
    background: #fff;
    padding: 70px 0;
    min-height: 480px;
}

.xln-testimonials h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #343434;
}

.xln-testimonials p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.xln-testimonials h5 {
    margin-top: 1.25rem;
    font-weight: 700;
    color: var(--xln-primary);
}

.xln-testimonials .img-testimonial {
    max-height: 340px;
    border-radius: 8px;
}

.xln-testimonials .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--xln-primary) !important;
    color: #fff !important;
    font-size: 1.1rem !important;
}

/* ===== TAKE WITH YOU ===== */
.xln-take-mobile {
    min-height: 420px;
    display: flex;
    align-items: center;
    background-color: var(--xln-gray-bg);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.xln-take-mobile h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #343434;
    margin-top: 0;
    margin-bottom: 1rem;
}

.xln-take-mobile .text {
    color: #343434;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.xln-app-badges {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.xln-app-badges img {
    height: 44px;
}

/* ===== MARKETS TABLE ===== */
.xln-markets-section {
    background: #fff;
    padding: 70px 0;
}

.xln-markets-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: #343434;
}

.xln-markets-section .table {
    margin-bottom: 0;
}

.xln-markets-section .table thead th {
    background: #f8f9fa;
    border: none;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6c757d;
    padding: .85rem 1rem;
}

.xln-markets-section .table tbody td {
    padding: .75rem 1rem;
    vertical-align: middle;
    border-color: #eee;
    font-size: .9rem;
}

/* ===== FOOTER ===== */
.xln-footer {
    background: #2b2b2b;
    color: #ccc;
    font-size: .88rem;
}

.xln-footer a {
    color: #ccc;
    text-decoration: none;
}

.xln-footer a:hover {
    color: #fff;
}

.xln-footer-top {
    padding: 60px 0 40px;
}

.xln-footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.xln-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.xln-footer ul li {
    margin-bottom: .5rem;
}

.xln-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
    font-size: .8rem;
    color: #999;
}

.xln-footer .risk-text {
    font-size: .72rem;
    line-height: 1.6;
    color: #888;
    margin-top: 1rem;
}

.risk-disclaimer {
    font-size: .72rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .65);
    margin: .65rem 0 0;
    max-width: 36rem;
}

.risk-disclaimer--hero {
    color: rgba(255, 255, 255, .75);
    margin-top: .85rem;
}

.risk-disclaimer--register {
    color: #6b7280;
    margin: 1rem 0;
    font-size: .78rem;
}

.xln-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 1.25rem;
    transition: background .2s;
}

.xln-social-links a:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.xln-contact-bar {
    background: var(--xln-primary);
    color: #fff;
    padding: 1.5rem 0;
}

.xln-contact-bar .item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.xln-contact-bar i {
    font-size: 1.5rem;
    opacity: .85;
}

/* ===== INNER PAGES ===== */
.xln-page-hero {
    margin-top: 72px;
    background: linear-gradient(135deg, #1667c2, #0e437d);
    padding: 36px 0;
    text-align: center;
    color: #fff;
}

.xln-page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.xln-page-body {
    padding: 60px 0;
}

.mn-page-lead {
    max-width: 720px;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
}

.xln-auth-wrap {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(180deg, #e9e9e9, #f5f5f5);
}

.xln-auth-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    padding: 2.5rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.xln-auth-card .logo img,
.xln-auth-card .xln-auth-brand img {
    max-height: 48px;
    width: auto;
    display: inline-block;
}

.xln-auth-card h4 {
    font-weight: 700;
    color: #343434;
}

.xln-auth-card .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: .65rem .85rem;
    color: #323232;
    background-color: #fff;
}

.xln-auth-card .form-control:focus {
    color: #323232;
    background-color: #fff;
    border-color: var(--xln-primary);
    box-shadow: 0 0 0 3px rgba(22, 103, 194, .12);
}

.xln-auth-card .form-control::placeholder {
    color: #9ca3af;
}

.xln-auth-card .form-control:-webkit-autofill,
.xln-auth-card .form-control:-webkit-autofill:hover,
.xln-auth-card .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #323232;
    box-shadow: 0 0 0 1000px #fff inset;
    caret-color: #323232;
}

.xln-auth-card .form-label {
    color: #343434;
}

.xln-auth-card .select2-container--default .select2-selection--single {
    height: auto;
    min-height: calc(1.5em + 1.3rem + 2px);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: .65rem .85rem;
    background-color: #fff;
}

.xln-auth-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #323232;
    line-height: 1.5;
    padding-left: 0;
}

.xln-auth-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.xln-auth-card .xln-mobile-input .input-group-text {
    background-color: #f3f4f6;
    color: #323232;
    border: 1px solid #ddd;
    font-weight: 600;
}

.xln-auth-card .xln-mobile-input .form-control {
    border-left: 0;
}

.xln-auth-card .cmn--btn,
.xln-auth-card .btn--primary {
    background: var(--xln-primary) !important;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: .03em;
    width: 100%;
    padding: .75rem;
}

.xln-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
    padding: 1rem 0;
}

.xln-cookie .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.xln-cookie .bw-cookie-accept {
    background: var(--xln-primary);
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
}

/* Hide legacy breadcrumb on xln pages */
body.xln-site .hero-section.bg--overlay {
    display: none;
}

body.xln-site .scrollToTop {
    background: var(--xln-primary);
}

@media (max-width: 1199px) {
    .xln-legend-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .xln-header .xln-toggler { display: block; }
    .xln-header .xln-menu-wrap {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        display: none;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .xln-header .xln-menu-wrap.open { display: block; }
    .xln-header .xln-menu { flex-direction: column; align-items: stretch; }
    .xln-header .xln-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }
    .xln-header .xln-menu > li.open .xln-submenu { display: block; }
    .xln-slide { flex-direction: column; text-align: center; }
    .xln-slide-copy { max-width: 100%; }
    .xln-legend-grid { grid-template-columns: repeat(2, 1fr); }
}

.xln-header .xln-util .custom--dropdown .text {
    color: #323232;
    font-size: .85rem;
}

.xln-header .custom--dropdown {
    margin-right: .5rem;
}

@media (max-width: 575px) {
    .xln-legend-grid { grid-template-columns: 1fr; }
    .xln-hero-wrap { min-height: 520px; }
    .xln-hero-slider { padding: 50px 0 100px; }
}

/* ===== PREMIUM: AXIA / WRPRO INSPIRED ===== */
.mn-section-head {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
}
.mn-section-head .mn-kicker {
    display: block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--xln-primary);
    margin: 0;
    line-height: 1.5;
}
.mn-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
    width: 100%;
}
.mn-section-head p { color: #64748b; line-height: 1.7; margin: 0; width: 100%; }

.mn-trust-metrics {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 2.5rem 0;
}
.mn-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.mn-trust-item {
    text-align: center;
    color: #fff;
    padding: 1rem .5rem;
}
.mn-trust-item i {
    font-size: 1.75rem;
    color: #38bdf8;
    margin-bottom: .5rem;
    display: block;
}
.mn-trust-item strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
}
.mn-trust-item span {
    font-size: .78rem;
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mn-assets-section {
    padding: 80px 0;
    background: #fff;
}
.mn-assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.mn-asset-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(180deg, #f8fafc, #fff);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mn-asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,.1);
    border-color: var(--xln-primary);
    text-decoration: none;
}
.mn-asset-card i {
    font-size: 2rem;
    color: var(--xln-primary);
    margin-bottom: .75rem;
}
.mn-asset-card h4 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .25rem;
}
.mn-asset-card p {
    color: #64748b;
    font-size: .85rem;
    margin: 0;
}

/* Account Types */
.mn-account-types {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    overflow-x: clip;
}
.mn-account-types--compact { padding-top: 60px; padding-bottom: 40px; }

.mn-account-types-cta {
    background: #f8fafc;
    padding: 0 0 3rem;
    text-align: center;
}

.mn-account-types > .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
}

.mn-account-cards-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .mn-account-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

@media (min-width: 992px) {
    .mn-account-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1280px) {
    .mn-account-cards-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1.15rem;
    }
}

.mn-account-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.85rem 1.25rem 1.65rem;
    min-height: 100%;
    box-shadow: 0 4px 20px rgba(15,23,42,.04);
    transition: transform .25s, box-shadow .25s;
    border-top: 4px solid var(--tier-color, var(--xln-primary));
}
.mn-account-card.is-featured {
    border-color: #d4a017;
    box-shadow: 0 16px 40px rgba(212,160,23,.14);
}
.mn-account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,.1);
}
.mn-account-card.is-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(212,160,23,.18);
}

.mn-account-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .65rem;
    margin-bottom: .15rem;
    min-height: 4.75rem;
}

.mn-account-card-head {
    flex: 1;
    min-width: 0;
}

.mn-account-badge {
    flex: 0 0 auto;
    align-self: flex-start;
    background: var(--tier-color, var(--xln-primary));
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .28rem .5rem;
    border-radius: 999px;
    line-height: 1.2;
    white-space: nowrap;
}
.mn-account-card-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .35rem;
    line-height: 1.2;
}
.mn-account-min {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--xln-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}
.mn-account-min small {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: #64748b;
    margin-top: .1rem;
}
.mn-account-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    flex: 1;
}
.mn-account-stats li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .65rem 1rem;
    align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .82rem;
    line-height: 1.35;
}
.mn-account-stats li:last-child {
    border-bottom: 0;
}
.mn-account-stat-label {
    color: #64748b;
    min-width: 0;
    word-break: break-word;
    hyphens: auto;
}
.mn-account-stat-value {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: .25rem;
}

.mn-account-cta {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: .75rem 1rem;
    background: var(--xln-primary);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s;
}
.mn-account-cta:hover { background: var(--xln-primary-dark); color: #fff !important; }
.mn-account-card.is-featured .mn-account-cta {
    background: linear-gradient(135deg, #d4a017, #b8860b);
}

@media (max-width: 575px) {
    .mn-account-card {
        padding: 1.65rem 1.15rem 1.45rem;
    }

    .mn-account-stats li {
        grid-template-columns: minmax(0, 1.15fr) auto;
        gap: .75rem 1.15rem;
        font-size: .86rem;
    }
}

.mn-account-table-wrap {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
    border: 1px solid #e2e8f0;
}
.mn-account-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background: #fff;
    font-size: .88rem;
}
.mn-account-table thead th {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #fff;
    padding: 1.1rem .85rem;
    text-align: center;
    font-weight: 600;
    border: none;
    vertical-align: bottom;
}
.mn-account-table thead th:first-child {
    text-align: left;
    min-width: 200px;
}
.mn-account-table thead th.is-featured {
    background: linear-gradient(180deg, #92400e, #d4a017);
}
.mn-account-table .tier-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}
.mn-account-table .tier-min {
    display: block;
    font-size: .72rem;
    opacity: .85;
    font-weight: 400;
    margin-top: .15rem;
}
.mn-account-table tbody td {
    padding: .85rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}
.mn-account-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0f172a;
    background: #fafbfc;
}
.mn-account-table tbody td.is-featured {
    background: rgba(212,160,23,.06);
}
.mn-account-table tbody tr:hover td {
    background: #f8fafc;
}
.mn-account-table tbody tr:hover td.is-featured {
    background: rgba(212,160,23,.1);
}
.mn-check-yes { color: #16a34a; font-size: 1.25rem; }
.mn-check-no { color: #cbd5e1; }

.mn-table-btn {
    display: inline-block;
    padding: .55rem 1.1rem;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-decoration: none;
    border: 2px solid var(--xln-primary);
    color: var(--xln-primary) !important;
    background: transparent;
    transition: all .2s;
}
.mn-table-btn.primary,
.mn-table-btn:hover {
    background: var(--xln-primary);
    color: #fff !important;
}
.mn-account-table .mn-table-btn.primary {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    border-color: #d4a017;
    color: #fff !important;
}

.mn-link-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--xln-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
}
.mn-link-btn:hover { color: var(--xln-primary-dark); }

.mn-awards-strip {
    padding: 70px 0;
    background: #0f172a;
    color: #fff;
}
.mn-awards-strip .mn-section-head h2 { color: #fff; }
.mn-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.mn-award {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
}
.mn-award i {
    font-size: 2rem;
    color: #38bdf8;
    margin-bottom: .65rem;
    display: block;
}
.mn-award span {
    font-size: .85rem;
    font-weight: 600;
    opacity: .9;
}

/* Why Choose Us — homepage marketing cards */
.mn-why-choose {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.mn-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.mn-why-choose-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(15,23,42,.04);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mn-why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,.1);
    border-color: rgba(22,103,194,.25);
}
.mn-why-choose-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(22,103,194,.12), rgba(56,189,248,.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
}
.mn-why-choose-icon i {
    font-size: 1.65rem;
    color: var(--xln-primary);
}
.mn-why-choose-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .5rem;
    line-height: 1.3;
}
.mn-why-choose-tagline {
    font-size: .88rem;
    font-weight: 700;
    color: var(--xln-primary);
    line-height: 1.5;
    margin-bottom: .85rem;
}
.mn-why-choose-text {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

.mn-promo-strip {
    padding: 60px 0 80px;
    background: #f8fafc;
}
.mn-promo-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.mn-promo-card i {
    font-size: 2.25rem;
    color: var(--xln-primary);
    margin-bottom: 1rem;
}
.mn-promo-card h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .5rem;
}
.mn-promo-card p {
    color: #64748b;
    margin: 0;
    font-size: .9rem;
}

.mn-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(15,23,42,.08);
    border: 1px solid #e2e8f0;
}
.mn-contact-card .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: .7rem .9rem;
}
.mn-contact-card .form-control:focus {
    border-color: var(--xln-primary);
    box-shadow: 0 0 0 3px rgba(22,103,194,.12);
}

@media (max-width: 1199px) {
    .mn-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .mn-assets-grid { grid-template-columns: repeat(2, 1fr); }
    .mn-awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .mn-why-choose-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .mn-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .mn-assets-grid { grid-template-columns: 1fr; }
    .mn-awards-grid { grid-template-columns: 1fr; }
    .mn-why-choose { padding: 60px 0; }
    .mn-why-choose-card { padding: 1.5rem 1.25rem; }
    .mn-account-table-wrap { overflow-x: auto; }
    .mn-account-table { min-width: 800px; }
    .mn-account-card.is-featured { transform: none; }

    .xln-header .xln-brand-sub { display: none; }
    .xln-header .xln-util { flex-wrap: wrap; justify-content: flex-end; gap: .25rem; }
    .xln-header .xln-btn-open {
        padding: .4rem .65rem !important;
        font-size: .68rem;
        white-space: nowrap;
    }
    .xln-header .xln-btn-login { font-size: .78rem; padding: .35rem .5rem !important; }
    .xln-hero-wrap { min-height: auto; }
    .xln-hero-slider { padding-top: 88px; }
    .xln-slide-copy h2 { font-size: 1.45rem; line-height: 1.25; }
}

.menasati-live-chat-btn {
    border: 0;
    background: none;
    padding: 0;
    font-weight: 600;
    color: var(--xln-primary);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.menasati-live-chat-btn:hover,
.menasati-live-chat-btn:focus {
    color: var(--xln-primary);
    opacity: .85;
    text-decoration: underline;
}
.menasati-live-chat-btn--footer {
    color: #fff;
    text-align: left;
}
.menasati-live-chat-btn--footer:hover,
.menasati-live-chat-btn--footer:focus {
    color: #fff;
}

/* ===== Evest-style split registration ===== */
body.xln-site:has(.mn-register-split) {
    background: #fff;
}

body.xln-site:has(.mn-register-split) .scrollToTop,
body.xln-site:has(.mn-register-split) .preloader {
    display: none !important;
}

.mn-register-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.mn-register-split__brand {
    flex: 0 0 42%;
    max-width: 42%;
    background: linear-gradient(160deg, #0e437d 0%, #1667c2 55%, #1a7ad4 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 3rem 3.5rem;
}

.mn-register-split__brand-inner {
    max-width: 440px;
    margin: 0 auto;
}

.mn-register-split__logo img {
    max-height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mn-register-split__title {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 2rem 0 1.5rem;
}

.mn-register-split__features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.mn-register-split__features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    margin-bottom: .85rem;
    font-size: .95rem;
    line-height: 1.5;
    opacity: .95;
}

.mn-register-split__features i {
    color: #7dffb0;
    font-size: 1.15rem;
    margin-top: .1rem;
}

.mn-register-split__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.mn-register-split__badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: .78rem;
    font-weight: 600;
}

.mn-register-split__form-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: #f8fafc;
}

.mn-register-split__form-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, .08);
    border: 1px solid #e2e8f0;
    padding: 2.25rem 2rem;
}

.mn-register-split__form-head h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem;
}

.mn-register-split__form-head p {
    color: #64748b;
    font-size: .92rem;
    margin-bottom: 1.75rem;
}

.mn-field {
    margin-bottom: 1rem;
}

.mn-field__label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: .35rem;
}

.mn-field__optional {
    font-weight: 500;
    color: #64748b;
    font-size: .78rem;
}

.mn-field__hint {
    margin: 0 0 .45rem;
    font-size: .82rem;
    line-height: 1.45;
    color: #64748b;
}

.mn-register-form__premium {
    margin: 1rem 0 1.1rem;
    padding: .85rem .95rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.mn-premium-option {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    margin: 0 0 .65rem;
    cursor: pointer;
}

.mn-premium-option:last-child {
    margin-bottom: 0;
}

.mn-premium-option input {
    margin-top: .2rem;
    flex-shrink: 0;
}

.mn-premium-option strong {
    display: block;
    font-size: .86rem;
    color: #0f172a;
}

.mn-premium-option small {
    display: block;
    margin-top: .15rem;
    font-size: .78rem;
    line-height: 1.4;
    color: #64748b;
}

.mn-field__control {
    position: relative;
}

.mn-field__input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: .72rem .9rem;
    font-size: .95rem;
    color: #0f172a;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.mn-field__input:focus {
    outline: none;
    border-color: var(--xln-primary);
    box-shadow: 0 0 0 3px rgba(22, 103, 194, .12);
}

.mn-field__control--phone {
    display: flex;
    align-items: stretch;
}

.mn-field__dial {
    display: inline-flex;
    align-items: center;
    padding: 0 .85rem;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    font-size: .9rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
}

.mn-field__control--phone .mn-field__input {
    border-radius: 0 6px 6px 0;
    flex: 1;
}

.mn-field__check {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e2e8f0;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: all .2s;
    pointer-events: none;
}

.mn-field__control--phone .mn-field__check {
    right: .65rem;
}

.mn-field.is-valid .mn-field__input,
.mn-field.is-valid .select2-container--default .select2-selection--single {
    border-color: #22c55e;
    padding-right: 2.5rem;
}

.mn-field.is-valid .mn-field__check {
    background: #22c55e;
    color: #fff;
}

.mn-field.is-invalid .mn-field__input,
.mn-field.is-invalid .select2-container--default .select2-selection--single,
.mn-field.is-invalid .iti input {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.mn-field.is-invalid .mn-field__check {
    background: #e2e8f0;
    color: transparent;
}

.mn-field__error {
    margin: .35rem 0 0;
    font-size: .78rem;
    line-height: 1.35;
    color: #ef4444;
    min-height: 1.05rem;
}

.mn-field__control--password {
    position: relative;
}

.mn-field__control--password .mn-field__input {
    padding-right: 4.25rem;
}

.mn-password-toggle {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #64748b;
    padding: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.mn-password-toggle:hover {
    color: #334155;
}

.mn-field__control--password .mn-field__check {
    right: .65rem;
}

.mn-password-popover {
    display: none;
    margin-top: .45rem;
    padding: .85rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
}

.mn-password-popover.is-visible {
    display: block;
}

.mn-password-popover__title {
    margin: 0 0 .55rem;
    font-size: .82rem;
    font-weight: 700;
    color: #0f172a;
}

.mn-password-popover__rules {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mn-password-popover__rules li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .78rem;
    line-height: 1.4;
    color: #64748b;
    margin-bottom: .4rem;
}

.mn-password-popover__rules li:last-child {
    margin-bottom: 0;
}

.mn-rule-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: .1rem;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    position: relative;
}

.mn-password-popover__rules li.is-met {
    color: #15803d;
}

.mn-password-popover__rules li.is-met .mn-rule-icon {
    border-color: #22c55e;
    background: #22c55e;
}

.mn-password-popover__rules li.is-met .mn-rule-icon::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mn-field__control--iti .iti {
    width: 100%;
}

.mn-field__control--iti .iti__flag-container {
    z-index: 2;
}

.mn-field__control--iti .iti input.mn-field__input {
    width: 100%;
    padding-left: 6.5rem;
    padding-right: 2.5rem;
}

.mn-field__control--iti .iti--separate-dial-code .iti__selected-flag {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-right: 0;
    border-radius: 6px 0 0 6px;
}

.mn-field__control--iti .iti--separate-dial-code input {
    border-radius: 0 6px 6px 0;
}

.mn-field.is-valid .mn-field__control--iti .iti input {
    padding-right: 2.5rem;
}

.mn-register-form__submit:disabled,
.mn-register-form__submit.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mn-register-form .select2-container {
    width: 100% !important;
}

.mn-register-form .select2-container--default .select2-selection--single {
    height: auto;
    min-height: calc(2.25rem + 2px);
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px;
    padding: .72rem .9rem;
    background-color: #ffffff !important;
}

.mn-register-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    line-height: 1.4;
    color: #0f172a !important;
}

.mn-register-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #64748b !important;
}

.mn-register-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: .5rem;
}

.mn-field.is-valid .select2-container--default .select2-selection--single {
    padding-right: 2.5rem;
}

.mn-register-form__captcha {
    margin: .5rem 0 1rem;
}

.mn-register-form__terms {
    display: flex;
    gap: .55rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    font-size: .78rem;
    color: #64748b;
    line-height: 1.45;
}

.mn-register-form__terms a {
    color: var(--xln-primary);
}

.mn-register-form__submit {
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: .9rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1667c2, #0e437d);
    box-shadow: 0 8px 20px rgba(22, 103, 194, .28);
    transition: transform .15s, box-shadow .15s;
}

.mn-register-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(22, 103, 194, .34);
    color: #fff;
}

.mn-register-form__login {
    text-align: center;
    margin: 1.25rem 0 0;
    font-size: .88rem;
    color: #64748b;
}

.mn-register-form__login a {
    color: var(--xln-primary);
    font-weight: 600;
    text-decoration: none;
}

.mn-register-form__risk {
    margin-top: 1rem;
    font-size: .72rem;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 991px) {
    .mn-register-split {
        flex-direction: column;
    }

    .mn-register-split__brand,
    .mn-register-split__form-wrap {
        flex: none;
        max-width: 100%;
    }

    .mn-register-split__brand {
        padding: 2rem 1.5rem;
    }

    .mn-register-split__title {
        font-size: 1.35rem;
        margin-top: 1.25rem;
    }

    .mn-register-split__features {
        margin-bottom: 1.25rem;
    }

    .mn-register-split__form-wrap {
        padding: 1.5rem 1rem 2rem;
    }

    .mn-register-split__form-card {
        padding: 1.75rem 1.25rem;
        box-shadow: none;
        border: 0;
        background: transparent;
    }

    .mn-register-form .select2-container {
        max-width: 100%;
    }

    .mn-register-form select.mn-native-country {
        min-height: calc(2.25rem + 2px);
        padding: .72rem .9rem;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        font-size: 1rem;
    }

    .mn-field__control--phone {
        flex-wrap: nowrap;
    }

    .mn-field__dial {
        font-size: .82rem;
        padding: 0 .55rem;
    }

    .mn-register-split__trust {
        gap: .45rem;
    }

    .mn-register-split__badge {
        font-size: .72rem;
    }
}

/* ===== Auth / registration light-theme contrast (WCAG) ===== */
.mn-register-split .select2-dropdown,
.mn-register-split .select2-container--open {
    z-index: 1050 !important;
}

.mn-register-split .select2-dropdown {
    z-index: 1051 !important;
}

.mn-register-split .select2-container--open .select2-dropdown {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .12) !important;
}

.mn-register-split .select2-results__option--selectable,
.mn-register-split .select2-container--default .select2-results__option--selectable {
    color: #0f172a !important;
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.mn-register-split .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.mn-register-split .select2-results__option.select2-results__option--selected {
    background-color: #1667c2 !important;
    color: #ffffff !important;
}

.mn-register-split .select2-container--default .select2-search--dropdown .select2-search__field {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}

.mn-register-split #existModalCenter.custom--modal .modal-content,
.mn-register-split #existModalCenter .modal-content {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}

.mn-register-split #existModalCenter .modal-header,
.mn-register-split #existModalCenter .modal-footer {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}

.mn-register-split #existModalCenter .modal-title {
    color: #0f172a !important;
}

.mn-register-split #existModalCenter .modal-body,
.mn-register-split #existModalCenter .modal-body p {
    color: #334155 !important;
}

body.xln-site:has(.mn-register-split) .custom--dropdown > .dropdown-list {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .12) !important;
}

body.xln-site:has(.mn-register-split) .dropdown-list > .dropdown-list__item .text,
body.xln-site:has(.mn-register-split) .custom--dropdown > .custom--dropdown__selected .text {
    color: #0f172a !important;
}

body.xln-site:has(.mn-register-split) .dropdown-list > .dropdown-list__item:hover {
    background-color: #1667c2 !important;
}

body.xln-site:has(.account-section) .verification-code-wrapper.bg--section {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

body.xln-site:has(.account-section) .verification-code-wrapper h5,
body.xln-site:has(.account-section) .verification-text,
body.xln-site:has(.account-section) .verification-area label,
body.xln-site:has(.account-section) .verification-area p,
body.xln-site:has(.account-section) .countdown-wrapper,
body.xln-site:has(.account-section) .verification-area a:not(.cmn--btn) {
    color: #334155 !important;
}

body.xln-site:has(.account-section) .verification-code-wrapper h5 {
    color: #0f172a !important;
}

body.xln-site:has(.account-section) .verification-code input {
    color: #0f172a !important;
    background: #f8fafc !important;
    border-color: #1667c2 !important;
}

body.xln-site .custom--dropdown > .dropdown-list {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
}

body.xln-site .dropdown-list > .dropdown-list__item .text {
    color: #0f172a !important;
}

body.xln-site .dropdown-list > .dropdown-list__item:hover .text {
    color: #ffffff !important;
}

/* Terminal: email verification banner + Tawk offset */
.menasati-email-verify-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    width: 100%;
    padding: .55rem 1rem;
    background: linear-gradient(90deg, #b45309, #d97706);
    color: #fff;
    font-size: .84rem;
    font-weight: 600;
    text-align: center;
    z-index: 1200;
    position: relative;
}

.menasati-email-verify-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.menasati-email-verify-banner i {
    font-size: 1.1rem;
}

body.terminal-body #tawk-bubble-container,
body.terminal-body .tawk-min-container {
    bottom: 88px !important;
    right: 18px !important;
}

@media (max-width: 992px) {
    body.terminal-body #tawk-bubble-container,
    body.terminal-body .tawk-min-container,
    body.terminal-body .menasati-terminal-chat-fab,
    body.terminal-body .menasati-terminal-chat-restore {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}
