﻿:root {
    --mw-red: #E30613;
    --mw-dark: #0B1423;
    --mw-dark-2: #060D18;
    --mw-white: #FFFFFF;
    --mw-muted: #A9B0BB;
    --mw-shadow: 0 14px 40px rgba(0,0,0,.25);
    --mw-shadow-soft: 0 10px 28px rgba(0,0,0,.18);
    --mw-shadow-card: 0 10px 24px rgba(10,15,24,.10);
    --mw-radius: 12px;
    --mw-font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --mw-glow-red: 0 0 0 .25rem rgba(227, 6, 19, .18);
    --mw-glow-white: 0 0 0 .25rem rgba(255,255,255,.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

    body.mw-body {
        font-family: var(--mw-font);
        background: var(--mw-dark-2);
        color: #111;
    }

    body.mw-menu-open {
        overflow: hidden;
    }

    html.mw-modal-open,
    body.mw-modal-open {
        overflow: hidden;
    }

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container-mw {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

.mw-site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--mw-dark-2);
}

.mw-page-shell {
    flex: 1 0 auto;
    width: 100%;
}

.mw-header-shell {
    position: relative;
    z-index: 60;
}

.mw-header-band {
    background: radial-gradient(1000px 280px at 10% 0%, rgba(227,6,19,.18), transparent 55%), linear-gradient(90deg, rgba(11,20,35,.96) 0%, rgba(11,20,35,.88) 55%, rgba(255,255,255,.08) 100%);
    border-top: 4px solid rgba(227,6,19,.18);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mw-topbar {
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
    letter-spacing: .2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mw-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mw-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: .95;
}

    .mw-contact span {
        display: inline-flex;
        align-items: center;
    }

    .mw-contact i {
        margin-right: 8px;
        opacity: .9;
    }

.mw-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .mw-social a {
        color: #fff;
        opacity: .9;
        transition: all .2s ease;
    }

        .mw-social a:hover {
            opacity: 1;
            transform: translateY(-1px);
            text-shadow: 0 8px 18px rgba(0,0,0,.3);
        }

.mw-navwrap {
    position: relative;
}

.mw-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
}

.mw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

    .mw-brand img {
        height: 36px;
        width: auto;
        display: block;
        filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
    }

.mw-navlinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mw-navlinks a {
        color: #fff;
        font-weight: 700;
        letter-spacing: .9px;
        font-size: 13px;
        text-transform: uppercase;
        opacity: .95;
        transition: all .18s ease;
        position: relative;
        padding: 4px 0;
    }

        .mw-navlinks a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            background: transparent;
            transform: scaleX(.4);
            transition: all .18s ease;
            opacity: 0;
        }

        .mw-navlinks a:hover,
        .mw-navlinks a.is-active {
            opacity: 1;
        }

            .mw-navlinks a:hover::after,
            .mw-navlinks a.is-active::after {
                background: rgba(227,6,19,.95);
                transform: scaleX(1);
                opacity: 1;
            }

.mw-navicons {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.mw-navbtn {
    color: #fff;
    opacity: .92;
    transition: all .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: none;
}

button.mw-navbtn {
    appearance: none;
    outline: none;
    cursor: pointer;
}

.mw-navbtn:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(227,6,19,.14);
    border-color: rgba(227,6,19,.35);
    box-shadow: var(--mw-glow-white);
}

.mw-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .2s ease;
    z-index: 98;
}

    .mw-mobile-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mw-mobile-panel {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: calc(100vw - 28px);
    height: 100vh;
    background: linear-gradient(180deg, #0b1423 0%, #060d18 100%);
    box-shadow: -18px 0 42px rgba(0,0,0,.35);
    z-index: 99;
    transition: right .22s ease;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
}

    .mw-mobile-panel.show {
        right: 0;
    }

.mw-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .mw-mobile-top img {
        height: 34px;
        width: auto;
    }

.mw-mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    transition: all .18s ease;
}

    .mw-mobile-close:hover {
        background: rgba(227,6,19,.14);
        border-color: rgba(227,6,19,.35);
    }

.mw-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 18px;
}

    .mw-mobile-nav a {
        color: #fff;
        font-weight: 800;
        letter-spacing: .6px;
        font-size: 14px;
        text-transform: uppercase;
        padding: 14px 8px;
        border-radius: 10px;
        transition: all .18s ease;
    }

        .mw-mobile-nav a:hover {
            background: rgba(255,255,255,.06);
        }

.mw-mobile-contact {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

    .mw-mobile-contact span {
        display: inline-flex;
        align-items: center;
    }

    .mw-mobile-contact i {
        width: 18px;
        margin-right: 8px;
    }

.mw-footer {
    background: var(--mw-dark-2);
    color: rgba(255,255,255,.82);
    padding: 44px 0 0;
}

.mw-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mw-foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .mw-foot-logo img {
        height: 30px;
        width: auto;
        display: block;
    }

.mw-footer p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.8;
}

.mw-foot-title {
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 1px;
    font-size: 12px;
    color: rgba(255,255,255,.92);
    margin-bottom: 12px;
}

.mw-foot-strong {
    font-weight: 950;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.mw-foot-links {
    margin-top: 14px;
}

    .mw-foot-links a {
        display: block;
        color: rgba(255,255,255,.72);
        font-size: 13px;
        padding: 6px 0;
        transition: all .15s ease;
    }

        .mw-foot-links a i {
            margin-right: 8px;
        }

        .mw-foot-links a:hover {
            color: #fff;
            transform: translateX(2px);
        }

.mw-foot-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    padding: 6px 0;
}

    .mw-foot-item i {
        margin-top: 2px;
        opacity: .9;
    }

.mw-footer-bottom {
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.08);
}

    .mw-footer-bottom .container-mw {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 12px;
        color: rgba(255,255,255,.6);
    }

.mw-foot-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .mw-foot-social a {
        color: rgba(255,255,255,.7);
        transition: all .15s ease;
    }

        .mw-foot-social a:hover {
            color: #fff;
            transform: translateY(-1px);
            text-shadow: 0 12px 24px rgba(0,0,0,.35);
        }

.mw-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    background: var(--mw-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 26px rgba(0,0,0,.25);
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
    outline: none;
    cursor: pointer;
}

    .mw-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .mw-to-top:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 18px 34px rgba(227,6,19,.25);
    }

@media (max-width: 992px) {
    .mw-navlinks {
        display: none;
    }

    .mw-footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mw-topbar-row,
    .mw-footer-bottom .container-mw {
        flex-direction: column;
        align-items: flex-start;
    }

    .mw-topbar {
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .mw-contact {
        gap: 10px;
    }

    .mw-navicons {
        gap: 8px;
    }

    .mw-navbtn {
        width: 40px;
        height: 40px;
    }
}

.mw-navbtn.is-auth {
    background: rgba(227,6,19,.12);
    border-color: rgba(227,6,19,.40);
    box-shadow: 0 0 0 .20rem rgba(227,6,19,.10);
}

.mw-mobile-nav a.is-auth {
    background: rgba(227,6,19,.10);
    color: #fff;
}

.mw-page-shell {
    animation: mwPageEnter .35s ease both;
}

@keyframes mwPageEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mw-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,13,24,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .28s ease;
}

    .mw-page-loader.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mw-page-loader-box {
    width: min(92vw, 340px);
    border-radius: 24px;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, rgba(11,20,35,.96) 0%, rgba(6,13,24,.98) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    text-align: center;
}

.mw-page-loader-logo img {
    height: 34px;
    width: auto;
    display: block;
    margin: 0 auto 18px;
}

.mw-page-loader-spinner {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    position: relative;
}

    .mw-page-loader-spinner span {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 3px solid rgba(255,255,255,.10);
        border-top-color: var(--mw-red);
        animation: mwLoaderSpin .85s linear infinite;
    }

@keyframes mwLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.mw-page-loader-text {
    margin-top: 14px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.mw-account-trigger {
    min-width: 188px;
    max-width: 240px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 6px 6px;
    color: #fff;
    transition: all .18s ease;
}

    .mw-account-trigger:hover {
        transform: translateY(-1px);
        background: rgba(227,6,19,.14);
        border-color: rgba(227,6,19,.35);
        box-shadow: var(--mw-glow-white);
    }

    .mw-account-trigger.is-auth {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.14);
    }

.mw-account-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227,6,19,.92), rgba(153,12,22,.92));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 34px;
    text-transform: uppercase;
    box-shadow: 0 12px 22px rgba(227,6,19,.18);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .mw-account-avatar.is-icon {
        background: rgba(255,255,255,.08);
        box-shadow: none;
        font-size: 15px;
    }

.mw-account-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.mw-account-name {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-account-hint {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-mobile-account {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 10px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    margin-top: 18px;
    color: #fff;
}

.mw-mobile-account-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227,6,19,.92), rgba(153,12,22,.92));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    flex: 0 0 42px;
    text-transform: uppercase;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .mw-mobile-account-avatar.is-icon {
        background: rgba(255,255,255,.08);
        font-size: 17px;
    }

.mw-mobile-account-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .mw-mobile-account-meta span {
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mw-mobile-account-meta small {
        color: rgba(255,255,255,.66);
        font-size: 12px;
        font-weight: 700;
        margin-top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

#toast-container {
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: none;
}

    #toast-container.toast-top-center {
        top: 22px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(92vw, 440px) !important;
    }

    #toast-container > div {
        position: relative;
        pointer-events: auto;
        opacity: 1;
        margin: 0 0 14px 0;
        padding: 16px 18px 16px 18px !important;
        border-radius: 20px;
        font-family: var(--mw-font);
        background-image: none !important;
        background-repeat: no-repeat !important;
        min-height: auto !important;
        box-shadow: 0 20px 44px rgba(0,0,0,.34);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        overflow: hidden;
    }

        #toast-container > div::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            border-radius: 20px 0 0 20px;
        }

    #toast-container > .toast-success,
    #toast-container > .toast-error,
    #toast-container > .toast-info,
    #toast-container > .toast-warning {
        background-image: none !important;
    }

    #toast-container > .toast-success {
        background: linear-gradient(180deg, rgba(11,39,31,.98) 0%, rgba(8,28,22,.98) 100%) !important;
        border: 1px solid rgba(42,204,149,.28);
    }

        #toast-container > .toast-success::before {
            background: #2acc95;
        }

    #toast-container > .toast-error {
        background: linear-gradient(180deg, rgba(49,17,26,.98) 0%, rgba(33,12,19,.98) 100%) !important;
        border: 1px solid rgba(227,6,19,.30);
    }

        #toast-container > .toast-error::before {
            background: #E30613;
        }

    #toast-container > .toast-info {
        background: linear-gradient(180deg, rgba(16,27,46,.98) 0%, rgba(11,20,35,.98) 100%) !important;
        border: 1px solid rgba(77,163,255,.28);
    }

        #toast-container > .toast-info::before {
            background: #4DA3FF;
        }

    #toast-container > .toast-warning {
        background: linear-gradient(180deg, rgba(58,36,10,.98) 0%, rgba(38,24,8,.98) 100%) !important;
        border: 1px solid rgba(255,170,0,.34);
    }

        #toast-container > .toast-warning::before {
            background: #FFAA00;
        }

.toast-title {
    margin: 0 24px 4px 0;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: .2px;
}

.toast-message {
    margin: 0;
    color: rgba(255,255,255,.90);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.toast-close-button {
    position: absolute;
    top: 10px;
    right: 12px;
    float: none;
    font-size: 18px;
    color: rgba(255,255,255,.76) !important;
    text-shadow: none;
    opacity: 1;
}

    .toast-close-button:hover {
        color: #fff !important;
    }

.toast-progress {
    height: 3px;
    opacity: 1;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 460px) {
    #toast-container.toast-top-center {
        width: min(94vw, 420px) !important;
        top: 14px !important;
    }

    .toast-title {
        font-size: 15px;
    }

    .toast-message {
        font-size: 13px;
    }
}

.swal2-popup.mw-swal-popup {
    background: linear-gradient(180deg, #0b1423 0%, #060d18 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    color: #fff;
    font-family: var(--mw-font);
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
    padding: 1.6rem 1.4rem 1.35rem;
}

.swal2-title.mw-swal-title {
    color: #fff;
    font-weight: 900;
    font-size: 1.55rem;
    letter-spacing: .2px;
}

.swal2-html-container.mw-swal-html {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.8;
}

.swal2-confirm.mw-swal-confirm {
    background: #E30613 !important;
    border-radius: 14px !important;
    border: 0 !important;
    font-weight: 900 !important;
    letter-spacing: .4px !important;
    box-shadow: 0 16px 32px rgba(227,6,19,.24) !important;
    padding: .82rem 1.35rem !important;
}

.swal2-cancel.mw-swal-cancel {
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    font-weight: 800 !important;
    padding: .82rem 1.35rem !important;
}

.bootstrap-select {
    width: 100% !important;
}

    .bootstrap-select .dropdown-toggle {
        width: 100%;
        height: 52px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.04);
        color: #fff;
        padding: 0 44px 0 16px;
        font-size: 14px;
        font-weight: 600;
        outline: none !important;
        box-shadow: none !important;
    }

        .bootstrap-select .dropdown-toggle:focus,
        .bootstrap-select .dropdown-toggle:hover,
        .bootstrap-select.show > .dropdown-toggle {
            border-color: rgba(227,6,19,.45);
            background: rgba(255,255,255,.06);
            color: #fff;
        }

    .bootstrap-select .filter-option {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .bootstrap-select .dropdown-menu {
        z-index: 3000 !important;
        background: #0f1a2d;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 18px;
        box-shadow: 0 22px 44px rgba(0,0,0,.34);
        padding: 8px;
        overflow: hidden;
    }

        .bootstrap-select .dropdown-menu .inner {
            scrollbar-width: thin;
        }

        .bootstrap-select .dropdown-menu .dropdown-item {
            color: rgba(255,255,255,.82);
            border-radius: 12px;
            padding: 10px 12px;
            font-size: 13px;
            font-weight: 700;
        }

            .bootstrap-select .dropdown-menu .dropdown-item:hover,
            .bootstrap-select .dropdown-menu .dropdown-item.active,
            .bootstrap-select .dropdown-menu .selected.active .dropdown-item {
                background: rgba(227,6,19,.14);
                color: #fff;
            }

    .bootstrap-select .bs-searchbox {
        padding: 8px 8px 10px;
    }

        .bootstrap-select .bs-searchbox .form-control {
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,.10);
            background: rgba(255,255,255,.04);
            color: #fff;
            box-shadow: none;
        }

            .bootstrap-select .bs-searchbox .form-control::placeholder {
                color: rgba(255,255,255,.45);
            }

.mw-label-required {
    color: #ff5e6a;
    margin-left: 4px;
    font-weight: 900;
}

@media (max-width: 992px) {
    .mw-account-trigger {
        min-width: auto;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }

    .mw-account-meta {
        display: none;
    }
}

@media (max-width: 460px) {
    #toast-container.toast-top-center {
        width: min(94vw, 420px);
    }
}

#mwAccountBtn.is-incomplete,
#mwMobileAccountBtn.is-incomplete {
    border-color: rgba(255,170,0,.36) !important;
    box-shadow: 0 0 0 .2rem rgba(255,170,0,.10) !important;
}

    #mwAccountBtn.is-incomplete:hover,
    #mwMobileAccountBtn.is-incomplete:hover {
        background: rgba(255,170,0,.14) !important;
    }

.mw-profile-reminder {
    position: sticky;
    top: 0;
    z-index: 1400;
    background: rgba(6,13,24,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mw-profile-reminder-inner {
    min-height: 72px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mw-profile-reminder-copy {
    min-width: 0;
}

.mw-profile-reminder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,170,0,.14);
    border: 1px solid rgba(255,170,0,.24);
    color: #ffe0a3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.mw-profile-reminder-title {
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.mw-profile-reminder-text {
    margin-top: 4px;
    color: #c9d3df;
    font-size: 13px;
    line-height: 1.7;
}

.mw-profile-reminder-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.mw-profile-reminder-btn {
    min-width: 140px;
    height: 42px;
    border-radius: 14px;
    background: #E30613;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .4px;
    transition: all .18s ease;
    box-shadow: 0 16px 30px rgba(227,6,19,.18);
}

    .mw-profile-reminder-btn:hover {
        color: #fff;
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

.mw-profile-reminder-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    color: #fff;
    transition: all .18s ease;
}

    .mw-profile-reminder-close:hover {
        background: rgba(255,255,255,.10);
        transform: translateY(-1px);
    }

#mwAccountBtn.is-incomplete,
#mwMobileAccountBtn.is-incomplete {
    border-color: rgba(255,170,0,.36) !important;
    box-shadow: 0 0 0 .2rem rgba(255,170,0,.10) !important;
}

    #mwAccountBtn.is-incomplete:hover,
    #mwMobileAccountBtn.is-incomplete:hover {
        background: rgba(255,170,0,.14) !important;
    }

@media (max-width: 768px) {
    .mw-profile-reminder-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mw-profile-reminder-actions {
        width: 100%;
    }

    .mw-profile-reminder-btn {
        flex: 1 1 auto;
    }
}
