:root {
    --primary: #d4af37;
    --bg-darker: #0a0e27;
    --bg-dark: #0d1235;
    --text-light: #f0ede6;
    --text-muted: #b0aaa0;
    --glow: 0 0 20px rgba(212,175,55,0.5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Crimson Pro', serif; background: var(--bg-darker); color: var(--text-light); line-height: 1.85; }

nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,14,39,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--primary); text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }

.article-header { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 3rem; text-align: center; }
.article-tag { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 4px; color: var(--primary); opacity: 0.75; text-transform: uppercase; margin-bottom: 1.5rem; }
.article-title { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; line-height: 1.25; background: linear-gradient(135deg, #f5e6a3, var(--primary), #c49b2a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 2rem; }
.article-subtitle { font-size: 1.3rem; color: var(--text-muted); font-style: italic; max-width: 580px; margin: 0 auto 2rem; }
.article-divider { width: 60px; height: 1px; background: var(--primary); margin: 0 auto; box-shadow: var(--glow); }

.article-body { max-width: 720px; margin: 0 auto; padding: 3.5rem 2rem 6rem; }
.article-body p { font-size: 1.35rem; margin-bottom: 2rem; color: var(--text-light); line-height: 1.9; }
.article-body h2 { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--primary); margin: 3.5rem 0 1.5rem; font-weight: 600; }
.article-body blockquote { border-left: 2px solid var(--primary); padding: 1.2rem 1.8rem; margin: 3rem 0; background: rgba(212,175,55,0.06); border-radius: 0 8px 8px 0; }
.article-body blockquote p { font-style: italic; font-size: 1.25rem; color: #d4c08a; margin: 0; line-height: 1.7; }
.article-body blockquote cite { display: block; margin-top: 0.8rem; font-size: 0.95rem; color: var(--text-muted); font-style: normal; }

.article-cta { margin-top: 4rem; padding: 2.5rem; background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03)); border: 1px solid rgba(212,175,55,0.25); border-radius: 16px; text-align: center; }
.article-cta p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.btn-cta { display: inline-block; padding: 0.9rem 2.5rem; background: var(--primary); color: #050816; font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; letter-spacing: 1px; border-radius: 50px; text-decoration: none; transition: all 0.3s; box-shadow: var(--glow); }
.btn-cta:hover { background: #f5e6a3; transform: translateY(-2px); }

.more-articles { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 5rem; border-top: 1px solid rgba(212,175,55,0.12); }
.more-articles h3 { font-family: 'Cinzel', serif; color: var(--primary); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.5rem; opacity: 0.8; }
.more-link { display: block; color: var(--text-muted); text-decoration: none; padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.1rem; transition: color 0.2s; }
.more-link:hover { color: var(--primary); }

footer { border-top: 1px solid rgba(212,175,55,0.1); padding: 2rem; text-align: center; }
footer a { color: var(--primary); text-decoration: none; font-family: 'Cinzel', serif; font-size: 0.9rem; }
footer p { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.6rem; opacity: 0.45; }
