body {
  background: #f0f0f0;
  background-image: url('images/starry-sky.jpg');
 background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}


.clock {
  width: 600px; /* 320px;*/
  height: 600px; /* 320px;*/
  border-radius: 50%;
  position: relative;
  background-image: url('images/your-image.jpg'); 
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 0 20px rgba(0,0,0,0.5);
  overflow: hidden;
 /* border: 8px solid #d4af37; */

  /* 🪙 金屬邊框 
  border: 8px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.3),
    0 0 20px rgba(0,0,0,0.5),
    0 0 0 8px linear-gradient(135deg, #999, #ccc, #eee, #ccc, #999);
*/

 /* 🧊 玻璃邊框 
  border: 8px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.3),
    0 0 20px rgba(0,0,0,0.5),
    0 0 12px rgba(255,255,255,0.4);
  backdrop-filter: blur(2px);*/

}

.glass-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.5), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brand {
  position: absolute;
  top: 120px; bottom: auto; /* bottom: 30px; 距離底部位置，可依需要調整 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Arial', sans-serif;
background: linear-gradient(to bottom, #ccc, #999);
-webkit-background-clip: text;
/* color: transparent;*/

  color: #000; 
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0);
  z-index: 0;
}

.center-dot {
  width: 24px; /* 12px; */
  height: 24px; /* 12px; */
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  border-radius: 6px;
}

.hour {
  width: 16px; /* 8px; */
  height: 160px;/* 80px; */
  background: #36bbe3;
  z-index: 3;
}

.minute {
  width: 12px; /* 6px; */
  height: 220px; /* 110px; */
  background: #e2ed15;
  z-index: 2;
}

.second {
  width: 4px; /* 2px;*/
  height: 260px; /* 130px;*/
  background: red;
  z-index: 1;
}

.numbers {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.number {
  position: absolute;
  font-size: 40px; /*20px;*/
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  transform-origin: center center;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  flex-wrap: wrap;
}

.clock-container {
  flex: 0 0 auto;
}

.message {
  max-width: 600px;
  color: #d4af37;
  font-family: 'Arial', sans-serif;
  text-align: left;
}

.message h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.message p {
  font-size: 16px;
  line-height: 1.6;
}


