:root {
    --mercy-pink: #FF9ECF;
    --mercy-pink-glow: #FF5DB1;
    --mercy-white: #FFF5F9;
    --dark-bg: #120A0E; /* Deep dark rose-black */
}

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

body {
    background-color: var(--dark-bg);
    color: var(--mercy-white);
    font-family: 'Space Grotesk', sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    /* Soft pink radial glow */
    background: radial-gradient(circle, rgba(255, 158, 207, 0.15) 0%, rgba(18, 10, 14, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    transition: all 0.1s ease-out;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 158, 207, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 158, 207, 0.3);
    margin-bottom: 2rem;
    color: var(--mercy-pink);
    text-transform: uppercase;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--mercy-pink-glow);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--mercy-pink-glow);
    animation: pulse-glow 1.5s infinite;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.accent {
    color: var(--mercy-pink);
    text-shadow: 0 0 25px rgba(255, 93, 177, 0.4);
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 450px;
    margin: 0 auto 3.5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* The Pink Halo Loader */
.loader-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 3.5rem;
}

.halo {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 158, 207, 0.1);
    border-top: 3px solid var(--mercy-pink);
    border-radius: 50%;
    animation: rotate 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 -3px 15px rgba(255, 93, 177, 0.3);
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: var(--mercy-pink);
    font-size: 0.9rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.link {
    color: var(--mercy-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.6;
}

.link:hover {
    color: var(--mercy-pink);
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}
/* Add these to your existing CSS */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind text, above the background-glow */
    pointer-events: none; /* Allows you to click links through the particles */
}

/* Optional: Add a slight glassmorphism to the links for extra glam */
.link {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 158, 207, 0.1);
}