* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: radial-gradient(1200px 600px at 50% 100%, 
        rgba(140, 110, 190, 0.35), 
        transparent 60%),
        linear-gradient(180deg, #0f0c18 0%, #151022 40%, #1b1430 100%);
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #e9e6f2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* subtle stars */
body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(180,160,255,0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.15;
}

/* soft glow horizon */
body::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 500px;
    background: radial-gradient(
        ellipse at center,
        rgba(160,130,255,0.45) 0%,
        rgba(160,130,255,0.25) 30%,
        transparent 70%
    );
    filter: blur(80px);
}

.container {
    text-align: center;
    z-index: 2;
}

h1 {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #ffffff, #c9b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(230,220,255,0.6);
    letter-spacing: 1px;
}

/* subtle fade animation */
.container {
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    .sub {
        font-size: 15px;
    }
}