body {
    font-family: 'Space Grotesk', sans-serif;
    background: #05070a;
    overflow: hidden;
    color: #e2e8f0;
}

/* Star Background */
.stars-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: moveStar linear infinite;
}
@keyframes moveStar {
    from { transform: translateY(0); }
    to { transform: translateY(-100vh); }
}

/* Notification */
#notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notif {
    min-width: 250px;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Galaxy Card */
.galaxy-card {
    background: rgba(10, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 360px;
    width: 100%;
}
.text-glow { text-shadow: 0 0 10px rgba(37, 99, 235, 0.8); }
