/* ============================
   DB MENU PAGE (ใหม่ทั้งหมด)
============================ */

.DB-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: sans-serif;
}

.DB-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #D4AF37;
}

/* บล็อคเดียว */
.DB-block {
  background: #0A0F1F; /* navy */
  border: 1px solid #D4AF37; /* gold */
  border-radius: 10px;
  padding: 24px 28px;
  color: #ffffff;
}

/* หัวข้อ */
.DB-heading {
  font-size: 20px;
  font-weight: 600;
  color: #D4AF37;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* รายการลิงก์ */
.DB-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.DB-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 16px;
}

.DB-list li span {
  min-width: 24px;
  font-weight: 600;
  color: #D4AF37;
}

.DB-list a {
  color: #D4AF37;
  text-decoration: none;
}

.DB-list a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .DB-block {
    padding: 20px 20px;
  }
  .DB-heading {
    font-size: 19px;
  }
  .DB-list li {
    font-size: 16px;
  }
}
