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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0e1a;
    color: #e0e4f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.hero {
    text-align: center;
    margin-bottom: 64px;
}

.icon {
    font-size: 72px;
    margin-bottom: 16px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.tagline {
    font-size: 20px;
    color: #8b95b0;
    margin-bottom: 16px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7590;
    max-width: 500px;
    margin: 0 auto 32px;
}


.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.feature {
    background: #111627;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: #6b7590;
    line-height: 1.5;
}

/* Privacy policy page */
.policy {
    max-width: 640px;
    margin: 0 auto;
}

.policy section {
    margin-bottom: 32px;
}

.policy h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.policy h3 {
    font-size: 16px;
    font-weight: 600;
    color: #c0c8e0;
    margin-bottom: 8px;
    margin-top: 16px;
}

.policy p {
    font-size: 15px;
    line-height: 1.7;
    color: #8b95b0;
    margin-bottom: 12px;
}

.policy ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
}

.policy li {
    font-size: 15px;
    line-height: 1.7;
    color: #8b95b0;
    margin-bottom: 4px;
}

.policy a {
    color: #4c9aff;
    text-decoration: none;
}

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

.back-link {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #1a2040;
}

/* Play Store badge */
.store-badge img {
    height: 60px;
}

footer {
    text-align: center;
    padding: 24px;
    color: #3b4560;
    font-size: 14px;
}

footer a {
    color: #3b4560;
    text-decoration: none;
}

footer a:hover {
    color: #6b7590;
    text-decoration: underline;
}
