:root {
    --background-color: #10151e;
    --primary-color: #4bf364;
    --text-color: #ffffff;
    --text-muted-color: #cfcfcf;
    --glow-1: #418c4c;
    --glow-2: #2a5a78;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.container {
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.2s forwards;
}

.logo svg path {
    fill: var(--primary-color);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 500;
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.4s forwards;
}

p {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--text-muted-color);
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.6s forwards;
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
}