/* ===============================
   JENTERA PEJUANG – RACING THEME
   Mobile-first, SEO friendly
================================ */

:root {
  --bg: #0b0b0b;
  --card: #141414;
  --red: #e10600;
  --red-soft: #ff3b30;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --border: #222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
}

/* ===============================
   LAYOUT
================================ */
.wrap {
  max-width: 1000px;
  margin: auto;
  padding: 14px;
}

/* ===============================
   HEADER
================================ */
header.site-header {
  padding: 14px 10px 18px;
  border-bottom: 3px solid var(--red);
  margin-bottom: 18px;
}

.site-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--red);
}

.site-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===============================
   NEWS CARD (HOMEPAGE)
================================ */
.news-card {
  background: linear-gradient(180deg, #161616, #111);
  border-left: 5px solid var(--red);
  border-radius: 10px;
  padding: 14px 14px 16px;
  margin-bottom: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.4);
}

.news-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.news-title {
  font-size: 17px;
  font-weight: 800;
  margin: 6px 0;
}

.news-title a {
  color: var(--text);
  text-decoration: none;
}

.news-title a:hover {
  color: var(--red-soft);
}

.news-excerpt {
  font-size: 14px;
  color: var(--muted);
}

/* ===============================
   ARTICLE PAGE
================================ */
.article-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.3;
  margin-bottom: 8px;
}

.article-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero {
  width: 100%;
  border-radius: 12px;
  margin: 14px 0 18px;
}

/* CONTENT */
.content h2 {
  color: var(--red);
  font-size: 18px;
  margin-top: 26px;
}

.content h3 {
  color: #ff6b60;
  font-size: 15px;
  margin-top: 20px;
}

.content p,
.content li {
  font-size: 15px;
  color: var(--text);
}

.content ul {
  padding-left: 18px;
}

/* ===============================
   SPONSOR BUTTON
================================ */
.btn-sponsor {
  display: inline-block;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(225,6,0,.4);
}

/* ===============================
   FOOTER
================================ */
footer {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ===============================
   DESKTOP ENHANCEMENT
================================ */
@media (min-width: 768px) {
  .news-title {
    font-size: 18px;
  }

  .article-title {
    font-size: 28px;
  }
}
.news-category.breaking {
  background: linear-gradient(135deg, #ffcc00, #ff9800);
  color: #000;
}