body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #020024 20%, #022A9B 79%, #00D4FF 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10vw;
    height: 100vh;
}

.container {
    text-align: left;
}

.logo {
    width: 50vw;
    max-width: 900px;
    margin-bottom: 2vh;
}

.tagline {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 4vh;
}

.buttons {
    position: absolute;
    top: 2vh;
    right: 2vw;
    display: flex;
    gap: 1vw;
}

.button {
    font-family: Arial, sans-serif;
    font-size: 1.5vh;
    color: white;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    background: white;
    color: #022A9B;
    border-radius: 2vh;
    padding: 1vh 2vw;
}

.coming-soon {
    position: absolute;
    bottom: 2vh;
    font-size: 2vh;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .logo {
        width: 70vw;
    }

    .tagline {
        font-size: 3vh;
    }

    .button {
        font-size: 1.2vh;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80vw;
    }

    .tagline {
        font-size: 2.5vh;
    }

    .button {
        font-size: 1vh;
        padding: 0.8vh 1.5vw;
    }
}
