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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #e0d5c1;
    background: #0a0a0f;
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    background: #12121a;
    border-bottom: 1px solid #2a1f1f;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #e0d5c1;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

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

.nav-links a {
    color: #a09080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #e0d5c1;
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, #1a1020 0%, #0a0a0f 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 144px;
    height: 144px;
    border-radius: 32px;
    box-shadow: 0 0 40px rgba(120, 40, 160, 0.3);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #a78bfa;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.05rem;
    color: #a09080;
    max-width: 650px;
    margin: 0 auto 32px;
}

.play-store-badge {
    display: inline-block;
    transition: transform 0.2s;
}

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

.play-store-badge img {
    height: 60px;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #e0d5c1;
}

/* Features */
.features {
    background: #0e0e16;
}

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

.feature-card {
    background: #15151f;
    border: 1px solid #2a1f2a;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: #7c3aed;
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #c084fc;
}

.feature-card p {
    color: #a09080;
    font-size: 0.95rem;
}

/* Screenshots */
.screenshots {
    background: #0a0a0f;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.screenshot-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a1f2a;
    aspect-ratio: 9 / 16;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About */
.about {
    background: #0e0e16;
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 16px;
    color: #a09080;
    font-size: 1.05rem;
}

.about-content strong {
    color: #e0d5c1;
}

/* CTA */
.cta {
    text-align: center;
    background: radial-gradient(ellipse at center, #1a1028 0%, #0a0a0f 70%);
}

.cta p {
    color: #a09080;
    margin-bottom: 28px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #12121a;
    border-top: 1px solid #2a1f1f;
    padding: 32px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a09080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #e0d5c1;
}

.footer-copy {
    color: #5a4a4a;
    font-size: 0.85rem;
}

/* Page Content (Privacy / Terms) */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #c084fc;
}

.page-content .last-updated {
    color: #5a4a4a;
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.page-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 32px 0 12px;
    color: #e0d5c1;
    text-align: left;
}

.page-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 8px;
    color: #a78bfa;
}

.page-content p {
    margin-bottom: 16px;
    color: #a09080;
}

.page-content ul {
    margin: 12px 0 20px 24px;
    color: #a09080;
}

.page-content li {
    margin-bottom: 6px;
}

.page-content a {
    color: #a78bfa;
    text-decoration: none;
}

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

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

    .hero-tagline {
        font-size: 1.1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-gallery {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .hero-icon {
        width: 100px;
        height: 100px;
    }
}