/* ================= FOOTER BASE ================= */
.site-footer {
  background: #0c111a;
  color: #cbd5e1;
  font-family: "Inter", "Segoe UI", sans-serif;
  padding: 24px 18px;
    border-radius: 18px;
border: 3px solid rgba(100, 150, 255, 0.15);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 10px 30px rgba(0,0,0,0.6);
}

/* Remove side card */
.footer-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ================= HEADINGS ================= */
.footer-col h3 {
  font-size: 15px;
  font-weight: 600;
  color: #3de0d0;
  margin-bottom: 14px;
}

/* ================= ABOUT TEXT ================= */
.footer-left p {
  font-size: 13px;
  line-height: 1.75;
  color: #aab4c8;
  margin-bottom: 12px;
}

/* ================= DIVIDER ================= */
.footer-divider {
  height: 3px;
  background: rgba(100, 150, 255, 0.15);
    margin: 22px -20px;   /* remove side padding */

}

/* ================= DISCLAIMER ================= */
.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  padding: 14px 14px 14px 30px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  position: relative;
  font-weight: 500;
  color: #0f172a;
}

/* Alternating backgrounds */
.footer-center ul li:nth-child(odd) {
  background: linear-gradient(135deg, #35e0d4, #66b3ff);
}

.footer-center ul li:nth-child(even) {
  background: linear-gradient(135deg, #8adcf7, #5f9cff);
}

/* Arrow */
.footer-center ul li::before {
  content: "▶";
  position: absolute;
  left: 10px;
  top: 15px;
  font-size: 9px;
  color: #0f172a;
}

/* ================= LEGAL TITLE ================= */
.footer-right h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 26px;

  background: linear-gradient(
    90deg,
    #ff8a8a 0%,
    #ffc2c2 40%,
    #6ee7f9 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
}

/* Soft glow behind text */
.footer-right h3::after {
  content: "Legal Information";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;

  background: linear-gradient(
    90deg,
    #ff8a8a,
    #6ee7f9
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: blur(18px);
  opacity: 0.6;
  z-index: -1;
}

/* ================= BUTTON GRID ================= */
.footer-right ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================= BUTTON STYLE ================= */
.footer-right a {
  display: block;
  text-align: center;
  padding: 14px 12px;

  font-size: 15px;
  font-weight: 600;

  color: #ffffff;
  text-decoration: none;

  border-radius: 14px;

  background: linear-gradient(135deg, #7d4b4b, #2f6f75);
  border: 2px solid #3de0d0;

  box-shadow:
    0 0 10px rgba(61, 224, 208, 0.25),
    inset 0 0 10px rgba(255,255,255,0.05);

  transition: all .3s ease;
}

/* ================= HOVER EFFECT ================= */
.footer-right a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff7b7b, #3de0d0);
  color: #0f172a;
  box-shadow:
    0 0 18px rgba(61, 224, 208, 0.6);
}


/* ================= COPYRIGHT ================= */
.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #8a94a8;
}