/* ============================================================
   VELORA AI EXPERIENCES — PREMIUM EDITION
   Positioned: overlaid at bottom of hero banner, above main
   ============================================================ */

/* ── Section sits between hero and main, overlapping hero bottom ── */
.vae-section {
    position: relative;
    z-index: 10;
    /* margin-top: -6rem; */
    padding: 0 0 3.5rem;
    pointer-events: none; /* let hero clicks through except on the strip */
}

/* ── Inner strip — the visible glassmorphism bar ── */
.vae-strip {
    background: rgba(6, 6, 8, 0.78);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2.2rem 0 2.5rem;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

/* Subtle red glow left */
.vae-strip::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(192,21,15,0.14) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle gold glow right */
.vae-strip::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(200,160,60,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.vae-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.vae-header-left {}

.vae-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(192,21,15,0.12);
    border: 1px solid rgba(192,21,15,0.35);
    color: rgba(255,120,100,0.9);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 2rem;
    margin-bottom: 0.55rem;
}

.vae-ai-badge span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b6b;
    animation: vae-pulse 1.4s ease infinite;
    display: inline-block;
}

@keyframes vae-pulse {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(255,107,107,0.55); }
    50%      { opacity:0.7; transform:scale(1.35); box-shadow:0 0 0 5px rgba(255,107,107,0); }
}

.vae-header h2 {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}

.vae-header h2 span {
    background: linear-gradient(90deg, #c0150f, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vae-header-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.3rem;
}

/* ── Cards grid — horizontal on desktop, stack on mobile ── */
.vae-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

/* ── Individual card — premium glass ── */
.vae-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 1.4rem;
    padding: 1.75rem 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.3s ease;
    cursor: default;
}

/* Top shimmer line */
.vae-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

/* Left accent bar */
.vae-card::after {
    content: '';
    position: absolute;
    left: 0; top: 15%; bottom: 15%;
    width: 2px;
    background: linear-gradient(180deg, transparent, #c0150f 40%, #ff6b6b 60%, transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vae-card:hover {
    border-color: rgba(192,21,15,0.35);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(192,21,15,0.12);
    transform: translateY(-5px);
}

.vae-card:hover::after { opacity: 1; }

/* Card number watermark */
.vae-card-num {
    position: absolute;
    top: 1rem; right: 1.2rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

/* Card icon row */
.vae-card-icon-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vae-card-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

/* Card title */
.vae-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

/* Card sub */
.vae-card-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    flex: 1;
}

/* Divider */
.vae-card-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.1rem 0;
}

/* Checklist */
.vae-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vae-checklist li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.vae-checklist li::before {
    content: '—';
    color: rgba(192,21,15,0.7);
    font-weight: 900;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* CTA button */
.vae-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #c0150f 0%, #e53935 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.8rem 1.2rem;
    border-radius: 0.9rem;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(192,21,15,0.3);
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
    margin-top: auto;
}

.vae-card-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192,21,15,0.42);
}

.vae-card-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.vae-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.vae-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.vae-modal {
    background: linear-gradient(160deg, #141414 0%, #0e0e0e 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}

.vae-modal-overlay.open .vae-modal {
    transform: translateY(0) scale(1);
}

.vae-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.vae-modal-close:hover {
    background: rgba(192,21,15,0.2);
    color: #fff;
    border-color: rgba(192,21,15,0.4);
}

/* ── Step panels ── */
.vae-step {
    display: none;
    padding: 1.75rem 1.75rem 2rem;
    flex-direction: column;
    gap: 1.1rem;
    animation: vae-step-in 0.32s ease both;
}

.vae-step.active { display: flex; }

@keyframes vae-step-in {
    from { opacity:0; transform:translateY(12px); }
    to   { opacity:1; transform:translateY(0); }
}

/* Progress dots at top of modal */
.vae-step-progress {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.25rem;
}

.vae-step-dot {
    height: 3px;
    flex: 1;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.vae-step-dot.done  { background: rgba(192,21,15,0.6); }
.vae-step-dot.active { background: #c0150f; }

.vae-step-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.vae-step-sub {
    font-size: 0.77rem;
    color: rgba(255,255,255,0.35);
    margin-top: -0.65rem;
    line-height: 1.55;
}

.vae-q-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 0.2rem;
}

/* Options grid */
.vae-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.vae-opt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    padding: 0.7rem 0.9rem;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    user-select: none;
    line-height: 1.2;
}

.vae-opt:active { transform: scale(0.97); }

.vae-opt input[type="radio"],
.vae-opt input[type="checkbox"] {
    accent-color: #c0150f;
    width: 14px; height: 14px;
    flex-shrink: 0;
    margin: 0;
    vertical-align: middle;
    position: relative;
    top: 0;
}

.vae-opt.selected,
.vae-opt:has(input:checked) {
    background: rgba(192,21,15,0.14);
    border-color: rgba(192,21,15,0.45);
    color: #fff;
}

/* Modal action button */
.vae-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #c0150f, #e53935);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.88rem 1.5rem;
    border-radius: 0.9rem;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.25s, transform 0.2s;
    font-family: var(--font-primary);
    box-shadow: 0 6px 20px rgba(192,21,15,0.3);
    letter-spacing: 0.01em;
}

.vae-modal-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ============================================================
   LOADER SCREEN
   ============================================================ */
.vae-loader {
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.vae-loader-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,120,100,0.9);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.vae-progress-bar-wrap {
    background: rgba(255,255,255,0.07);
    border-radius: 2rem;
    height: 6px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.vae-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c0150f, #ff6b6b);
    border-radius: 2rem;
    transition: width 0.3s ease;
}

.vae-loader-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.vae-loader-steps li {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: color 0.4s;
}

.vae-loader-steps li.done { color: rgba(255,255,255,0.8); }

.vae-loader-steps li::before {
    content: '○';
    font-size: 0.7rem;
    color: rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: color 0.4s;
}

.vae-loader-steps li.done::before {
    content: '✓';
    color: #c0150f;
}

/* ============================================================
   RESULT SCREEN
   ============================================================ */
.vae-result-hero {
    background: linear-gradient(135deg, rgba(192,21,15,0.16) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(192,21,15,0.25);
    border-radius: 1.1rem;
    padding: 1.4rem;
    text-align: center;
}

.vae-result-emoji {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.vae-result-dna-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.3rem;
}

.vae-result-personality {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}

.vae-result-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}

.vae-result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.vae-result-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.24rem 0.7rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.28rem;
}

.vae-result-tag::before {
    content: '✔';
    color: #c0150f;
    font-size: 0.62rem;
}

.vae-result-dest {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1rem;
    padding: 1.1rem;
}

.vae-result-dest-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 0.35rem;
}

.vae-result-dest-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.7rem;
}

.vae-result-ai-quote {
    background: rgba(192,21,15,0.08);
    border-left: 2px solid rgba(192,21,15,0.6);
    border-radius: 0 0.7rem 0.7rem 0;
    padding: 0.8rem 1rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    font-style: italic;
}

.vae-result-ai-quote strong {
    display: block;
    color: rgba(255,120,100,0.85);
    font-style: normal;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.vae-must-visit {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vae-must-visit li {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.vae-must-visit li::before {
    content: '→';
    color: rgba(192,21,15,0.7);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.vae-result-section-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 0.4rem;
}

/* Input */
.vae-input-wrap input {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.8rem;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    padding: 0 1rem;
    outline: none;
    transition: border-color 0.25s;
}

.vae-input-wrap input::placeholder { color: rgba(255,255,255,0.2); }
.vae-input-wrap input:focus { border-color: rgba(192,21,15,0.5); }

/* Interests grid */
.vae-interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

/* Coming soon */
.vae-coming-soon {
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.vae-coming-soon-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.vae-coming-soon-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 0.6rem;
}

.vae-notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.72rem 2rem;
    border-radius: 0.9rem;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.2s, border-color 0.2s;
}

.vae-notify-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    /* .vae-section { margin-top: -4rem; } */
    .vae-grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .vae-header h2 { font-size: 1.35rem; }
}

@media (max-width: 768px) {
    /* .vae-section  { margin-top: -3rem; } */
    .vae-strip    { padding: 1.5rem 0 2rem; }
    .vae-grid     { grid-template-columns: 1fr; gap: 0.85rem; }
    .vae-header   { flex-direction: column; align-items: flex-start; }
    .vae-header h2 { font-size: 1.2rem; }
}

@media (max-width: 600px) {
    /* .vae-section  { margin-top: -2.5rem; } */
    .vae-card     { padding: 1.35rem 1.2rem 1.2rem; border-radius: 1.1rem; }
    .vae-card-title { font-size: 0.95rem; }
    .vae-card-btn { font-size: 0.78rem; padding: 0.72rem 1rem; }

    /* Modal — sits above mobile bottom nav (62px) + safe gap */
    .vae-modal-overlay {
        padding: 0;
        align-items: flex-end;
        /* push overlay above the sticky bottom nav */
        padding-bottom: 62px;
    }

    .vae-modal {
        border-radius: 1.4rem 1.4rem 0 0;
        max-height: calc(92vh - 62px);
        width: 100%;
    }

    .vae-step     { padding: 1.35rem 1.1rem 1.4rem; gap: 0.9rem; }

    /* Keep 2 columns on mobile — fits better than 1 column */
    .vae-options  { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
    .vae-opt      { padding: 0.6rem 0.65rem; font-size: 0.75rem; gap: 0.4rem; }

    .vae-interests-grid { grid-template-columns: 1fr 1fr; gap: 0.38rem; }

    .vae-step-title { font-size: 1rem; }
    .vae-q-label    { font-size: 0.75rem; }

    /* Drag handle hint at top of modal sheet */
    .vae-modal::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: rgba(255,255,255,0.15);
        border-radius: 2px;
        margin: 10px auto 0;
    }
}

/* ============================================================
   TYPING CURSOR
   ============================================================ */
.vae-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #ff6b6b;
    margin-left: 1px;
    vertical-align: middle;
    animation: vae-blink 0.7s steps(1) infinite;
    border-radius: 1px;
}
@keyframes vae-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ============================================================
   AI REACTION TOAST — centered inside modal bottom
   ============================================================ */
.vae-reaction-toast {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 12, 0.97);
    border: 1px solid rgba(192,21,15,0.45);
    border-radius: 2rem;
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 3.5rem);
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vae-reaction-toast.vae-reaction-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vae-reaction-toast.vae-reaction-hide {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vae-reaction-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b6b;
    flex-shrink: 0;
    animation: vae-pulse 1.2s ease infinite;
}

.vae-reaction-text {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.4;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
}

/* WA button green variant */
.vae-btn-wa {
    background: linear-gradient(135deg, #1a8a3a, #25D366) !important;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3) !important;
}
.vae-btn-wa:hover {
    box-shadow: 0 8px 28px rgba(37,211,102,0.42) !important;
}

/* Mobile: toast at top of modal instead of bottom */
@media (max-width: 600px) {
    .vae-reaction-toast {
        bottom: auto;
        top: 0.6rem;
        width: calc(100% - 3rem);
        transform: translateX(-50%) translateY(-8px);
    }
    .vae-reaction-toast.vae-reaction-show {
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================================
   REACTION TOAST — fixed position, floats above everything
   ============================================================ */
.vae-reaction-toast {
    position: fixed !important;
    left: 50% !important;
    bottom: auto !important;
    top: 72px !important;
    transform: translateX(-50%) translateY(-10px) !important;
    background: rgba(10, 10, 12, 0.97);
    border: 1px solid rgba(192,21,15,0.5);
    border-radius: 2rem;
    padding: 0.6rem 1.4rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 340px;
    width: max-content;
    box-shadow: 0 8px 32px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,107,107,0.1);
    z-index: 99999 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vae-reaction-toast.vae-reaction-show {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.vae-reaction-toast.vae-reaction-hide {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(-8px) !important;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vae-reaction-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ff6b6b;
    flex-shrink: 0;
    animation: vae-pulse 1.2s ease infinite;
}

.vae-reaction-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.45;
    font-family: var(--font-primary);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .vae-reaction-toast {
        top: 8px !important;
        max-width: calc(100vw - 2.5rem) !important;
        width: calc(100vw - 2.5rem) !important;
    }
    .vae-reaction-text { white-space: normal; }
}
