:root {
  /* Dynamic Red Palette */
  --red-900: #450a0a;
  --red-800: #7f1d1d;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --accent-yellow: #facc15;
  --pure-white: #ffffff;
  --off-white: #f8fafc;
  --dark-bg: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 48px;
  --space-2xl: 80px;

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-display);
  background-color: var(--off-white);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Typography Utils */
h1, h2, h3 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Header & Breaking Bar */
.top-ticker {
  background: var(--red-700);
  color: white;
  padding: var(--space-sm) 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--red-900);
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent-yellow);
  color: black;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 900;
  z-index: 2;
  display: flex;
  align-items: center;
  box-shadow: 4px 0 10px rgba(0,0,0,0.2);
}

header {
  background: var(--pure-white);
  border-bottom: 4px solid var(--red-600);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-600);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo span {
  background: var(--red-600);
  color: white;
  padding: 2px 8px;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red-600);
}

/* Main Hero Area */
.breaking-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.hero-main {
  position: relative;
  background: var(--dark-bg);
  height: 600px;
  overflow: hidden;
  color: white;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.8)), #2d3748;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.badge-live {
  background: var(--red-600);
  color: white;
  padding: 4px 12px;
  font-weight: 900;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-md);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
}

.hero-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sidebar Headlines */
.headlines-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.headline-card {
  background: var(--pure-white);
  padding: var(--space-md);
  border-left: 4px solid var(--red-600);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.headline-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.headline-card .category {
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.headline-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

/* Secondary Section */
section {
  margin-top: var(--space-xl);
}

.section-title {
  border-bottom: 3px solid var(--red-600);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--pure-white);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.card-img {
  height: 200px;
  background: #cbd5e1;
}

.card-body {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-excerpt {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.badge-static {
  background: #f1f5f9;
  color: var(--text-muted);
  padding: 4px 8px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.view-all-link {
  color: var(--red-600);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.8rem;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid #1e293b;
  color: #475569;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
}

/* Footer */
footer {
  margin-top: var(--space-2xl);
  background: var(--dark-bg);
  color: white;
  padding: var(--space-2xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
}

.footer-col h4 {
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--red-500);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-sm);
}

.footer-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-col a:hover {
  color: white;
}

/* Red Alert Banner */
.alert-banner {
  background: var(--red-600);
  color: white;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.alert-banner button {
  background: white;
  color: var(--red-600);
  border: none;
  padding: 8px 16px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .breaking-hero {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}
