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

:root {
    --coral: #FF6B6B;
    --coral-dark: #E85555;
    --text: #2D3436;
    --text-light: #636E72;
    --background: #FFFAF8;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
header {
    text-align: center;
    padding: 2rem 0 3rem;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.app-icon .emoji {
    font-size: 48px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Hero */
.hero {
    text-align: center;
    padding: 2rem 0;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.apple-logo {
    width: 24px;
    height: 24px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 3rem 0;
}

.feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* Footer */
footer {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
}

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

.copyright {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Page styles for privacy/support */
.page-header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--coral);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
}

.back-link:hover {
    text-decoration: underline;
}

.content {
    flex: 1;
}

.content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--coral);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.125rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
