:root {
    --primary-color: #ffffff;
    --text-color: #333333;
    --accent-color: #007AFF;
    --border-color: #e0e0e0;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary-color: #121212;
        --text-color: #ffffff;
        --border-color: #333333;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

nav {
    margin-top: 10px;
}

nav a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

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

.app {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.app h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.app-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.store-icon {
    height: 60px;
    width: auto;
    margin-right: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 0;
}

.store-icon[src*="playstore"] {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-left: 0;
    padding-left: 0;
}

.app p {
    min-height: 1.6em;
    margin-bottom: 10px;
}

.contact {
    margin: 2rem 0;
    text-align: left;
}

.contact p {
    margin: 0.5rem 0;
}

.contact a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.privacy-content {
    margin-top: 20px;
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

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

.privacy-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.news a {
    color: var(--accent-color);
    text-decoration: none;
}

.news a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    color: #666;
}

.site-description {
    text-align: center;
    margin: 0 0 40px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.site-description p {
    margin: 0;
}

.back-to-top {
    text-align: center;
    margin: 2rem 0;
}

.back-to-top a {
    color: var(--accent-color);
    text-decoration: none;
}

.back-to-top a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    section {
        padding: 15px;
    }

    .app {
        padding: 15px;
    }

    .app-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .store-icon {
        margin-right: 0;
    }
} 