:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --secondary-text: #666666;
    --accent-color: #000000;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Document Page Container */
.doc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

/* Header/Hero */
.logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-btn img {
    margin-right: 12px;
    height: 24px;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-color);
}

.copyright {
    color: #999;
    font-size: 0.8rem;
}

/* Legal Text Formatting */
.legal-content h1 {
    text-align: left;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content p, .legal-content li {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .tagline { font-size: 1.1rem; }
    .store-buttons { flex-direction: column; width: 100%; }
    .store-btn { width: 100%; }
}
