/* style.css - 簡單測試用 CSS */

/* 基本重置與背景 */
body {
  margin: 0;
  padding: 20px;
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  color: #333;
}

/* 測試方塊樣式 */
.test-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 32px;
  max-width: 500px;
  margin: 40px auto;
  text-align: center;
}

.test-box h1 {
  color: #6366f1;           /* indigo-500 */
  margin-bottom: 16px;
  font-size: 2.25rem;
}

.test-box p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4b5563;
}

.test-box .highlight {
  color: #ec4899;           /* pink-500 */
  font-weight: bold;
}

/* hover 效果測試 */
.test-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  transition: all 0.3s ease;
}