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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.app-name {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5a742 0%, #f77737 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.tagline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .app-name {
        font-size: 2.5rem;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }

    .content {
        padding: 3rem 1.5rem;
    }
}
