/* YAPP Landing Page Styles */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --text: #1f2937;
    --text-muted: #6b7280;
    --bg: #f9fafb;
    --card-bg: #ffffff;
    --border: #e5e7eb;
    --radius: 16px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #818cf8;
        --primary-hover: #6366f1;
        --text: #f9fafb;
        --text-muted: #9ca3af;
        --bg: #111827;
        --card-bg: #1f2937;
        --border: #374151;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.5;
}

.container {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.artwork {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--primary);
    color: white;
    width: 100%;
    margin-bottom: 24px;
}

.btn.primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn.primary:active {
    transform: translateY(0);
}

.store-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
}

.store-btn:hover {
    border-color: var(--primary);
    background: var(--card-bg);
}

.store-btn span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.store-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 24px;
    }

    .artwork {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .store-links {
        flex-direction: row;
        justify-content: center;
    }

    .store-btn {
        flex: 1;
        max-width: 180px;
    }
}
