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

:root {
    --bg: #0a0015;
    --purple: #D405DF;
    --cyan: #0C9971;
    --gold: #FFD700;
    --text: #ffffff;
    --text-dim: #a0a0a0;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    padding: 2rem 0;
}

.logo {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Hero */
main {
    flex: 1;
}

.hero {
    text-align: center;
    padding: 2rem 0;
}

.orbs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.orb.six {
    background: radial-gradient(circle at 30% 30%, #E066E6, var(--purple), #8B008B);
    box-shadow: 0 0 30px var(--purple);
}

.orb.seven {
    background: radial-gradient(circle at 30% 30%, #20D9A0, var(--cyan), #066050);
    box-shadow: 0 0 30px var(--cyan);
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.description {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* CTA */
.cta {
    text-align: center;
    padding: 2rem 0;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.2s;
}

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

.coming-soon {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

footer nav {
    margin-bottom: 1rem;
}

footer nav a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

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

.copyright {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 700px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content .last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.privacy-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.privacy-content p,
.privacy-content li {
    color: var(--text-dim);
    margin-bottom: 0.75rem;
}

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

.privacy-content a {
    color: var(--cyan);
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.privacy-content th,
.privacy-content td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content th {
    color: var(--text);
}

.privacy-content td {
    color: var(--text-dim);
}

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

.back-link:hover {
    text-decoration: underline;
}
