:root {
  --red: #ed101b;
  --bg: #08090a;
  --card: #121416;
  --text: #fff;
  --muted: #aaa;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    14px Arial,
    sans-serif;
}
.shell {
  width: min(1160px, 94%);
  margin: auto;
}
.top {
  padding: 8px 0;
  background: #151719;
  color: #bbb;
  font-size: 12px;
}
.top .shell,
.head,
.nav,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.head {
  padding: 20px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}
.brand img {
  width: 110px;
  height: 82px;
  object-fit: contain;
}
.brand h1 {
  margin: 0;
  font-size: 24px;
}
.brand small {
  font-weight: 900;
}
.nav-wrap {
  background: #151719;
  border-bottom: 3px solid var(--red);
}
.nav {
  overflow: auto;
}
.nav a {
  padding: 17px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active {
  background: var(--red);
}
.ticker {
  display: flex;
  min-height: 45px;
  overflow: hidden;
  border-bottom: 1px solid #292b2f;
}
.ticker b {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 13px 25px;
  background: var(--red);
}
.ticker-window {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ticker-text {
  display: inline-block;
  min-width: max-content;
  padding: 13px 0;
  white-space: nowrap;
  animation: run 24s linear infinite;
}
@keyframes run {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}
.title {
  padding: 45px 0 20px;
  border-bottom: 2px solid #ddd;
}
.title span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 2px;
}
.title h2 {
  margin: 8px 0;
  font: 700 44px Georgia;
}
.title p {
  color: var(--muted);
}
.toolbar {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 24px 0;
}
.toolbar input,
.toolbar select {
  padding: 12px;
  background: var(--card);
  border: 1px solid #333;
  color: var(--text);
  border-radius: 7px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 50px;
}
.card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid #2b2d31;
  border-radius: 7px;
}
.card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
  background: #08090a;
}
.body {
  padding: 18px;
}
.tag {
  display: inline-block;
  padding: 5px 8px;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
}
.card h3 {
  margin: 12px 0;
  font: 700 23px Georgia;
}
.card a {
  color: var(--text);
  text-decoration: none;
}
.card p {
  color: var(--muted);
  line-height: 1.6;
}
.meta {
  color: #888;
  font-size: 12px;
}
.empty {
  grid-column: 1/-1;
  padding: 90px;
  text-align: center;
  color: var(--muted);
}
footer {
  padding: 30px 0;
  background: #111;
  color: #888;
}
@media (max-width: 720px) {
  .brand h1,
  .brand small {
    display: none;
  }
  .brand img {
    width: 85px;
    height: 65px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .title h2 {
    font-size: 34px;
  }
  .toolbar {
    display: block;
  }
  .toolbar input,
  .toolbar select {
    width: 100%;
    margin-bottom: 8px;
  }
}
