@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --bg: rgb(10, 8, 20);
    --surface: rgb(20, 15, 36);
    --accent: rgb(199, 158, 56);
    --blood: rgb(140, 20, 20);
    --candlelight: rgb(242, 199, 89);
    --text-primary: rgb(235, 224, 204);
    --text-secondary: rgb(166, 148, 122);
    --text-muted: rgb(102, 89, 71);
    --gold-top: rgb(230, 191, 77);
    --gold-bottom: rgb(140, 102, 31);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(199,158,56,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--candlelight); }

.page { max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Navigation */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,8,20,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(199,158,56,0.15);
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
nav .logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px; color: var(--accent);
    letter-spacing: 3px;
}
nav .links { display: flex; gap: 24px; }
nav .links a {
    font-family: 'Cinzel', serif;
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-secondary);
}
nav .links a:hover { color: var(--candlelight); }

/* Hero */
.hero {
    text-align: center;
    padding: 140px 0 60px;
    min-height: 90vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.hero .icon {
    width: 120px; height: 120px;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(199,158,56,0.2);
    margin-bottom: 32px;
}
.hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 56px; color: var(--accent);
    letter-spacing: 6px;
    text-shadow: 0 0 40px rgba(199,158,56,0.15);
    margin-bottom: 12px;
}
.hero .subtitle {
    font-family: 'Cinzel', serif;
    font-size: 16px; color: var(--text-secondary);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 16px;
}
.hero .tagline {
    font-style: italic; font-size: 20px;
    color: var(--text-muted); max-width: 500px;
    margin-bottom: 32px;
}
.hero .app-badge {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Cinzel', serif;
    font-size: 14px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    border: 1.5px solid var(--accent);
    border-radius: 6px;
    background: rgba(199,158,56,0.08);
    transition: all 0.2s;
}
.hero .app-badge:hover {
    background: rgba(199,158,56,0.15);
    color: var(--candlelight);
    transform: scale(1.02);
}

/* Divider */
.divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 40px 0;
}
.divider::before, .divider::after {
    content: ''; height: 1px; width: 60px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.divider .diamond {
    width: 6px; height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
}

/* Section */
section { padding: 60px 0; }
section h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px; color: var(--candlelight);
    letter-spacing: 4px; text-align: center;
    margin-bottom: 12px;
}
section .section-sub {
    text-align: center; color: var(--text-muted);
    margin-bottom: 40px; font-size: 16px;
}

/* Screenshots */
.screenshots {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}
.screenshots::-webkit-scrollbar { display: none; }
.screenshots img {
    scroll-snap-align: center;
    height: 480px; width: auto;
    border-radius: 12px;
    border: 1.5px solid rgba(199,158,56,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    flex-shrink: 0;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(199,158,56,0.12);
    border-radius: 8px;
    padding: 24px;
}
.feature-card .icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px; color: var(--candlelight);
    letter-spacing: 1px; margin-bottom: 8px;
}
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }

/* Pricing */
.pricing {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 0.5px solid rgba(199,158,56,0.1);
    border-radius: 12px;
}
.pricing .price {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px; color: var(--candlelight);
    margin: 16px 0;
}
.pricing .note {
    color: var(--text-muted); font-size: 15px;
    margin-top: 12px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 60px;
}
footer p { color: var(--text-muted); font-size: 14px; }
footer .links { margin-top: 12px; }
footer .links a {
    font-family: 'Cinzel', serif;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-secondary);
    margin: 0 12px;
}

/* Privacy / Support pages */
.content-page { padding-top: 100px; padding-bottom: 60px; }
.content-page h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 32px; color: var(--candlelight);
    letter-spacing: 4px; text-align: center;
    margin-bottom: 8px;
}
.content-page .updated {
    text-align: center; color: var(--text-muted);
    font-size: 14px; margin-bottom: 32px;
}
.content-page h2 {
    font-family: 'Cinzel', serif;
    font-size: 20px; color: var(--accent);
    letter-spacing: 2px; margin: 32px 0 12px;
}
.content-page p, .content-page li {
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.content-page ul { padding-left: 24px; }
.content-page strong { color: var(--text-primary); }

.faq-card {
    background: rgba(255,255,255,0.03);
    border: 0.5px solid rgba(199,158,56,0.1);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
}
.faq-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 15px; color: var(--candlelight);
    margin-bottom: 8px;
}
.faq-card p { color: var(--text-secondary); font-size: 16px; margin: 0; }

.contact-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Cinzel', serif;
    font-size: 13px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    border: 1.5px solid var(--accent);
    border-radius: 6px;
    background: rgba(199,158,56,0.08);
    margin-top: 16px;
    transition: all 0.2s;
}
.contact-btn:hover {
    background: rgba(199,158,56,0.15);
    color: var(--candlelight);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; letter-spacing: 4px; }
    .hero .subtitle { font-size: 13px; }
    .features { grid-template-columns: 1fr; }
    nav .logo { font-size: 14px; }
    nav .links a { font-size: 10px; }
}
