@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Cinzel:wght@700&display=swap');

body {
    margin: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a15, #000000 80%);
    font-family: 'Poppins', sans-serif;
    color: #e6e6e6;
}

#particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 25vh;
    animation: fadeIn 3s ease-in-out;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: gold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: glowPulse 2s infinite alternate;
}

.subtitle {
    font-size: 1.4rem;
    color: #d0d0ff;
    margin-top: 10px;
}

.coming {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #cccccc;
}

.email {
    margin-top: 8px;
    color: #88aaff;
    font-weight: 600;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    from { text-shadow: 0 0 15px gold; }
    to { text-shadow: 0 0 35px gold; }
}

@media (max-width: 600px) {
    .title { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
}
