body {
  margin: 0;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* 全体ウィジェット */
.widget {
  width: 360px;
  padding: 25px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(25px);
  color: white;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* 時計部分 */
.clock-area {
  text-align: center;
  margin-bottom: 25px;
}

.time {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -2px;
}

.date {
  font-size: 18px;
  opacity: 0.8;
  margin-top: -5px;
}

/* 天気部分 */
.weather-area {
  background: rgba(30, 80, 120, 0.5);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

.weather-title {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.weather-main {
  font-size: 22px;
  font-weight: 500;
}

.temp {
  font-size: 48px;
  font-weight: 700;
  margin-top: 5px;
}
