:root {
    --bg-color: #050505;
    --text-primary: #f8f9fa;
    --text-secondary: #868e96;
    --accent: #e9ecef;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

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

.logo {
    font-size: 4.5rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    background: linear-gradient(135deg, #ffffff 0%, #7b8084 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    display: inline-block;
}

.description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

/* Animations */
.fade-in {
    animation: fadeInUp 1.5s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background gradient effect */
.background-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.1rem;
    }
}