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

/* Background */
body {
    background: linear-gradient(135deg, #0f0f1a, #1a1a2e);
    color: #e6e6f0;
    font-family: "Georgia", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

/* Container */
.container {
    max-width: 700px;
    padding: 40px;
    animation: fadeIn 2s ease forwards;
}

/* Title */
.title {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: glow 3s ease-in-out infinite alternate;
}

/* Subtitle */
.subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Card */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.card h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    margin-bottom: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Status line */
.status {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */

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

@keyframes glow {
    from {
        text-shadow: 0 0 5px #6c63ff;
    }
    to {
        text-shadow: 0 0 20px #9f9bff;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}
