/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, rgba(0,200,255,0.10), transparent 30%), #071019;
  color: #e6f7ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.4;
  padding: 18px 12px;
}

/* center main area */
.wrapper {
  max-width: 920px;
  margin: 0 auto;
}

/* ===== Header (dark box glow) ===== */
.header-box {
  background: linear-gradient(180deg,#08090b 0%, #0d1113 100%);
  color: #e6fbff;
  padding: 20px 22px;
  border-radius: 30px;
  text-align: center;
  box-shadow:
    0 8px 30px rgba(0,200,255,0.06),
    0 0 40px rgba(0,200,255,0.12),
    inset 0 -2px 8px rgba(0,0,0,0.6);
  margin-bottom: 18px;
}
.header-box h1 {
  font-size: 28px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0,200,255,0.35);
  margin-bottom: 8px;
}
.header-box .desc {
  color: #bfefff;
  font-size: 14px;
  opacity: 0.95;
}

/* info box under header */
.info {
  background: linear-gradient(180deg, rgba(0,200,255,0.06), rgba(0,200,255,0.02));
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #cceeff;
  border: 1px solid rgba(0,200,255,0.06);
}

/* ===== Card sections ===== */
.card {
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ===== Form ===== */
.form-box form { display: block; }
.form-row { margin-bottom: 10px; }
input[type="text"], input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #e6f7ff;
  outline: none;
  font-size: 15px;
}
input::placeholder { color: rgba(255,255,255,0.45); }

button[type="submit"] {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(90deg,#00c8ff,#3ea1ff);
  color: #041219;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(62,161,255,0.12);
}
button[type="submit"]:active { transform: translateY(1px); }

/* ===== Link list ===== */
.list-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: #eaffff;
}
ul.link-list { list-style: none; padding-left: 0; }
.link-list li {
  padding: 8px 6px;
  border-bottom: 1px dashed rgba(255,255,255,0.03);
}
.link-list li a {
  color: #bfeaff;            /* normal color for links */
  text-decoration: none;
  font-size: 16px;
}
.link-list li a:hover {
  text-decoration: underline;
  color: #00e0ff;
}

/* Make visited links keep readable color (avoid browser purple) */
.link-list li a:visited { color: #9bd6ea; }

/* small info under link - hidden by default, keep minimal */
.link-meta { display: none; }

/* ===== Pagination ===== */
.pagination {
  text-align: center;
  margin-top: 14px;
}
.pagination a {
  display: inline-block;
  margin: 4px 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  color: #dff9ff;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.02);
}
.pagination a.active {
  background: linear-gradient(90deg,#00c8ff,#3ea1ff);
  color: #041219;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,200,255,0.12);
}

/* ===== Footer ===== */
.footer-box {
  background: linear-gradient(180deg,#0a0c0e,#060708);
  color: #bfcfd7;
  padding: 14px 18px;
  border-radius: 30px;
  text-align: center;
  margin-top: 16px;
  box-shadow: 0 8px 30px rgba(0,200,255,0.06);
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .header-box h1 { font-size: 22px; }
  .form-box { padding: 12px; }
  button[type="submit"] { width: 100%; }
  .wrapper { padding: 0 10px; }
}