/* political.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: linear-gradient(180deg, #1e1b4b, #312e81); color: #e2e8f0; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; min-height: 100vh; }
.hero { position: relative; text-align: center; padding: 8rem 2rem 6rem; overflow: hidden; }
.constellation { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #e2e8f0; }
.compass { width: 60px; height: 60px; margin: 0 auto 2rem; position: relative; }
.compass-diamond { width: 30px; height: 30px; border: 2px solid #f59e0b; transform: rotate(45deg); position: absolute; top: 50%; left: 50%; margin-top: -15px; margin-left: -15px; }
.compass-diamond::before { content: ''; position: absolute; top: -8px; left: 50%; margin-left: -4px; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 8px solid #f59e0b; }
.compass-diamond::after { content: ''; position: absolute; bottom: -8px; left: 50%; margin-left: -4px; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 8px solid #f59e0b; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(180deg, #2563eb 0%, #f59e0b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subtitle { font-size: 0.85rem; color: #e2e8f0; opacity: 0.6; margin-top: 1rem; }
.chapters { max-width: 600px; margin: 0 auto; padding: 4rem 2rem; position: relative; }
.quest-path { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #f59e0b, #dc2626, #2563eb); transform: translateX(-50%); opacity: 0.6; }
.chapter { text-align: center; margin-bottom: 4rem; position: relative; }
.milestone { width: 40px; height: 40px; border-radius: 50%; border: 3px solid #f59e0b; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; background: rgba(37, 99, 235, 0.1); position: relative; z-index: 1; box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
.milestone-num { font-family: 'Fira Code', monospace; font-size: 0.8rem; font-weight: 600; color: #f59e0b; }
.chapter-label { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: #2563eb; margin-bottom: 0.5rem; font-style: italic; }
.chapter-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; color: #e2e8f0; }
.chapter-body { font-size: 0.9rem; opacity: 0.8; max-width: 480px; margin: 0 auto; }
.crossroads { position: relative; text-align: center; padding: 6rem 2rem; overflow: hidden; }
.territory { position: absolute; width: 300px; height: 200px; border-radius: 50%; filter: blur(40px); }
.territory-red { background: rgba(220, 38, 38, 0.2); top: 20%; left: 10%; animation: float-red 6s ease-in-out infinite; }
.territory-blue { background: rgba(37, 99, 235, 0.2); top: 30%; right: 10%; animation: float-blue 6s ease-in-out infinite 0.5s; }
@keyframes float-red { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes float-blue { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(20px); } }
.crossroads-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); position: relative; z-index: 1; margin-bottom: 1rem; }
.crossroads-text { font-size: 0.9rem; opacity: 0.7; max-width: 480px; margin: 0 auto; position: relative; z-index: 1; }
.horizon { text-align: center; padding: 6rem 2rem 8rem; position: relative; background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(220, 38, 38, 0.05)); }
.horizon-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; opacity: 0.8; margin-top: 1rem; font-style: italic; }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
