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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container and Layout */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(20, 40, 60, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 50, 70, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(25, 45, 65, 0.25) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 20, 25, 0.95) 0%, rgba(10, 15, 20, 0.98) 100%);
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

/* Logo and Branding */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.logo i {
    font-size: 3rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px #ffffff);
}

.logo h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Main Content */
.main-content {
    margin-bottom: 1rem;
}

.tagline h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Footer */
.footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    color: #555555;
    animation: fadeInUp 1s ease-out 0.8s both;
}
.footer p {
    margin: 0;
}
.footer a {
    color: #ff0080;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.5rem;
    }
    .description {
        font-size: 0.875rem;
        padding: 0 1rem;
    }
}