body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #0a1836, #112b5c, #09152d);
  color: #ffffff;
  line-height: 1.65;
}

.container {
  max-width: 1050px;
  margin: auto;
  padding: 20px;
}

.hero {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeIn 1.2s ease;
}

.hero img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.box {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 22px;
  box-shadow: 0 0 20px rgba(0,0,0,0.18);
  animation: riseUp 0.8s ease;
}

h1, h2, h3 {
  color: #ffd54a;
  margin-top: 0;
}

p {
  margin-bottom: 14px;
}

a {
  color: #ffd54a;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  background: #ffd54a;
  color: #0b1b3b;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  margin-right: 10px;
  font-weight: bold;
  transition: all 0.25s ease;
}

.btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.question {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.links p {
  margin: 10px 0;
}

.intro {
  font-size: 1.05rem;
}

.tldr {
  background: rgba(255,255,255,0.12);
  padding: 14px 16px;
  border-left: 4px solid #ffd54a;
  border-radius: 8px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.15rem;
  color: #e8eefc;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.link-list a {
  color: #ffd54a;
  text-decoration: none;
  font-weight: bold;
}

.link-list a:hover {
  text-decoration: underline;
}

.highlight {
  color: #ffd54a;
  font-weight: bold;
}

.footer {
  text-align: center;
  font-size: 0.95rem;
  color: #d8def0;
  padding: 30px 20px 40px;
}

.note {
  font-size: 0.95rem;
  color: #dfe7ff;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid #ffd54a;
  padding: 14px 16px;
  border-radius: 8px;
  margin-top: 20px;
}

.question-block {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.question-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .container {
    padding: 14px;
  }

  .box {
    padding: 18px;
  }

  .btn {
    display: block;
    text-align: center;
    margin-right: 0;
  }

  .cta-buttons {
    flex-direction: column;
  }
}