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

:root {
  --bg-main: #050505;
  --bg-soft: #0d0d0d;
  --bg-card: #121212;
  --bg-card-2: #181818;
  --red-main: #d40000;
  --red-bright: #ff1f1f;
  --red-dark: #7a0000;
  --text-main: #ffffff;
  --text-soft: #d8d8d8;
  --text-muted: #a7a7a7;
  --border-red: rgba(212, 0, 0, 0.55);
  --shadow-red: rgba(212, 0, 0, 0.28);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #210000 0%, #080808 45%, #000 100%);
  color: var(--text-main);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  width: 100%;
  background: linear-gradient(135deg, #050505 0%, #111 55%, #260000 100%);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--border-red);
  box-shadow: 0 8px 26px rgba(0,0,0,0.45);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 152px;
  height: 52px;
  border-radius: 12px;
  box-shadow: 0 0 18px var(--shadow-red);
}

.logo span {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-main);
}

.logo span b {
  color: var(--red-bright);
}

.search-box {
  width: 50%;
}

.search-box input {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--border-red);
  border-radius: 50px;
  background: #111;
  color: var(--text-main);
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 0 14px rgba(0,0,0,0.45);
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-box input:focus {
  border-color: var(--red-bright);
  box-shadow: 0 0 18px var(--shadow-red);
}

.header-btn {
  display: flex;
  gap: 15px;
}

.header-btn a {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid var(--border-red);
}

.header-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px var(--shadow-red);
}

.login {
  background: #111;
  color: var(--text-main);
}

.signup {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 40px auto;
}

.hero-card {
  background: linear-gradient(145deg, #121212 0%, #080808 60%, #230000 100%);
  border-radius: 35px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--border-red);
  box-shadow: 0 15px 40px rgba(0,0,0,0.55), 0 0 28px var(--shadow-red);
}

.hero-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  height: 100%;
  border: 1px solid rgba(255, 31, 31, 0.35);
  box-shadow: 0 0 24px rgba(212, 0, 0, 0.25);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.source {
  color: var(--red-bright);
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.hero-content h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 900;
  color: var(--text-main);
  text-shadow: 0 0 18px rgba(212,0,0,0.35);
}

.hero-content p {
  color: var(--text-soft);
  font-size: 18px;
  margin-bottom: 18px;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.button-group a {
  padding: 16px 26px;
  border-radius: 14px;
  font-weight: bold;
  transition: 0.3s;
  border: 1px solid var(--border-red);
}

.button-group a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--shadow-red);
}

.read-btn {
  background: #111;
  color: #fff;
}

.save-btn {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: #fff;
}

.more-title {
  text-align: center;
  font-size: 52px;
  margin: 80px 0 50px;
  font-weight: 900;
  color: var(--text-main);
  text-shadow: 0 0 20px rgba(212,0,0,0.4);
}

.article {
  background: linear-gradient(145deg, #121212 0%, #080808 70%, #1b0000 100%);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--border-red);
  box-shadow: 0 15px 40px rgba(0,0,0,0.55), 0 0 26px rgba(212,0,0,0.2);
}

.article h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #fff;
}

.article p {
  margin-bottom: 28px;
  font-size: 19px;
  color: var(--text-soft);
  text-align: justify;
}

.footer {
  background: linear-gradient(135deg, #050505 0%, #111 55%, #220000 100%);
  margin-top: 80px;
  padding: 60px 8%;
  color: var(--text-main);
  border-top: 1px solid var(--border-red);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 25px;
  margin-bottom: 25px;
  font-weight: 800;
  color: #fff;
}

.footer-column a {
  display: block;
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 18px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: var(--red-bright);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom img {
  width: 90px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 12px var(--shadow-red));
}

.footer-bottom h3 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-bottom p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: 18px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-main), transparent);
  margin: 30px 0;
}

.footer-bottom small {
  color: var(--text-muted);
  font-size: 15px;
}

/* Responsive Queries */
@media(max-width:1200px) {
  .footer-top {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:992px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .search-box {
    display: none;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .more-title {
    font-size: 38px;
  }
  .article {
    padding: 30px;
  }
  .article h2 {
    font-size: 32px;
  }
}

@media(max-width:768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-column h4 {
    font-size: 24px;
  }
  .footer-column a {
    font-size: 18px;
  }
}

@media(max-width:600px) {
  header {
    padding: 15px;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .article p {
    font-size: 17px;
  }
  .button-group {
    flex-direction: column;
  }
}