/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== BODY ===== */
body {
  background: linear-gradient(180deg, #f7f9ff, #eef2ff);
  color: #1f2937;
  line-height: 1.8;
}

/* ===== HEADER (PREMIUM HERO) ===== */
header {
  background: linear-gradient(135deg, #4f46e5, #3b82f6, #06b6d4);
  color: #fff;
  padding: 45px 20px;
  text-align: center;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

header p {
  font-size: 17px;
  opacity: 0.95;
}

/* ===== MAIN ===== */
main {
  max-width: 1150px;
  margin: -60px auto 30px;
  padding: 0 15px;
}

/* ===== SECTION CARDS ===== */
section {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  margin-bottom: 30px;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

section:hover {
  transform: translateY(-4px);
}

section h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #4338ca;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  border-radius: 10px;
}

section h3 {
  margin-top: 18px;
  font-size: 18px;
  color: #2563eb;
}

section p {
  margin-bottom: 14px;
  font-size: 15.5px;
  color: #374151;
}

/* ===== LISTS ===== */
ul, ol {
  margin-left: 22px;
  margin-top: 12px;
}

ul li, ol li {
  margin-bottom: 9px;
  font-size: 15px;
}

/* ===== RESULT LIST (INDEX) ===== */
#resultList {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

#resultList li {
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}


#resultList li:hover::before {
  opacity: 0.08;
}

#resultList li:hover {
  transform: translateY(-6px) scale(1.02);
}

#resultList a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
}

#resultList p {
  font-size: 14px;
  margin-top: 6px;
  color: #374151;
}

/* ===== TAG ===== */
.tag {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 6px;
}

/* ===== BUTTONS (PREMIUM) ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(79,70,229,0.4);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px rgba(34,211,238,0.5);
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  font-size: 14.5px;
}

table th {
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  color: #fff;
  padding: 14px;
  text-align: left;
}

table td {
  padding: 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

table tr:hover td {
  background: #f1f5ff;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1e293b, #020617);
  color: #c7d2fe;
  text-align: center;
  padding: 30px 15px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

footer p {
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header h1 {
    font-size: 30px;
  }

  section h2 {
    font-size: 22px;
  }

  main {
    margin-top: -40px;
  }
}
#resultList li {
  position: relative;
}

#resultList li a,
#resultList li p {
  position: relative;
  z-index: 10;
}
#resultList li {
  position: relative;
}

#resultList li a {
  display: block;
  color: #1e40af;
  font-weight: 600;
  text-decoration: none;
}

#resultList li a:hover {
  text-decoration: underline;
}
/* ===== FORCE SHOW HOMEPAGE LINKS ===== */

#resultList {
  display: block !important;
}

#resultList li {
  position: relative;
  background: #ffffff;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

#resultList li a {
  display: block !important;
  color: #1e40af !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

#resultList li a:hover {
  text-decoration: underline !important;
}
#resultList li,
#resultList li a {
  all: revert;
  display: block;
}
/* ===============================
   PREMIUM HOMEPAGE RESULT CARDS
   (SAFE – NO CLICK ISSUE)
================================ */

#resultList {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

#resultList li {
  background: linear-gradient(145deg, #ffffff, #f3f6ff);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#resultList li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Title link */
#resultList li a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  margin-bottom: 8px;
}

#resultList li a:hover {
  text-decoration: underline;
}

/* Description / status */
#resultList li p {
  font-size: 14px;
  color: #374151;
  margin: 0;
}

/* Optional badge */
.result-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border-radius: 999px;
}
/* =====================================
   ULTRA PREMIUM RESULT PORTAL DESIGN
   SAFE • MODERN • CLICK FRIENDLY
===================================== */

#resultList {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

/* Card */
#resultList li {
  background: linear-gradient(135deg, #ffffff, #f1f5ff);
  border-radius: 20px;
  padding: 22px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(99,102,241,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient glow on hover */
#resultList li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(99,102,241,0.15),
    rgba(34,211,238,0.15)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

#resultList li:hover::after {
  opacity: 1;
}

#resultList li:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(99,102,241,0.2);
}

/* Title link */
#resultList li a {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

#resultList li a:hover {
  text-decoration: underline;
}

/* Subtitle / status */
#resultList li p {
  font-size: 14.5px;
  color: #374151;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Premium badge (optional) */
.result-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(99,102,241,0.45);
}

/* Mobile polish */
@media (max-width: 600px) {
  #resultList {
    grid-template-columns: 1fr;
  }

  #resultList li {
    padding: 18px;
  }

  #resultList li a {
    font-size: 17px;
  }
}
/* ---------- NAVBAR ---------- */
.navbar {
  background: #004aad;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hamburger menu for mobile */
.menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
}

/* ---------- MAIN CONTAINER ---------- */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 15px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
}

.card h2 {
  color: #004aad;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.card ul li a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 500;
}

.card ul li a:hover {
  text-decoration: underline;
}

.highlight {
  border-left: 5px solid #ff5722;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  background: #004aad;
  color: white;
  padding: 10px;
  margin-top: 20px;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #004aad;
    position: absolute;
    top: 50px;
    right: 0;
    width: 180px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}
