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

:root {
    --gold: #FFC43F;
    --gold-dark: #e5a800;
    --dark: #080814;
    --card: rgba(255, 255, 255, .035);
    --border: rgba(255, 255, 255, .07);
}

html,
body {
    height: 100%;
    font-family: "Poppins", sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

/* ── Mesh gradient bg ── */
.mn-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 5%, rgba(255, 196, 63, .12) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 85% 95%, rgba(108, 99, 255, .10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 80% 10%, rgba(255, 196, 63, .06) 0%, transparent 50%),
        linear-gradient(160deg, #080814 0%, #0e0e22 55%, #06060f 100%);
}

/* ── Orbs ── */
.mn-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    animation: mn-float 14s ease-in-out infinite alternate;
}

.mn-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    background: #FFC43F;
    opacity: .10;
    top: -160px;
    left: -100px;
    animation-duration: 16s;
}

.mn-orb:nth-child(3) {
    width: 360px;
    height: 360px;
    background: #6c63ff;
    opacity: .12;
    bottom: -100px;
    right: -80px;
    animation-duration: 13s;
    animation-delay: -5s;
}

.mn-orb:nth-child(4) {
    width: 240px;
    height: 240px;
    background: #ff6b6b;
    opacity: .06;
    top: 40%;
    left: 55%;
    animation-duration: 10s;
    animation-delay: -8s;
}

@keyframes mn-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(28px, 36px) scale(1.08);
    }
}

/* ── Particles ── */
.mn-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.mn-particles span {
    position: absolute;
    border-radius: 50%;
    bottom: -10px;
    animation: mn-rise linear infinite;
}

.mn-particles span:nth-child(1) {
    left: 4%;
    width: 3px;
    height: 3px;
    background: rgba(255, 196, 63, .6);
    animation-duration: 20s;
    animation-delay: 0s;
}

.mn-particles span:nth-child(2) {
    left: 12%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    animation-duration: 25s;
    animation-delay: -6s;
}

.mn-particles span:nth-child(3) {
    left: 22%;
    width: 3px;
    height: 3px;
    background: rgba(255, 196, 63, .5);
    animation-duration: 18s;
    animation-delay: -3s;
}

.mn-particles span:nth-child(4) {
    left: 35%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    animation-duration: 22s;
    animation-delay: -9s;
}

.mn-particles span:nth-child(5) {
    left: 50%;
    width: 4px;
    height: 4px;
    background: rgba(255, 196, 63, .4);
    animation-duration: 15s;
    animation-delay: -2s;
}

.mn-particles span:nth-child(6) {
    left: 62%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .25);
    animation-duration: 28s;
    animation-delay: -14s;
}

.mn-particles span:nth-child(7) {
    left: 73%;
    width: 3px;
    height: 3px;
    background: rgba(255, 196, 63, .55);
    animation-duration: 19s;
    animation-delay: -7s;
}

.mn-particles span:nth-child(8) {
    left: 83%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    animation-duration: 23s;
    animation-delay: -10s;
}

.mn-particles span:nth-child(9) {
    left: 91%;
    width: 3px;
    height: 3px;
    background: rgba(255, 196, 63, .45);
    animation-duration: 21s;
    animation-delay: -5s;
}

.mn-particles span:nth-child(10) {
    left: 44%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, .15);
    animation-duration: 17s;
    animation-delay: -12s;
}

.mn-particles span:nth-child(11) {
    left: 58%;
    width: 3px;
    height: 3px;
    background: rgba(108, 99, 255, .5);
    animation-duration: 24s;
    animation-delay: -4s;
}

.mn-particles span:nth-child(12) {
    left: 28%;
    width: 2px;
    height: 2px;
    background: rgba(255, 196, 63, .3);
    animation-duration: 26s;
    animation-delay: -16s;
}

@keyframes mn-rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: .5;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ── Layout ── */
.mn-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

/* ── Card ── */
.mn-card {
    width: 100%;
    max-width: 460px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px 28px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 0 0 1px rgba(255, 196, 63, .05),
        0 24px 60px rgba(0, 0, 0, .6),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    text-align: center;
}

/* ── Brand ── */
.mn-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.mn-brand-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ── Gear icon ── */
.mn-icon-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    height: 76px;
}

.mn-gear-big {
    width: 64px;
    height: 64px;
    color: var(--gold);
    animation: mn-spin 7s linear infinite;
    filter: drop-shadow(0 0 14px rgba(255, 196, 63, .55));
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mn-gear-small {
    width: 34px;
    height: 34px;
    color: rgba(255, 196, 63, .45);
    animation: mn-spin-r 4.5s linear infinite;
    position: absolute;
    bottom: 0;
    left: calc(50% + 20px);
}

@keyframes mn-spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes mn-spin-r {
    to {
        transform: rotate(-360deg);
    }
}

.mn-pulse-ring {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border: 1.5px solid rgba(255, 196, 63, .25);
    border-radius: 50%;
    animation: mn-pulse 2.8s ease-out infinite;
}

@keyframes mn-pulse {
    0% {
        transform: translateX(-50%) scale(.9);
        opacity: .9;
    }

    100% {
        transform: translateX(-50%) scale(1.7);
        opacity: 0;
    }
}

/* ── Label ── */
.mn-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 196, 63, .08);
    border: 1px solid rgba(255, 196, 63, .22);
    color: var(--gold);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.mn-label-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: mn-blink 1.3s ease-in-out infinite;
}

@keyframes mn-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .15;
    }
}

/* ── Title ── */
.mn-title {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.mn-title-line1 {
    color: rgba(255, 255, 255, .9);
    display: block;
}

.mn-title-line2 {
    color: var(--gold);
    display: block;
}

/* ── Description ── */
.mn-desc {
    font-size: .82rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 24px;
    font-weight: 300;
}

/* ── Countdown ── */
.mn-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.mn-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 196, 63, .15);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 58px;
}

.mn-count-val {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.mn-count-lbl {
    font-size: .52rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .35);
    margin-top: 4px;
    font-weight: 600;
}

.mn-count-sep {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 196, 63, .35);
    align-self: center;
    padding-top: 0;
}

/* ── Notify form ── */
.mn-notify-label {
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .35);
    font-weight: 600;
    margin-bottom: 8px;
}

.mn-notify-form {
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.mn-notify-input {
    flex: 1;
    min-width: 160px;
    max-width: 240px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 10px 16px;
    color: #fff;
    font-size: .82rem;
    font-family: inherit;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}

.mn-notify-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.mn-notify-input:focus {
    border-color: rgba(255, 196, 63, .5);
    box-shadow: 0 0 0 3px rgba(255, 196, 63, .08);
}

.mn-notify-btn {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1a2e;
    font-weight: 700;
    font-size: .78rem;
    padding: 10px 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 196, 63, .28);
}

.mn-notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 196, 63, .42);
}

.mn-notify-success {
    display: none;
    font-size: .75rem;
    color: #4ade80;
    margin-top: 6px;
}

/* ── Contact link ── */
.mn-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .4);
    font-size: .75rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 8px 16px;
    transition: all .25s;
    margin-bottom: 20px;
}

.mn-contact:hover {
    color: var(--gold);
    border-color: rgba(255, 196, 63, .4);
    background: rgba(255, 196, 63, .05);
}

.mn-contact svg {
    width: 12px;
    height: 12px;
}

/* ── Divider ── */
.mn-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 16px;
}

/* ── Footer row ── */
.mn-footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mn-footer {
    font-size: .68rem;
    color: rgba(255, 255, 255, .2);
}

.mn-footer strong {
    color: rgba(255, 255, 255, .35);
}

.mn-social {
    display: flex;
    gap: 8px;
}

.mn-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: all .2s;
}

.mn-social a:hover {
    border-color: rgba(255, 196, 63, .4);
    color: var(--gold);
    background: rgba(255, 196, 63, .06);
}

.mn-social svg {
    width: 12px;
    height: 12px;
}

@media (max-width: 540px) {
    .mn-card {
        padding: 24px 16px 20px;
        border-radius: 18px;
    }

    .mn-title {
        font-size: 1.35rem;
    }

    .mn-gear-big {
        width: 50px;
        height: 50px;
    }

    .mn-gear-small {
        width: 28px;
        height: 28px;
        left: calc(50% + 16px);
    }

    .mn-icon-wrap {
        height: 60px;
    }

    .mn-count-val {
        font-size: 1.2rem;
    }

    .mn-count-item {
        min-width: 48px;
        padding: 8px 10px;
    }
}