/* ==========================================================================
   electrify.tw Apps — 共用設計語言 (shared design language)
   單一引入：<link rel="stylesheet" href="/app/common.css">
   命名空間一律 etw- / --etw- 前綴，避免與各 app 既有樣式衝突。
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* 品牌色票（主色 electrify 藍 #12b7ee） */
  --etw-blue-50:  #e7f7fd;
  --etw-blue-100: #c4ecfa;
  --etw-blue-500: #12b7ee;   /* 主色 */
  --etw-blue-600: #0e9fd1;
  --etw-blue-700: #0b83ad;
  --etw-blue-900: #075974;

  /* 中性灰（淺/深皆可讀） */
  --etw-ink:        #111827;
  --etw-muted:      #6b7280;
  --etw-muted-soft: #9ca3af;

  /* 形狀與陰影 */
  --etw-radius:    14px;
  --etw-radius-sm: 8px;
  --etw-shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --etw-shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);

  --etw-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
              "Helvetica Neue", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
}

/* ── 共用 Footer（主題中性，淺色與深色背景皆可讀） ───────────────────── */
.etw-footer {
  border-top: 1px solid rgba(128, 128, 128, 0.22);
  padding: 1.75rem 1.25rem;
  text-align: center;
  font-family: var(--etw-font);
  line-height: 1.6;
}

.etw-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.etw-footer-logo {
  display: inline-block;
  line-height: 0;
}

.etw-footer-logo img {
  height: 26px;
  width: auto;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}

.etw-footer-logo:hover img { opacity: 1; }

.etw-footer-copy {
  font-size: 0.78rem;
  color: #8a8f98;            /* 中灰，白底與深底都讀得清楚 */
  letter-spacing: 0.02em;
  margin: 0;
}

.etw-footer-copy a {
  color: var(--etw-blue-600);
  text-decoration: none;
  font-weight: 600;
}

/* 深色背景時用較亮的主色，確保對比 */
.etw-footer--dark .etw-footer-copy a { color: var(--etw-blue-500); }

.etw-footer-copy a:hover { text-decoration: underline; }

.etw-footer-note {
  font-size: 0.7rem;
  color: #8a8f98;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.85;
}
