
:root {
  --bg: #0c0c1b;
  --text: #e6f2ff;
  --accent1: #ff00cc;
  --accent2: #00ffe1;
  --radius: 12px;
  --glow: 0 0 6px var(--accent2), 0 0 10px var(--accent1);
  --font: 'Noto Sans TC', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}
.hero {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  text-align: center;
  padding: 4rem 1rem;
  animation: bgShift 10s ease-in-out infinite;
}
@keyframes bgShift {
  0% { background-position: 0 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
.hero h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: var(--glow);
}
.subtitle {
  font-size: 1rem;
  opacity: 0.85;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent2);
  text-shadow: var(--glow);
}

ul {
  padding-left: 1.2rem;
}
ul li {
  margin-bottom: 0.5rem;
}

.table-wrapper {
  overflow-x: auto;
}
.ai-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text);
}
.ai-table th,
.ai-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ai-table thead {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: #fff;
}
.ai-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ==== Cyberpunk 優化樣式擴充 ==== */
section {
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--accent2);
  text-shadow: var(--glow);
}
h3 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.6rem;
  color: var(--accent1);
  text-shadow: 0 0 4px var(--accent1);
}
ul {
  margin-bottom: 1rem;
}
ul li::marker {
  color: var(--accent1);
}
ul li {
  padding-left: 0.25rem;
  margin-bottom: 0.3rem;
}

.ai-table {
  box-shadow: 0 0 8px rgba(0,255,255,0.1);
}
.ai-table th {
  letter-spacing: 0.5px;
}
.ai-table td {
  font-size: 0.95rem;
}
.ai-table tbody tr:hover {
  background: rgba(0, 255, 255, 0.05);
}

footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
