* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); min-height: 100vh; }
.page-wrapper { display: grid; grid-template-columns: 160px 1fr 160px; gap: 20px; min-height: 100vh; max-width: 1400px; margin: 0 auto; padding: 20px; }
.sidebar { min-height: 100vh; }
.sidebar-left, .sidebar-right { display: flex; align-items: flex-start; padding-top: 80px; }
.sticky-ad { position: sticky; top: 20px; width: 160px; min-height: 600px; }
.main-content { display: flex; justify-content: center; align-items: flex-start; padding: 20px 0; }
@media (max-width: 1024px) { .page-wrapper { grid-template-columns: 1fr; } .sidebar { display: none; } }
.container { max-width: 600px; width: 100%; }
.header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.back-button { text-decoration: none; color: #333; font-size: 1em; background: rgba(0,0,0,0.1); padding: 6px 14px; border-radius: 20px; }
.back-button:hover { background: rgba(0,0,0,0.2); }
.title { color: #333; font-size: 1.6em; font-weight: 800; }
.stats-bar { display: flex; justify-content: space-between; background: rgba(0,0,0,0.1); border-radius: 14px; padding: 10px 18px; color: #333; font-size: 1em; margin-bottom: 16px; }
.news-card { background: #fff; border-radius: 18px; padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); margin-bottom: 18px; border-left: 5px solid #f7971e; }
.news-source { color: #f7971e; font-size: 0.82em; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.news-headline { color: #2d3436; font-size: 1.15em; font-weight: 800; line-height: 1.4; margin-bottom: 10px; }
.news-body { color: #636e72; font-size: 0.92em; line-height: 1.6; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.choice-btn { border: none; border-radius: 16px; padding: 16px; font-size: 1em; font-weight: 700; cursor: pointer; transition: transform 0.15s, opacity 0.15s; }
.real-btn { background: linear-gradient(135deg, #00b894, #00cec9); color: #fff; }
.fake-btn { background: linear-gradient(135deg, #d63031, #e17055); color: #fff; }
.choice-btn:hover { transform: translateY(-3px); }
.choice-btn:disabled { cursor: not-allowed; transform: none; opacity: 0.6; }
.result-box { background: #fff; border-radius: 18px; padding: 22px; text-align: center; box-shadow: 0 6px 24px rgba(0,0,0,0.12); margin-bottom: 16px; }
.result-icon { font-size: 2.5em; margin-bottom: 8px; }
.result-msg { font-size: 1.1em; font-weight: 700; margin-bottom: 8px; color: #2d3436; }
.explain-text { color: #636e72; font-size: 0.9em; line-height: 1.5; margin-bottom: 14px; font-style: italic; }
.next-btn { background: linear-gradient(135deg, #f7971e, #ffd200); color: #333; border: none; border-radius: 12px; padding: 12px 28px; font-size: 1em; font-weight: 700; cursor: pointer; }
.game-over { background: #fff; border-radius: 20px; padding: 36px 24px; text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.game-over h2 { font-size: 2em; margin-bottom: 10px; }
.game-over p { color: #555; font-size: 1.05em; margin-bottom: 8px; }
.share-btn, .play-again-btn { border: none; border-radius: 12px; padding: 12px 24px; font-size: 1em; font-weight: 700; cursor: pointer; margin: 6px; }
.share-btn { background: linear-gradient(135deg, #f7971e, #ffd200); color: #333; }
.play-again-btn { background: #f0f0f0; color: #333; }
.hidden { display: none; }
