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

:root {
    --primary-dark: #0a1929;
    --primary-blue: #1a365d;
    --accent-blue: #3b82f6;
    --white: #ffffff;
    --gray-light: #f1f5f9;
    --gray-text: #94a3b8;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.background-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bg-1 {
    top: -200px;
    right: -200px;
}

.bg-2 {
    bottom: -300px;
    left: -200px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.logo-text {
    height: 40px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.tagline {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-top: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.coming-soon-wrapper {
    margin-bottom: 30px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.main-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.main-heading span {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    font-size: 1.15rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-blue);
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.store-badge svg {
    width: 24px;
    height: 24px;
}

.store-badge-text {
    text-align: left;
}

.store-badge-text small {
    font-size: 0.7rem;
    color: var(--gray-text);
    display: block;
}

.store-badge-text span {
    font-size: 0.95rem;
    font-weight: 600;
}

footer {
    width: 100%;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.85rem;
    padding: 40px 0 0 0;
    z-index: 1;
    flex-shrink: 0;
}

footer a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

@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: 600px) {
    body {
        padding: 30px 20px;
        justify-content: flex-start;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .logo-text {
        height: 30px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .coming-soon-wrapper {
        margin-bottom: 20px;
    }

    .coming-soon-badge {
        padding: 6px 18px;
        font-size: 0.75rem;
    }

    .main-heading {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
        align-items: center;
    }

    .store-badges {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    footer {
        padding: 30px 0 0 0;
    }
}
