/* politics.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #134e4a; color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.6; }
.menu { text-align: center; padding: 4rem 2rem 3rem; position: relative; }
.xp-counter { font-family: 'Fira Code', monospace; font-size: 0.75rem; position: absolute; top: 1.5rem; right: 2rem; color: #fbbf24; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); }
.banner { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.15em; color: #fbbf24; margin-top: 1rem; }
.quests { max-width: 440px; margin: 0 auto; padding: 0 1.5rem 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.quest-card { border: 4px solid #000000; border-radius: 0; padding: 20px; }
.yellow-card { background: #fbbf24; color: #000000; }
.blue-card { background: #60a5fa; color: #000000; }
.pink-card { background: #f472b6; color: #000000; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.level-badge { font-family: 'Fira Code', monospace; font-size: 0.6rem; letter-spacing: 0.1em; }
.stars { display: flex; gap: 4px; }
.star-icon { width: 16px; height: 16px; background: #fbbf24; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.blue-card .star-icon, .pink-card .star-icon { background: #000000; }
.quest-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.3rem; }
.quest-desc { font-size: 0.75rem; opacity: 0.8; }
.progress-section { max-width: 440px; margin: 0 auto; padding: 3rem 1.5rem; }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.progress-bar { height: 24px; background: #1a1a1a; border: 3px solid #000000; overflow: hidden; }
.progress-fill { height: 100%; background: #22c55e; }
.leaderboard { margin-top: 2rem; }
.leaderboard-title { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.leader-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.6rem; }
.avatar { width: 40px; height: 40px; border: 3px solid #000000; flex-shrink: 0; }
.leader-name { font-family: 'Fira Code', monospace; font-size: 0.75rem; flex: 1; }
.leader-xp { font-family: 'Fira Code', monospace; font-size: 0.75rem; color: #fbbf24; }
.complete { text-align: center; padding: 4rem 2rem 5rem; }
.trophy { width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 30px solid #fbbf24; margin: 0 auto 0.5rem; position: relative; }
.trophy::after { content: ''; position: absolute; top: 30px; left: -8px; width: 16px; height: 8px; background: #fbbf24; }
.complete-text { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fbbf24; margin-top: 1rem; }
.final-xp { font-family: 'Fira Code', monospace; font-size: 0.85rem; margin-top: 0.5rem; }
.play-again { font-size: 0.8rem; opacity: 0.6; margin-top: 1rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
