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

:root {
  --bg-dark: #120000;
  --bg-deep: #1a0505;
  --card-dark: #220707;
  --red-main: #d40000;
  --red-dark: #8b0000;
  --red-soft: #ff2a2a;
  --gold-main: #d4af37;
  --gold-light: #ffd76a;
  --gold-dark: #9b7418;
  --text-light: #fff7df;
  --text-muted: #e8cfa0;
  --border-gold: rgba(212, 175, 55, 0.45);
  --shadow-red: rgba(212, 0, 0, 0.28);
  --shadow-gold: rgba(212, 175, 55, 0.25);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(212, 0, 0, 0.28), transparent 35%),
    linear-gradient(135deg, #120000 0%, #1a0505 48%, #2b0000 100%);
  color: var(--text-light);
  line-height: 1.7;
}

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

header {
  width: 100%;
  background: linear-gradient(90deg, #120000 0%, #5a0000 48%, #b8860b 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-gold);
  box-shadow: 0 8px 28px var(--shadow-red);
}

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

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

.logo span {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(212, 0, 0, 0.65);
}

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

.search-box {
  width: 50%;
}

.search-box input {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  background: rgba(18, 0, 0, 0.78);
  color: var(--text-light);
  font-size: 16px;
  outline: none;
  box-shadow: inset 0 0 12px rgba(212, 175, 55, 0.12);
}

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

.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(--gold-main);
}

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

.login {
  background: linear-gradient(135deg, #3b0808, #120000);
  color: var(--gold-light);
}

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

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

.hero-card {
  background: linear-gradient(145deg, rgba(34, 7, 7, 0.96), rgba(18, 0, 0, 0.96));
  border-radius: 35px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45), 0 0 24px var(--shadow-red);
}

.hero-image img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
  height: 100%;
  border: 1px solid var(--gold-main);
  box-shadow: 0 0 24px var(--shadow-gold);
}

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

.source {
  color: var(--gold-light);
  margin-bottom: 15px;
  font-size: 15px;
}

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

.hero-content p {
  color: var(--text-muted);
  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(--gold-main);
}

.read-btn {
  background: linear-gradient(135deg, #3b0808, #120000);
  color: var(--gold-light);
}

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

.more-title {
  text-align: center;
  font-size: 52px;
  margin: 80px 0 50px;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 4px 18px rgba(212, 0, 0, 0.7);
}

.article {
  background: linear-gradient(145deg, rgba(34, 7, 7, 0.98), rgba(18, 0, 0, 0.98));
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45), 0 0 24px var(--shadow-red);
}

.article h2 {
  font-size: 42px;
  margin-bottom: 25px;
  color: var(--gold-light);
  text-shadow: 0 3px 14px rgba(212, 0, 0, 0.6);
}

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

.article strong {
  color: var(--gold-light);
}

.article em {
  color: #ffb3b3;
}

.footer {
  background: linear-gradient(180deg, #220707 0%, #120000 100%);
  margin-top: 80px;
  padding: 60px 8%;
  color: var(--text-light);
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -10px 30px rgba(212, 0, 0, 0.18);
}

.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: var(--gold-light);
}

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

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

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

.footer-bottom img {
  width: 90px;
  margin-bottom: 15px;
  border-radius: 14px;
  border: 1px solid var(--gold-main);
  box-shadow: 0 0 18px var(--shadow-gold);
}

.footer-bottom h3 {
  font-size: 38px;
  margin-bottom: 10px;
  color: var(--gold-light);
}

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

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-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;
  }
}
