* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  background: #efe8db;

  color: #111;

  font-family:
    Impact,
    "Arial Black",
    Arial,
    sans-serif;

  overflow-x: hidden;
}

.topbar {

  display: grid;

  grid-template-columns:
    auto
    auto
    1fr
    auto;

  align-items: center;

  gap: 30px;

  padding: 20px 35px;

  background: #050505;

  color: #f5f0e8;

  border-bottom: 4px solid #111;
}

.topbar-left {

  display: flex;
  align-items: center;
  gap: 10px;

  color: #ff2b2b;

  font-size: 1.4rem;
}

.live-dot {

  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: #ff2b2b;
}

.topnav {

  display: flex;
  gap: 25px;
}

.topnav a {

  text-decoration: none;

  color: #f5f0e8;

  font-size: 1.1rem;
}

.topbar-center {

  text-align: center;

  background: #d81d1d;

  padding: 14px 20px;

  font-size: 1.3rem;
}

.topbar-right {

  font-size: 1.1rem;
}

.hero-layout {

  display: grid;

  grid-template-columns:
    1.8fr
    0.8fr;

  gap: 30px;

  padding: 35px;
}

.hero-main h1 {

  font-size: clamp(4rem, 10vw, 9rem);

  line-height: 0.88;

  margin-bottom: 25px;
}

.hero-main h1 span {

  color: #d81d1d;
}

.hero-banner {

  background: #111;

  color: white;

  font-size: clamp(1.5rem, 2.5vw, 2.6rem);

  padding: 18px 28px;

  margin-bottom: 30px;
}

.topic-grid {

  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  gap: 18px;

  margin-bottom: 30px;
}

.topic-card {

  aspect-ratio: 1 / 1;

  min-height: 180px;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  color: white;

  padding: 15px;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.topic-card:hover {

  transform: translateY(-4px);

  box-shadow:
    0 0 0 4px rgba(0,0,0,0.08);
}

.topic-icon {

  font-size: 2.7rem;

  margin-bottom: 12px;
}

.topic-label {

  font-size: 1rem;

  line-height: 1.05;

  letter-spacing: 1px;
}

.red {
  background: #d81d1d;
}

.blue {
  background: #0f4c97;
}

.yellow {
  background: #f2c300;
  color: #111;
}

.green {
  background: #2d7c46;
}

.navy {
  background: #15335f;
}

.orange {
  background: #d96b1d;
}

.message-row {

  display: grid;

  grid-template-columns:
    1fr
    2fr;

  gap: 20px;
}

.message-box {

  padding: 30px;

  color: white;
}

.blue-box {

  background: #0f4c97;

  font-size: 2rem;

  line-height: 1.1;
}

.red-box {

  background: #d81d1d;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.stat-number {

  font-size: clamp(2.5rem, 5vw, 5rem);
}

.stat-text {

  font-size: 1.5rem;

  text-align: right;
}

.sidebar {

  border-left: 4px solid #111;

  padding-left: 25px;
}

.sidebar-header {

  font-size: 2.4rem;

  margin-bottom: 20px;

  color: #d81d1d;
}

.story-card {

  display: grid;

  grid-template-columns:
    100px
    1fr;

  gap: 18px;

  padding: 18px 0;

  border-top: 2px solid #111;

  transition:
    transform 0.18s ease;
}

.story-card:hover {

  transform: translateY(-3px);
}

.story-icon {

  display: flex;

  justify-content: center;
  align-items: center;

  font-size: 3rem;

  color: white;
}

.story-source {

  color: #d81d1d;

  font-size: 0.9rem;

  margin-bottom: 8px;
}

.story-title {

  font-size: 1.8rem;

  line-height: 1.05;

  margin-bottom: 10px;
}

.story-summary {

  font-family: Arial, sans-serif;

  font-size: 1rem;

  line-height: 1.4;
}

.news-ticker {

  width: 100%;

  overflow: hidden;

  background: #050505;

  color: #f5f0e8;

  border-top: 4px solid #111;

  border-bottom: 4px solid #111;

  padding: 14px 0;

  margin-bottom: 35px;
}

.ticker-track {

  white-space: nowrap;

  display: inline-block;

  padding-left: 100%;

  animation:
    tickerScroll 30s linear infinite;

  font-size: 1.1rem;
}

@keyframes tickerScroll {

  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
  }
}

.bottom-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top: 4px solid #111;

  border-bottom: 4px solid #111;

  margin: 0 35px 35px;
}

.bottom-card {

  padding: 30px;

  border-right: 2px solid #111;

  transition:
    transform 0.18s ease;
}

.bottom-card:hover {

  transform: translateY(-3px);
}

.bottom-card:last-child {
  border-right: none;
}

.bottom-card h3 {

  font-size: 2rem;

  margin-bottom: 15px;
}

.bottom-card p {

  font-family: Arial, sans-serif;

  line-height: 1.5;

  margin-bottom: 25px;
}

.bottom-card button {

  border: none;

  background: #d81d1d;

  color: white;

  padding: 14px 20px;

  font-size: 1rem;

  cursor: pointer;
}

.footer {

  background: #050505;

  color: white;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 30px;

  font-size: 1.3rem;
}

@media (max-width: 1200px) {

  .hero-layout {

    grid-template-columns: 1fr;
  }

  .topic-grid {

    grid-template-columns:
      repeat(3, 1fr);
  }

  .bottom-grid {

    grid-template-columns:
      1fr 1fr;
  }
}

@media (max-width: 700px) {

  .topbar {

    grid-template-columns: 1fr;

    text-align: center;
  }

  .topic-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

  .message-row {

    grid-template-columns: 1fr;
  }

  .bottom-grid {

    grid-template-columns: 1fr;
  }
}
