/* ============================================================
   UP1 — DESBLOQUEADOR  •  CSS específico da página
   Conversão 1:1 do TSX original (Up1Desbloqueador.tsx)
   ============================================================ */

/* ───────── Background Page ───────── */
body {
    background: linear-gradient(180deg, #08080f 0%, #0c0c18 50%, #08080f 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ───────── Background Orbs ───────── */
.orb-main {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 58, 180, 0.15) 0%, rgba(225, 48, 108, 0.08) 40%, transparent 70%);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.orb-secondary {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 119, 55, 0.08) 0%, transparent 60%);
    bottom: 20%;
    right: -5%;
    filter: blur(50px);
    animation: pulse-glow 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particles .particle {
    position: absolute;
    border-radius: 50%;
    animation: pulse-glow ease-in-out infinite;
}

/* ───────── Top bars ───────── */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.top-bar-loading {
    background: linear-gradient(90deg, #065f46, #047857, #065f46);
}

.top-bar-alert {
    background: linear-gradient(90deg, #7f1d1d, #991b1b, #7f1d1d);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
}

.top-bar-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: white;
    flex-shrink: 0;
}

.top-bar-text,
.top-bar-text-main {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.top-bar-text-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
}

@media (min-width: 640px) {

    .top-bar-text,
    .top-bar-text-main {
        font-size: 0.875rem;
    }

    .top-bar-text-sub {
        font-size: 0.75rem;
    }
}

/* ───────── Container ───────── */
.container-app {
    max-width: 420px;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* ───────── Logo ───────── */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    border-radius: 1rem;
    filter: drop-shadow(0 0 20px rgba(131, 58, 180, 0.3));
}

.logo-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ffffff 0%, #E1306C 30%, #833AB4 60%, #F77737 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ───────── Progress bar ───────── */
.progress-wrap {
    margin-bottom: 1.25rem;
}

.progress-track {
    width: 100%;
    height: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    width: 0%;
    transition: width 0.3s ease-out;
}

.progress-fill.error {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.progress-meta {
    margin-top: 0.375rem;
}

.progress-meta span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
}

/* ───────── Phase Initial ───────── */
.phase-initial {
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .phase-initial {
        padding: 2rem;
    }
}

.badge-verifying {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #4ade80;
}

.badge-text {
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
}

.title-main {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

@media (min-width: 640px) {
    .title-main {
        font-size: 1.5rem;
    }
}

.typewriter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.625;
    min-height: 60px;
}

.cursor-text {
    display: inline-block;
    width: 2px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
    vertical-align: middle;
}

.start-btn-wrap {
    margin-top: 1.5rem;
    animation: scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ───────── CTA buttons ───────── */
.cta-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

@media (min-width: 640px) {
    .cta-btn {
        font-size: 1.125rem;
    }
}

.cta-btn-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 4px 24px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.12);
}

.cta-block {
    display: block;
}

.cta-subtext {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.cta-bottom-info {
    margin-top: 0.625rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    text-align: center;
}

.dot-green {
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #4ade80;
}

/* ───────── Terminal ───────── */
.terminal-section {
    overflow: hidden;
    margin-bottom: 1.25rem;
    animation: slide-up 0.4s ease-out;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 0.375rem;
}

.terminal-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.terminal-dot-red {
    background: rgba(239, 68, 68, 0.8);
}

.terminal-dot-yellow {
    background: rgba(234, 179, 8, 0.8);
}

.terminal-dot-green {
    background: rgba(34, 197, 94, 0.8);
}

.terminal-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-mono);
    margin-left: 0.5rem;
}

.terminal-body {
    padding: 1rem;
    max-height: 13rem;
    overflow-y: auto;
    font-family: var(--font-mono);
}

.terminal-line {
    font-size: 0.75rem;
    line-height: 1.625;
    margin-bottom: 0.25rem;
    animation: terminal-line-in 0.15s ease-out;
}

.terminal-line .term-prompt {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 0.5rem;
}

@keyframes terminal-line-in {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.terminal-cursor-block {
    display: inline-block;
    width: 0.5rem;
    height: 0.875rem;
    background: rgba(74, 222, 128, 0.8);
    animation: blink 1s step-end infinite;
}

/* ───────── Error section ───────── */
.error-section {
    animation: fade-in 0.4s ease-out;
}

.error-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    border-color: rgba(239, 68, 68, 0.3) !important;
    animation: scale-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 640px) {
    .error-card {
        padding: 1.5rem;
    }
}

.badge-error {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #f87171;
}

.badge-error span {
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 700;
}

.error-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .error-title {
        font-size: 1.25rem;
    }
}

.error-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.error-warning {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.error-warning .warning-icon {
    width: 1rem;
    height: 1rem;
    color: #f87171;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.error-warning p {
    color: #fca5a5;
    font-size: 0.75rem;
    line-height: 1.625;
    text-align: left;
}

/* Cores comuns */
.text-red {
    color: #f87171 !important;
}

.text-white {
    color: white !important;
}

.text-yellow {
    color: #facc15 !important;
}

/* ───────── Offer content ───────── */
.offer-content {
    animation: slide-up 0.5s ease-out 0.2s both;
}

/* Solution card */
.solution-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.solution-eyebrow {
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.solution-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .solution-title {
        font-size: 1.125rem;
    }
}

.solution-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.625;
    margin-bottom: 0.75rem;
}

.solution-warning {
    background: rgba(250, 204, 21, 0.06);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.warning-icon-yellow {
    width: 1rem;
    height: 1rem;
    color: #facc15;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.solution-warning p {
    color: rgba(254, 240, 138, 0.8);
    font-size: 11px;
    line-height: 1.625;
}

/* ───────── How it works ───────── */
.howitworks {
    margin-bottom: 1.25rem;
}

.section-subtitle {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: slide-up 0.4s ease-out forwards;
}

.step-item[data-step-i="0"] {
    animation-delay: 0.4s;
}

.step-item[data-step-i="1"] {
    animation-delay: 0.5s;
}

.step-item[data-step-i="2"] {
    animation-delay: 0.6s;
}

.step-item[data-step-i="3"] {
    animation-delay: 0.7s;
}

.step-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.step-num span {
    font-size: 1rem;
    font-weight: 800;
    color: #4ade80;
}

.step-text .step-title {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-text .step-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 0.125rem;
    line-height: 1.625;
}

/* ───────── Price card ───────── */
.price-card {
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.06);
}

@media (min-width: 640px) {
    .price-card {
        padding: 2rem;
    }
}

.price-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #4ade80;
    text-transform: uppercase;
}

.price-discount {
    margin-bottom: 0.75rem;
}

.price-old {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-badge-off {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.price-current {
    margin-bottom: 0.25rem;
}

.price-big {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
}

@media (min-width: 640px) {
    .price-big {
        font-size: 3rem;
    }
}

.price-cents {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-info {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.price-required-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.lock-icon-sm {
    width: 0.75rem;
    height: 0.75rem;
    color: #f87171;
}

.price-required-badge span {
    color: #f87171;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Benefits checklist */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: slide-in-left 0.3s ease-out forwards;
}

.benefit-item[data-i="0"] {
    animation-delay: 0.6s;
}

.benefit-item[data-i="1"] {
    animation-delay: 0.7s;
}

.benefit-item[data-i="2"] {
    animation-delay: 0.8s;
}

.benefit-item[data-i="3"] {
    animation-delay: 0.9s;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.12);
}

.benefit-icon {
    width: 1rem;
    height: 1rem;
    color: #4ade80;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.benefit-check {
    width: 1rem;
    height: 1rem;
    color: #4ade80;
    margin-left: auto;
    flex-shrink: 0;
}

/* Aviso final */
.price-final-warning {
    margin-top: 1rem;
    background: rgba(239, 68, 68, 0.06);
    border: 1px dashed rgba(239, 68, 68, 0.25);
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.price-final-warning p {
    color: rgba(252, 165, 165, 0.8);
    font-size: 10px;
    line-height: 1.625;
    text-align: center;
}

/* ───────── Testimonials ───────── */
.testimonials {
    margin-bottom: 1.25rem;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-item {
    padding: 1rem;
    opacity: 0;
    animation: slide-up 0.4s ease-out forwards;
}

.testimonial-item[data-i="0"] {
    animation-delay: 1s;
}

.testimonial-item[data-i="1"] {
    animation-delay: 1.15s;
}

.testimonial-item[data-i="2"] {
    animation-delay: 1.3s;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.avatar-pink-purple {
    background: linear-gradient(135deg, #833AB4, #E1306C);
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.testimonial-city {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.testimonial-stars {
    margin-left: auto;
    display: flex;
    gap: 2px;
}

.testimonial-stars svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #facc15;
    fill: #facc15;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.625;
    font-style: italic;
}

/* ───────── FAQ ───────── */
.faq {
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

.faq-question {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    padding-right: 1rem;
}

.faq-chevron {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    padding: 0 1rem 1rem;
    animation: faq-open 0.3s ease-out;
}

.faq-item.open .faq-content {
    display: block;
}

@keyframes faq-open {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

.faq-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.625;
}

/* ───────── Footer ───────── */
.page-footer {
    text-align: center;
}

.page-footer p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 10px;
}

/* ───────── Modais ───────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    animation: overlay-in 0.3s ease-out;
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
    position: relative;
    animation: modal-spring 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 640px) {
    .modal-card {
        padding: 2rem;
    }
}

@keyframes modal-spring {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-card-red {
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.15);
}

.modal-close-x {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-x:hover {
    color: rgba(255, 255, 255, 0.6);
}

.modal-close-x svg {
    width: 1rem;
    height: 1rem;
}

.modal-close-x-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.modal-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal-icon-wrap > div,
.modal-icon-red {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.modal-icon-red svg {
    width: 2rem;
    height: 2rem;
    color: #f87171;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .modal-title {
        font-size: 1.25rem;
    }
}

.modal-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.625;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-warning-yellow {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.modal-warning-yellow p {
    color: rgba(253, 224, 71, 0.9);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.625;
}

.modal-warning-green {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.modal-warning-green p {
    color: rgba(134, 239, 172, 0.9);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.625;
}

.modal-bottom-info {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    text-align: center;
}

.modal-bottom-link {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-bottom-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ───────── Toast (sonner-like) ───────── */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 360px;
    width: calc(100% - 2rem);
}

.toast {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
    color: white;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: toast-in 0.3s ease-out;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.toast-error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast-warning {
    border-color: rgba(250, 204, 21, 0.3);
}

.toast-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.toast-error .toast-icon {
    color: #f87171;
}

.toast-warning .toast-icon {
    color: #facc15;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 600;
    font-size: 0.875rem;
}

.toast-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.125rem;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast.removing {
    animation: toast-out 0.3s ease-out forwards;
}
