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

:root {
    --purple-deep: #1a0a2e;
    --purple-dark: #2d1b4e;
    --purple-mid: #4a2c7a;
    --purple-glow: #8b5cf6;
    --gold-light: #f5e6a3;
    --gold: #d4af37;
    --gold-dark: #b8860b;
    --gold-copper: #cd7f32;
    --text-light: #f0e6ff;
    --text-muted: #a78bfa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--purple-deep);
    background: radial-gradient(ellipse at center top, var(--purple-dark) 0%, var(--purple-deep) 50%, #0d0517 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header h1 a {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

header .tagline {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

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

.app-icon {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    margin-bottom: 2rem;
    box-shadow:
        0 0 60px rgba(139, 92, 246, 0.4),
        0 0 100px rgba(139, 92, 246, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow:
            0 0 60px rgba(139, 92, 246, 0.4),
            0 0 100px rgba(139, 92, 246, 0.2),
            0 20px 40px rgba(0, 0, 0, 0.4);
    }
    to {
        box-shadow:
            0 0 80px rgba(139, 92, 246, 0.5),
            0 0 120px rgba(139, 92, 246, 0.3),
            0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--purple-deep);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.links {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--purple-mid);
}

.links a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

.links a:hover {
    color: var(--gold-light);
}

/* Privacy Policy Page */
.content {
    background: rgba(45, 27, 78, 0.5);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--purple-mid);
    backdrop-filter: blur(10px);
}

.content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content .updated {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.content section {
    margin-bottom: 2rem;
}

.content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.content h4 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
    color: var(--gold-light);
}

.content p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    opacity: 0.9;
}

.content ul, .content ol {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

.content li {
    margin-bottom: 0.25rem;
}

.content a {
    color: var(--purple-glow);
    transition: color 0.2s;
}

.content a:hover {
    color: var(--gold-light);
}

.content strong {
    color: var(--gold-light);
}

footer {
    background: rgba(13, 5, 23, 0.8);
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    border-top: 1px solid var(--purple-mid);
}

footer a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}

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

@media (max-width: 600px) {
    header {
        padding: 1.5rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    main {
        padding: 1rem;
    }

    .hero {
        padding: 1.5rem 0 2rem;
    }

    .app-icon {
        width: 140px;
        height: 140px;
        border-radius: 28px;
    }

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

    .content {
        padding: 1.5rem;
        border-radius: 12px;
    }
}
