.corner-links i {
  font-size: 20px;
  color: currentColor;
}



/* TOP LEFT SOCIAL BUTTONS */
.corner-links {
  position: fixed;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 0.6rem;
  z-index: 99999;
  pointer-events: auto;
}


.corner-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #67e8f9;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.corner-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(103,232,249,0.5);
}

.corner-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}




/* CATEGORY HEADER / DESCRIPTION */
.category-header {
  max-width: 800px;
  margin: 1.5rem auto 1.2rem;
  padding: 1.4rem 1.6rem;
  text-align: center;
  border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
  /* backdrop-filter: blur(12px);  REMOVE */
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.category-header h2 {
  font-size: 1.6rem;
  color: #67e8f9;
  margin-bottom: 0.6rem;
}

.category-header p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}



/* TOP NAV */
.top-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

/* HOME BUTTON */
.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #67e8f9;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease;
  will-change: transform;
}

.home-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.5);
}





.notice {
  text-align: center;
  margin: 2.2rem 1rem;
  font-size: 1.1rem; /* ⬅ bigger text */
  line-height: 1.6;
  opacity: 0.95;
}


.notice-link {
  color: #67e8f9;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 0 2px;
  transition: color 0.2s ease;
}

.notice-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.notice-link:hover {
  color: #22d3ee;
}



/* Logo link */
.logo {
  text-decoration: none;
  display: inline-block;
}

.logo h1 {
  color: #67e8f9;
  transition: opacity 0.2s ease;
}

.logo:hover h1 {
  opacity: 0.75;
}


/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
    transform: translateZ(0);
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

/* =========================
   HERO / HEADER
========================= */
.hero {
  text-align: center;
  padding: 3.5rem 1rem 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  color: #67e8f9;
}

.hero p {
  margin-top: 0.6rem;
  opacity: 0.8;
}

/* =========================
   NOTICE TEXT
========================= */
.notice {
  text-align: center;
  margin: 1.5rem 1rem;
  font-size: 18px;
  opacity: 0.85;
}

.notice span {
  color: #67e8f9;
  font-weight: 600;
}

/* =========================
   HOME PAGE GRID (CARDS)
========================= */
.grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  text-decoration: none;
  color: inherit;
  padding: 1.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.card .icon {
  font-size: 2.2rem;
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #67e8f9;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =========================
   CATEGORY NAV (TABS)
========================= */
.categories {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.categories a {
  text-decoration: none;
  color: #020617;
  background: #67e8f9;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.categories a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.6);
}

.categories a.active {
  background: #22d3ee;
}

/* =========================
   LIST PAGE LINKS
========================= */
.list {
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
 
}

.list-item {
    text-align: center;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 1.05rem;
  padding: 1.3rem 1.8rem; 
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  /* backdrop-filter: blur(10px); REMOVE */
  transition: transform 0.25s ease;
  will-change: transform;
}

.list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.35);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
