/* General Reset */
body { font-family: 'Roboto', 'Arial', sans-serif; background: #f4f4f4; color: #111; margin: 0; padding: 0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }

/* Top Alert Bar */
.top-notification { background: #cc0000; color: white; padding: 10px; text-align: center; font-weight: bold; font-size: 14px; text-transform: uppercase; }
.breaking-badge { background: white; color: #cc0000; padding: 2px 6px; border-radius: 3px; margin-right: 10px; }

/* Header */
.site-header { background: white; border-bottom: 1px solid #ddd; padding: 15px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.logo { font-size: 24px; font-weight: 900; letter-spacing: -1px; color: #0a2d4d; }

/* Layout */
.content-wrapper { display: flex; gap: 30px; max-width: 1000px; margin: 30px auto; padding: 0 20px; }
.main-article { flex: 2; background: white; padding: 30px; border-radius: 4px; }
.sidebar { flex: 1; display: block; }

/* Headlines */
.breadcrumbs { font-size: 12px; color: #888; margin-bottom: 10px; }
.headline { font-family: 'Playfair Display', serif; font-size: 34px; line-height: 1.1; margin-bottom: 15px; }
.sub-headline { font-size: 18px; color: #555; font-weight: normal; margin-bottom: 20px; border-left: 4px solid #cc0000; padding-left: 15px; }
.author-line { font-size: 13px; color: #999; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }

/* FAKE VIDEO PLAYER */
.video-container { position: relative; margin-bottom: 30px; cursor: pointer; overflow: hidden; border-radius: 8px; }
.video-container img { filter: brightness(0.8); transition: 0.3s; }
.video-container:hover img { filter: brightness(0.6); }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/YouTube_play_button_icon_%282013%E2%80%932017%29.svg/200px-YouTube_play_button_icon_%282013%E2%80%932017%29.svg.png') no-repeat center center; background-size: contain; z-index: 2; pointer-events: none; }
.live-overlay { position: absolute; top: 15px; left: 15px; background: red; color: white; padding: 5px 10px; font-weight: bold; font-size: 12px; border-radius: 3px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* TRANSCRIPT STYLING */
.transcript-box { background: #f0f2f5; border: 1px dashed #999; padding: 25px; margin: 30px 0; border-radius: 5px; }
.transcript-box h3 { text-align: center; color: #cc0000; text-transform: uppercase; margin-bottom: 20px; }
.dialogue { margin-bottom: 15px; padding: 10px; border-radius: 5px; font-size: 16px; }
.moderator { background: #e9ecef; border-left: 4px solid #666; }
.guest { background: #fff3cd; border-left: 4px solid #ffc107; }

/* Test Results */
.test-results { border: 2px solid #00d084; padding: 20px; background: #eafff5; border-radius: 8px; margin: 25px 0; }
.test-results ul { padding-left: 20px; }
.test-results li { margin-bottom: 10px; font-weight: 500; }

/* CTA Button */
.cta-box { background: #1a2e44; color: white; padding: 40px; text-align: center; border-radius: 8px; margin-top: 40px; }
.btn-pulse { display: inline-block; background: #ff4757; color: white; padding: 20px 30px; font-size: 22px; font-weight: bold; border-radius: 5px; box-shadow: 0 0 20px rgba(255, 71, 87, 0.6); animation: grow 1.5s infinite alternate; }
@keyframes grow { from { transform: scale(1); } to { transform: scale(1.05); } }

/* Sidebar Widget */
.widget { background: white; padding: 20px; border: 1px solid #ddd; border-radius: 4px; }
.news-item { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 14px; font-weight: bold; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.news-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }

/* Mobile */
@media(max-width: 768px) {
    .content-wrapper { flex-direction: column; padding: 10px; }
    .headline { font-size: 26px; }
    .sidebar { display: none; }
}