
:root {
    --primary-color: #F5852A;
    --background: #FBFAFC;
    --text-color: #1E1E1E;
    --accent: #FFD8B2;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text-color);
    padding: 2rem;
}

.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.logo {
    max-width: 100px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    color: var(--primary-color);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-button {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    color: white;
}

.store-button.apple {
    background: black;
}

.store-button.google {
    background: #3DDC84;
}

footer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer a {
    text-decoration: none;
    color: var(--primary-color);
}
