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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
    color: #e8e8e8;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 60% 70%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(2px 2px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 33% 60%, #fff, transparent),
        radial-gradient(1px 1px at 10% 80%, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: sparkle 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-200px);
    }
}

.content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    animation: fadeIn 1.5s ease-in;
}

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

.title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #a8a8a8 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(232, 232, 232, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

.divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b7fa8, transparent);
    margin: 0 auto 3rem;
    box-shadow: 0 0 10px rgba(139, 127, 168, 0.5);
}

.description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #c8c8c8;
    font-weight: 300;
    letter-spacing: 0.05rem;
}

.tagline {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-top: 2.5rem;
    color: #d8d8d8;
    font-style: italic;
    letter-spacing: 0.05rem;
}

.highlight {
    color: #b8a8d8;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(184, 168, 216, 0.4);
}

.footer {
    position: absolute;
    bottom: 2rem;
    z-index: 1;
    opacity: 0.6;
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    animation: fadeIn 2s ease-in;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
