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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #14B8A6 0%, #6366F1 50%, #10B981 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
}

.icon-placeholder svg {
    display: block;
}

.app-name {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(16, 185, 129, 0.3);
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.app-store-link-container {
    margin-top: 8px;
}

.app-store-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.app-store-link:hover {
    opacity: 0.8;
}

.app-store-link:active {
    opacity: 0.6;
}

.app-store-link svg {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .app-name {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .app-icon,
    .icon-placeholder svg {
        width: 100px;
        height: 100px;
    }

    .icon-placeholder svg {
        width: 100px;
        height: 100px;
    }
}

