:root {
    --bg-color: #0A0A0B;
    --text-color: #F7F7FF;
    --accent-color: #EE4266;
    --accent-light: rgba(238, 66, 102, 0.15);
}

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

body, html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

::selection {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: var(--accent-light);
    border: 1px solid rgba(238, 66, 102, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-color);
    box-shadow: 0 0 0 0 rgba(238, 66, 102, 0.7);
    animation: pulser 2s infinite;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 span {
    color: var(--accent-color);
    font-style: italic;
}

/* Background Effects */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: var(--text-color);
    border-radius: 50%;
    animation: float infinite linear;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    from { transform: translateY(100vh) rotate(0deg); }
    to { transform: translateY(-100px) rotate(360deg); }
}

@keyframes pulser {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 66, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(238, 66, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(238, 66, 102, 0); }
}
