/* ===========================================
   About Page — Nightfall+FX Theme
   =========================================== */

body.dark {
  --bg:#0b1220;
  --card:#0f172a;
  --ink:#e9f1ff;
  --muted:#9fb2d7;
  --line:rgba(255,255,255,.1);

  margin:0;
  background: linear-gradient(180deg, var(--bg), #0d1628);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Header ---------- */
.vc-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 20px;
  background:var(--card);
  border-bottom:1px solid var(--line);
}

.vc-header .logo {
  font-weight:700;
  font-size:18px;
  color:var(--ink);
}

/* remove nav since we now use Back button only */
.vc-header nav { display:none; }

/* ---------- Hero ---------- */
.hero {
  text-align:center;
  padding:48px 20px 32px;
}
.hero h1 {
  font-size:clamp(26px,4.5vw,40px);
  margin:0 0 10px;
  font-weight:800;
}
.hero p {
  color:var(--muted);
  margin:0;
}

/* ---------- About Content ---------- */
.about-wrap {
  max-width:1000px;
  margin:32px auto;
  padding:0 20px;
  display:grid;
  gap:22px;
}
.about-card {
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.about-card h2 {
  margin:0 0 10px;
  font-size:20px;
  font-weight:700;
}
.about-card p,
.about-card ul {
  margin:0;
  font-size:15px;
  color:var(--ink);
}
.about-card ul { padding-left:18px; line-height:1.6; }

/* ---------- Footer ---------- */
.vc-footer {
  text-align:center;
  padding:16px 12px;
  font-size:14px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

/* ===========================================
   Back Button (vinodjangid07 style)
   =========================================== */
.button {
  width: 110px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  border: 2px solid rgb(255, 239, 94);
  background-color: rgb(255, 239, 94);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.button .text {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(27, 27, 27);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px 0 0 4px;
}

.button .arrow path {
  fill: rgb(19, 19, 19);
}

.button:hover .arrow {
  animation: slide-in-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-8px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.button:active {
  transform: scale(0.96);
}
