:root {
  --brand-blue: #0078d7;
  --brand-orange: #ff9800;
  --brand-bg: #f0f4ff;
  --brand-radius: 18px;
}
body {
  font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', 'Heiti TC', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.7;
  background: linear-gradient(120deg, #f0f4ff 0%, #fff 100%);
  color: #222;
  font-size: 1.08rem;
}
@media (max-width: 600px) {
  .navbar, .footer, .blog, .category1 { border-radius: 0 !important; }
  .summary-table th, .summary-table td { font-size: 0.95rem; padding: 0.5rem 0.2rem; }
}
button, .blog-categories button, .category1-cta button, .hero button, .player-card button, .must-read button, a.btn, .index-cta a, .category2-cta a, .event-cta a, .card a {
  box-shadow: 0 2px 12px #0002;
  border-radius: 24px;
  transition: box-shadow 0.18s, transform 0.18s, background 0.2s;
  position: relative;
}
button:hover, .blog-categories button:hover, .category1-cta button:hover, .hero button:hover, .player-card button:hover, .must-read button:hover, a.btn:hover, .index-cta a:hover, .category2-cta a:hover, .event-cta a:hover, .card a:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 6px 24px #0078d744, 0 2px 12px #ff980033;
  z-index: 2;
}
.customer-service {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2147483646;
}
.customer-service button {
  background: linear-gradient(135deg, #ff9800 60%, #ffb74d 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 1.5rem;
  border-radius: 50%;
  box-shadow: 0 6px 24px #ff980055, 0 1.5px 8px #0002;
  font-size: 1.7rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.customer-service button:hover {
  background: linear-gradient(135deg, #ffb74d 60%, #ff9800 100%);
  transform: scale(1.12);
  box-shadow: 0 10px 32px #ff980088, 0 2px 12px #0003;
}
.customer-service button::before {
  content: none !important;
  display: none !important;
}
#cs-bubble {
  animation: cs-float 1.8s infinite ease-in-out;
  position: absolute;
  bottom: 70px;
  right: 0;
  z-index: 2147483647;
  background: #fff;
  color: #222;
  padding: 0.95rem 2.5rem 0.95rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0078d744;
  font-size: 1.08rem;
  font-weight: bold;
  min-width: 220px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
#cs-bubble::after {
  content: '';
  position: absolute;
  right: 32px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  filter: drop-shadow(0 2px 4px #0078d744);
}
#cs-bubble-close {
  position: absolute;
  top: 7px;
  right: 10px;
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 1.15rem;
  color: #888;
  cursor: pointer;
  border-radius: 50%;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #0001;
  z-index: 2;
}
#cs-bubble-close:hover {
  background: #ff9800;
  color: #fff;
  box-shadow: 0 4px 16px #ff980044;
}
#cs-bubble span {
  flex: 1;
  text-align: center;
  margin-right: 2.2rem;
}
@keyframes cs-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}
@media (max-width: 600px) {
  .customer-service button {
    padding: 0.7rem 0.8rem;
    font-size: 1.1rem;
  }
}
a, button {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover, button:hover {
  box-shadow: 0 4px 16px #0078d722;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px #0078d733, 0 2px 12px #ff980033;
  padding: 2.2rem 1.7rem;
  margin: 2.5rem 0;
  transition: box-shadow 0.22s, transform 0.18s;
  border: 1.5px solid #e0e7ef;
}
.card:hover {
  box-shadow: 0 12px 40px #0078d744, 0 4px 20px #ff980044;
  transform: translateY(-8px) scale(1.03);
}
@media (max-width: 700px) {
  .card {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
  }
  .summary-table {
    font-size: 0.98rem;
    overflow-x: auto;
    display: block;
  }
}
.back-to-top {
  position: fixed;
  right: 38px;
  bottom: 180px;
  z-index: 2147483647;
  display: none;
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: 16px;
  width: 54px;
  height: 64px;
  box-shadow: 0 2px 12px #0078d744;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}
.back-to-top span:first-child {
  font-size: 2rem;
  line-height: 1;
}
.back-to-top span:last-child {
  font-size: 0.98rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 0.1rem;
}
.summary-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0078d722;
  margin: 1.5rem 0 2.2rem 0;
  overflow: hidden;
}
.summary-table th {
  background: #f0f4ff;
  color: #0078d7;
  font-weight: bold;
  padding: 0.9em 0.5em;
  border-bottom: 2px solid #e0e7ef;
}
.summary-table td {
  padding: 0.8em 0.5em;
  border-bottom: 1px solid #e0e7ef;
  text-align: center;
}
.summary-table tr:last-child td {
  border-bottom: none;
}
.summary-table th:first-child, .summary-table td:first-child {
  border-left: none;
}
.summary-table th, .summary-table td {
  border-right: 1px solid #e0e7ef;
}
.summary-table th:last-child, .summary-table td:last-child {
  border-right: none;
}
.summary-table tr:nth-child(even) {
  background: #f7faff;
}
.summary-table tr:hover {
  background: #e3f0ff;
}
.category1 h1, .category1 h2, .category1 h3 {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: bold;
}
.category1 h1 {
  font-size: 2.1rem;
  color: #0078d7;
}
.category1 h2 {
  font-size: 1.5rem;
  color: #ff9800;
}
.category1 h3 {
  font-size: 1.18rem;
  color: #222;
}
.category1 .card {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.category1-cta .btn {
  width: 100%;
  max-width: 340px;
  font-size: 1.22rem;
  padding: 1.1rem 0;
  margin: 0.7rem auto 0 auto;
  border-radius: 32px;
  box-shadow: 0 4px 16px #ff980044;
} 