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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    padding: 2rem;
    text-align: center;
}

.content {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #4F8BFF, #9E76FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #9E76FF;
}

.description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }
}