:root {
    --primary-color: #00e5ff;
    --secondary-color: #7000ff;
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.glass-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(112, 0, 255, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.brand-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5rem;
}

footer {
    margin-top: 6rem;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.8;
}

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

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.fade-in-long {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.8s forwards;
}

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

@media (max-width: 600px) {
    .brand-title {
        font-size: 3.5rem;
    }
    .tagline {
        font-size: 1.4rem;
    }
    .description {
        font-size: 1.1rem;
    }
}
