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

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

.container {
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.coming-soon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00c6ff;
}

.description {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.platform svg {
    color: #00c6ff;
}

.platform .bi {
    color: #fff;
}

.footer {
    text-align: center;
    margin-top: 2rem;
}

.footer a {
    color: #00c6ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: text-decoration 0.2s;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .platforms {
        flex-direction: column;
        gap: 1rem;
    }
} 