body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.eclipse {
    position: absolute;
    top: 25%;
    width: 500px;
    height: 250px;
    background: radial-gradient(circle at center, #4b4bfa33, #000 70%);
    border-radius: 50% 50% 0 0;
    transform: translateY(-50%);
    box-shadow: 0 0 60px 40px rgba(75, 75, 250, 0.3);
}

.text {
    text-align: center;
    z-index: 2;
}

.text h1 {
    letter-spacing: 30px;
    font-weight: 300;
    color: #ccc;
    font-size: 32px;
}

.text p {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #7f7fff;
}
