:root {
    --primary: #007AFF;
    --bg: #ffffff;
    --text: #1d1d1f;
    --secondary-bg: #f5f5f7;
    --gray: #86868b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.5;
}

/* --- NAVIGATION (Shared) --- */
nav {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 20px;
}

/* --- HOME PAGE STYLES (index.html) --- */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at bottom, #f0f7ff 0%, #ffffff 100%);
}

.hero h1 { font-size: 3rem; letter-spacing: -0.02em; }

.subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-primary {
    background: var(--text);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.mockup-box {
    width: 260px;
    height: 450px;
    background: #f0f0f0;
    margin: 50px auto 0;
    border-radius: 30px;
    border: 6px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.mockup-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.content { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--secondary-bg);
    padding: 30px;
    border-radius: 20px;
}

.btn-secondary {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

/* --- PRIVACY PAGE PREMIUM STYLES (privacy.html) --- */
.legal-wrapper {
    max-width: 740px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.effective-date {
    color: var(--gray);
    font-size: 1.1rem;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 25px;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #424245;
    margin: 40px 0;
}

.legal-section { margin-bottom: 50px; }
.legal-section h2 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 600; }

.info-card {
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.highlight-box {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-box {
    display: block;
    background: var(--secondary-bg);
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    border-left: 4px solid var(--primary);
}

.contact-box span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.eula-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* --- FOOTER (Shared) --- */
footer {
    text-align: center;
    padding: 60px;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid #f2f2f2;
}

/* List styling for Privacy */
ul { margin-bottom: 20px; }
li { margin-bottom: 10px; }
