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

:root {
    --bg-dark: #262626;
    --bg-card: #333;
    --accent: #e94241;
    --text: #fff;
    --text-muted: #aaa;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    transition: transform 0.2s;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

.app-store-badge img {
    height: 50px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
}

.feature h3 {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Sections */
section {
    margin: 40px 0;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

section p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

section ul {
    list-style: none;
    margin-bottom: 16px;
}

section ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

section ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Nav */
nav {
    background: var(--bg-card);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* Language Switcher */
.lang-switcher {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 8px;
}

.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-switcher a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.1);
}

.lang-switcher a.active {
    color: var(--text);
    background: var(--accent);
}

nav {
    position: relative;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

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

/* Support Page */
.contact-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.contact-card h2 {
    color: var(--text);
    margin-bottom: 16px;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Privacy Page */
.privacy-content h2 {
    color: var(--text);
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.privacy-content p {
    margin-bottom: 12px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px;
}

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

    .container {
        padding: 20px 16px;
    }

    header {
        padding: 40px 16px;
    }
}
