/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    max-width: 700px;
    padding: 2rem;
    text-align: center;
}

.content {
    opacity: 0;
    transform: translateY(60px);
}

.content.animate {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0a0a0;
    opacity: 0;
    transform: translateY(40px);
}

.description.animate {
    animation: slideUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Subtle glow effect */
.title:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.3s ease;
}