:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
}

#root {
  width: 100%;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}
/* 灯塔大屏幕样式 */
.lighthouse-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* 背景效果 */
.lighthouse-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/light-off.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 视频背景 */
.lighthouse-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* 倒计时样式 */
.countdown-timer {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.countdown-display {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 48px;
  font-weight: bold;
  font-family: 'Digital', monospace;
  letter-spacing: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: countdownGlow 2s ease-in-out infinite;
}

@keyframes countdownGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(100, 200, 255, 0.4);
  }
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

/* 位置占位点样式 - 显示60个预设位置 */
.position-placeholder {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(100, 200, 255, 0.8) 40%, 
    transparent 70%);
  border-radius: 50%;
  z-index: 15;
  box-shadow: 
    0 0 15px rgba(100, 200, 255, 1),
    0 0 30px rgba(100, 200, 255, 0.6),
    0 0 45px rgba(100, 200, 255, 0.3);
  animation: placeholderPulse 2s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* 固定光点样式 - 已到达的头像 */
.fixed-light-point {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 20;
}

.light-point-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(100, 200, 255, 0.8) 40%, 
    transparent 70%);
  border-radius: 50%;
  box-shadow: 
    0 0 15px rgba(100, 200, 255, 1),
    0 0 30px rgba(100, 200, 255, 0.6),
    0 0 45px rgba(100, 200, 255, 0.3);
  animation: twinkleLight 2s ease-in-out infinite;
  animation-delay: calc(var(--twinkle-phase) * 1s);
}

@keyframes twinkleLight {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* 海面闪烁效果 */
.ocean-sparkles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%; /* 提高高度以覆盖山丘 */
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
}

.sparkle {
  position: absolute;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(200, 230, 255, 0.8) 50%, 
    transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 230, 255, 0.8);
  animation: sparkle-animation 3s ease-in-out infinite;
}

@keyframes sparkle-animation {
  0%, 100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 光点分布 - 山丘区域密集 + 底部海面 */
.sparkle-0 { left: 10%; bottom: 15%; animation-delay: 0s; animation-duration: 2.5s; }
.sparkle-1 { left: 20%; bottom: 18%; animation-delay: 0.3s; animation-duration: 3s; }
.sparkle-2 { left: 30%; bottom: 12%; animation-delay: 0.6s; animation-duration: 2.8s; }
.sparkle-3 { left: 40%; bottom: 20%; animation-delay: 0.9s; animation-duration: 3.2s; }
.sparkle-4 { left: 50%; bottom: 16%; animation-delay: 1.2s; animation-duration: 2.6s; }
.sparkle-5 { left: 60%; bottom: 14%; animation-delay: 1.5s; animation-duration: 3.1s; }
.sparkle-6 { left: 68%; bottom: 50%; animation-delay: 1.8s; animation-duration: 2.7s; }
.sparkle-7 { left: 73%; bottom: 44%; animation-delay: 2.1s; animation-duration: 2.9s; }
.sparkle-8 { left: 78%; bottom: 52%; animation-delay: 2.4s; animation-duration: 3.3s; }
.sparkle-9 { left: 83%; bottom: 46%; animation-delay: 2.7s; animation-duration: 2.5s; }
.sparkle-10 { left: 88%; bottom: 41%; animation-delay: 0.2s; animation-duration: 3s; }
.sparkle-11 { left: 72%; bottom: 37%; animation-delay: 0.5s; animation-duration: 2.8s; }
.sparkle-12 { left: 77%; bottom: 43%; animation-delay: 0.8s; animation-duration: 3.2s; }
.sparkle-13 { left: 82%; bottom: 49%; animation-delay: 1.1s; animation-duration: 2.6s; }
.sparkle-14 { left: 87%; bottom: 45%; animation-delay: 1.4s; animation-duration: 3.1s; }
.sparkle-15 { left: 15%; bottom: 22%; animation-delay: 1.7s; animation-duration: 2.7s; }
.sparkle-16 { left: 25%; bottom: 10%; animation-delay: 2s; animation-duration: 2.9s; }
.sparkle-17 { left: 35%; bottom: 19%; animation-delay: 2.3s; animation-duration: 3.3s; }
.sparkle-18 { left: 45%; bottom: 13%; animation-delay: 2.6s; animation-duration: 2.5s; }
.sparkle-19 { left: 55%; bottom: 17%; animation-delay: 0.1s; animation-duration: 3s; }
.sparkle-20 { left: 86%; bottom: 48%; animation-delay: 0.4s; animation-duration: 2.8s; }
.sparkle-21 { left: 69%; bottom: 42%; animation-delay: 0.7s; animation-duration: 3.2s; }
.sparkle-22 { left: 74%; bottom: 46%; animation-delay: 1s; animation-duration: 2.6s; }
.sparkle-23 { left: 79%; bottom: 38%; animation-delay: 1.3s; animation-duration: 3.1s; }
.sparkle-24 { left: 84%; bottom: 50%; animation-delay: 1.6s; animation-duration: 2.7s; }
.sparkle-25 { left: 89%; bottom: 43%; animation-delay: 1.9s; animation-duration: 2.9s; }
.sparkle-26 { left: 67%; bottom: 36%; animation-delay: 2.2s; animation-duration: 3.3s; }
.sparkle-27 { left: 72%; bottom: 48%; animation-delay: 2.5s; animation-duration: 2.5s; }
.sparkle-28 { left: 77%; bottom: 41%; animation-delay: 2.8s; animation-duration: 3s; }
.sparkle-29 { left: 82%; bottom: 53%; animation-delay: 0.15s; animation-duration: 2.8s; }
.sparkle-30 { left: 87%; bottom: 39%; animation-delay: 0.35s; animation-duration: 3.1s; }
.sparkle-31 { left: 70%; bottom: 45%; animation-delay: 0.55s; animation-duration: 2.7s; }
.sparkle-32 { left: 75%; bottom: 50%; animation-delay: 0.75s; animation-duration: 3.3s; }
.sparkle-33 { left: 80%; bottom: 37%; animation-delay: 0.95s; animation-duration: 2.5s; }
.sparkle-34 { left: 85%; bottom: 44%; animation-delay: 1.15s; animation-duration: 3s; }
.sparkle-35 { left: 90%; bottom: 49%; animation-delay: 1.35s; animation-duration: 2.8s; }
.sparkle-36 { left: 73%; bottom: 35%; animation-delay: 1.55s; animation-duration: 3.2s; }
.sparkle-37 { left: 78%; bottom: 47%; animation-delay: 1.75s; animation-duration: 2.6s; }
.sparkle-38 { left: 83%; bottom: 40%; animation-delay: 1.95s; animation-duration: 3.1s; }
.sparkle-39 { left: 88%; bottom: 52%; animation-delay: 2.15s; animation-duration: 2.7s; }
.sparkle-40 { left: 12%; bottom: 25%; animation-delay: 2.35s; animation-duration: 2.9s; }
.sparkle-41 { left: 22%; bottom: 15%; animation-delay: 2.55s; animation-duration: 3.3s; }
.sparkle-42 { left: 32%; bottom: 21%; animation-delay: 2.75s; animation-duration: 2.5s; }
.sparkle-43 { left: 42%; bottom: 11%; animation-delay: 0.25s; animation-duration: 3s; }
.sparkle-44 { left: 52%; bottom: 19%; animation-delay: 0.45s; animation-duration: 2.8s; }
.sparkle-45 { left: 68%; bottom: 49%; animation-delay: 0.65s; animation-duration: 3.2s; }
.sparkle-46 { left: 73%; bottom: 40%; animation-delay: 0.85s; animation-duration: 2.6s; }
.sparkle-47 { left: 78%; bottom: 36%; animation-delay: 1.05s; animation-duration: 3.1s; }
.sparkle-48 { left: 83%; bottom: 48%; animation-delay: 1.25s; animation-duration: 2.7s; }
.sparkle-49 { left: 88%; bottom: 44%; animation-delay: 1.45s; animation-duration: 2.9s; }
.sparkle-50 { left: 8%; bottom: 18%; animation-delay: 1.65s; animation-duration: 3.3s; }
.sparkle-51 { left: 18%; bottom: 12%; animation-delay: 1.85s; animation-duration: 2.5s; }
.sparkle-52 { left: 28%; bottom: 23%; animation-delay: 2.05s; animation-duration: 3s; }
.sparkle-53 { left: 38%; bottom: 14%; animation-delay: 2.25s; animation-duration: 2.8s; }
.sparkle-54 { left: 48%; bottom: 20%; animation-delay: 2.45s; animation-duration: 3.2s; }
.sparkle-55 { left: 58%; bottom: 16%; animation-delay: 2.65s; animation-duration: 2.6s; }
.sparkle-56 { left: 71%; bottom: 39%; animation-delay: 2.85s; animation-duration: 3.1s; }
.sparkle-57 { left: 76%; bottom: 51%; animation-delay: 0.05s; animation-duration: 2.7s; }
.sparkle-58 { left: 81%; bottom: 35%; animation-delay: 0.35s; animation-duration: 2.9s; }
.sparkle-59 { left: 86%; bottom: 47%; animation-delay: 0.65s; animation-duration: 3.3s; }
.sparkle-60 { left: 14%; bottom: 17%; animation-delay: 0.95s; animation-duration: 2.5s; }
.sparkle-61 { left: 24%; bottom: 22%; animation-delay: 1.25s; animation-duration: 3s; }
.sparkle-62 { left: 34%; bottom: 13%; animation-delay: 1.55s; animation-duration: 2.8s; }
.sparkle-63 { left: 44%; bottom: 18%; animation-delay: 1.85s; animation-duration: 3.2s; }
.sparkle-64 { left: 54%; bottom: 15%; animation-delay: 2.15s; animation-duration: 2.6s; }
.sparkle-65 { left: 71%; bottom: 49%; animation-delay: 2.45s; animation-duration: 3.1s; }
.sparkle-66 { left: 76%; bottom: 35%; animation-delay: 2.75s; animation-duration: 2.7s; }
.sparkle-67 { left: 81%; bottom: 47%; animation-delay: 0.15s; animation-duration: 2.9s; }
.sparkle-68 { left: 86%; bottom: 40%; animation-delay: 0.45s; animation-duration: 3.3s; }
.sparkle-69 { left: 69%; bottom: 44%; animation-delay: 0.75s; animation-duration: 2.5s; }
.sparkle-70 { left: 74%; bottom: 52%; animation-delay: 1.05s; animation-duration: 3s; }
.sparkle-71 { left: 79%; bottom: 37%; animation-delay: 1.35s; animation-duration: 2.8s; }
.sparkle-72 { left: 84%; bottom: 46%; animation-delay: 1.65s; animation-duration: 3.2s; }
.sparkle-73 { left: 89%; bottom: 39%; animation-delay: 1.95s; animation-duration: 2.6s; }
.sparkle-74 { left: 16%; bottom: 20%; animation-delay: 2.25s; animation-duration: 3.1s; }
.sparkle-75 { left: 26%; bottom: 11%; animation-delay: 2.55s; animation-duration: 2.7s; }
.sparkle-76 { left: 36%; bottom: 24%; animation-delay: 2.85s; animation-duration: 2.9s; }
.sparkle-77 { left: 46%; bottom: 16%; animation-delay: 0.05s; animation-duration: 3.3s; }
.sparkle-78 { left: 56%; bottom: 21%; animation-delay: 0.35s; animation-duration: 2.5s; }
.sparkle-79 { left: 70%; bottom: 40%; animation-delay: 0.65s; animation-duration: 3s; }

/* 二维码部分 */
.qr-section {
  position: absolute;
  left: 50px;
  top: 50px;
  z-index: 100;
}

.qr-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.qr-code {
  width: 200px;
  height: 200px;
  border-radius: 10px;
}

.qr-text {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

/* 灯塔 */
.lighthouse-wrapper {
  position: absolute;
  right: 20%;
  bottom: 20%;
  width: 200px;
  height: 400px;
  z-index: 50;
}

.lighthouse {
  position: relative;
  width: 100%;
  height: 100%;
}

.lighthouse-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 300px;
  background: linear-gradient(to bottom, #fff 0%, #f0f0f0 50%, #e0e0e0 100%);
  clip-path: polygon(40% 0%, 60% 0%, 65% 100%, 35% 100%);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

.lighthouse-body::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #ff0000;
  box-shadow: 0 40px 0 #ff0000, 0 80px 0 #ff0000;
}

.lighthouse-light {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffff00 0%, #ffcc00 50%, transparent 100%);
  border-radius: 50%;
  animation: lighthousePulse 2s ease-in-out infinite;
}

@keyframes lighthousePulse {
  0%, 100% { 
    box-shadow: 0 0 30px #ffff00, 0 0 60px #ffcc00;
    transform: translateX(-50%) scale(1);
  }
  50% { 
    box-shadow: 0 0 50px #ffff00, 0 0 100px #ffcc00;
    transform: translateX(-50%) scale(1.2);
  }
}

.lighthouse-beam {
  position: absolute;
  top: -10px;
  left: 50%;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  width: 300px;
  height: 400px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 100, 0.1) 45%,
    rgba(255, 255, 100, 0.3) 50%,
    rgba(255, 255, 100, 0.1) 55%,
    transparent 100%);
  clip-path: polygon(48% 0%, 52% 0%, 70% 100%, 30% 100%);
  animation: beamRotate 10s linear infinite;
  pointer-events: none;
}

@keyframes beamRotate {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

/* 飘动头像 */
.floating-avatar {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 60;
}

.floating-avatar.showing {
  animation: avatarBounce 1s ease-in-out;
}

@keyframes avatarBounce {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  position: relative;
  background: #fff;
}

.avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-name {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 12px;
  white-space: nowrap;
}

/* 流星效果 */
.avatar-inner.meteor {
  animation: meteorGlow 0.5s ease-in-out infinite;
}

@keyframes meteorGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 255, 100, 0.8);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 255, 200, 1);
  }
}

.meteor-trail {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 100, 0.3) 50%,
    rgba(255, 255, 200, 0.8) 90%,
    rgba(255, 255, 255, 1) 100%);
  transform: translateY(-50%);
  animation: trailFade 0.5s ease-out;
}

@keyframes trailFade {
  from { opacity: 1; width: 200px; }
  to { opacity: 0; width: 50px; }
}

/* 环绕光点 */
.orbiting-avatar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: orbit var(--orbit-speed) linear infinite;
  animation-delay: calc(var(--index) * 0.5s);
  z-index: 45;
}

@keyframes orbit {
  from {
    transform: 
      translate(-50%, -50%) 
      rotate(0deg) 
      translateX(var(--orbit-radius)) 
      rotate(0deg);
  }
  to {
    transform: 
      translate(-50%, -50%) 
      rotate(360deg) 
      translateX(var(--orbit-radius)) 
      rotate(-360deg);
  }
}

.orbit-glow {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, 
    rgba(255, 255, 200, 1) 0%, 
    rgba(255, 255, 100, 0.8) 50%, 
    transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 100, 0.8);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.5);
    opacity: 1;
  }
}

/* 居中的灯光容器 */
.centered-lights {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 灯塔柱子周围的白色光点 */
.lighthouse-pillar-lights {
  width: 120px;  /* 更小的半径 */
  height: 120px;
  pointer-events: none;
  z-index: 95;
}

.pillar-light {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(255, 255, 255, 0.8) 40%, 
    transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  animation: orbitPillar 15s linear infinite;
  transform-origin: -60px center;  /* 围绕中心点旋转 */
}

@keyframes orbitPillar {
  from {
    transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

/* 8个白色光点围绕灯塔柱子 */
.pillar-light-0 { 
  left: 50%;
  top: 50%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.pillar-light-1 { 
  left: 50%;
  top: 50%;
  animation-delay: -1.5s;
  animation-duration: 12s;
}
.pillar-light-2 { 
  left: 50%;
  top: 50%;
  animation-delay: -3s;
  animation-duration: 12s;
}
.pillar-light-3 { 
  left: 50%;
  top: 50%;
  animation-delay: -4.5s;
  animation-duration: 12s;
}
.pillar-light-4 { 
  left: 50%;
  top: 50%;
  animation-delay: -6s;
  animation-duration: 12s;
}
.pillar-light-5 { 
  left: 50%;
  top: 50%;
  animation-delay: -7.5s;
  animation-duration: 12s;
}
.pillar-light-6 { 
  left: 50%;
  top: 50%;
  animation-delay: -9s;
  animation-duration: 12s;
}
.pillar-light-7 { 
  left: 50%;
  top: 50%;
  animation-delay: -10.5s;
  animation-duration: 12s;
}

/* 添加不同高度层次 */
.pillar-light-0,
.pillar-light-4 {
  top: 45%;
  animation-duration: 14s;
}

.pillar-light-1,
.pillar-light-5 {
  top: 50%;
  animation-duration: 12s;
}

.pillar-light-2,
.pillar-light-6 {
  top: 55%;
  animation-duration: 16s;
}

.pillar-light-3,
.pillar-light-7 {
  top: 48%;
  animation-duration: 13s;
}

/* 灯塔柱身的白色光点 */
.lighthouse-tower-lights {
  position: absolute;
  left: 50%;  /* 居中 */
  top: 55%;    /* 稍微向下偏移 */
  transform: translate(-50%, -50%);
  width: 100px;  /* 紧贴柱子的小半径 */
  height: 100px;
  transform: translate(50%, -50%);
  pointer-events: none;
  z-index: 90;
}

.tower-light {
  position: absolute;
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 1) 0%, 
    rgba(255, 255, 255, 0.9) 30%, 
    rgba(200, 230, 255, 0.6) 60%,
    transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 1);
  animation: orbitTower 20s linear infinite;
  transform-origin: -50px center;  /* 更小的旋转半径 */
}

@keyframes orbitTower {
  from {
    transform: rotate(0deg) translateX(50px) rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) translateX(50px) rotate(-360deg) scale(1);
  }
}

/* 10个白色光点分布在柱身不同高度 */
.tower-light-0 { 
  left: 50%;
  top: 20%;  /* 柱身上部 */
  animation-delay: 0s;
  animation-duration: 18s;
}
.tower-light-1 { 
  left: 50%;
  top: 30%;
  animation-delay: -2s;
  animation-duration: 20s;
}
.tower-light-2 { 
  left: 50%;
  top: 40%;
  animation-delay: -4s;
  animation-duration: 22s;
}
.tower-light-3 { 
  left: 50%;
  top: 50%;
  animation-delay: -6s;
  animation-duration: 19s;
}
.tower-light-4 { 
  left: 50%;
  top: 60%;
  animation-delay: -8s;
  animation-duration: 21s;
}
.tower-light-5 { 
  left: 50%;
  top: 70%;
  animation-delay: -10s;
  animation-duration: 18s;
}
.tower-light-6 { 
  left: 50%;
  top: 80%;  /* 柱身下部 */
  animation-delay: -12s;
  animation-duration: 23s;
}
.tower-light-7 { 
  left: 50%;
  top: 35%;
  animation-delay: -14s;
  animation-duration: 20s;
}
.tower-light-8 { 
  left: 50%;
  top: 55%;
  animation-delay: -16s;
  animation-duration: 19s;
}
.tower-light-9 { 
  left: 50%;
  top: 75%;
  animation-delay: -18s;
  animation-duration: 22s;
}

/* 星空中的小星星 */
.sky-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  pointer-events: none;
  z-index: 5;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* 星星分布在顶部天空 */
.star-0 { left: 15%; top: 10%; animation-delay: 0s; animation-duration: 3.5s; }
.star-1 { left: 25%; top: 15%; animation-delay: 0.5s; animation-duration: 4s; }
.star-2 { left: 35%; top: 8%; animation-delay: 1s; animation-duration: 3.8s; }
.star-3 { left: 45%; top: 20%; animation-delay: 1.5s; animation-duration: 4.2s; }
.star-4 { left: 55%; top: 12%; animation-delay: 2s; animation-duration: 3.6s; }
.star-5 { left: 65%; top: 18%; animation-delay: 2.5s; animation-duration: 4.1s; }
.star-6 { left: 75%; top: 7%; animation-delay: 0.3s; animation-duration: 3.9s; }
.star-7 { left: 85%; top: 22%; animation-delay: 0.8s; animation-duration: 4.3s; }
.star-8 { left: 20%; top: 25%; animation-delay: 1.3s; animation-duration: 3.7s; }
.star-9 { left: 40%; top: 5%; animation-delay: 1.8s; animation-duration: 4.4s; }
.star-10 { left: 60%; top: 28%; animation-delay: 2.3s; animation-duration: 3.5s; }
.star-11 { left: 80%; top: 14%; animation-delay: 2.8s; animation-duration: 4s; }
.star-12 { left: 30%; top: 30%; animation-delay: 0.2s; animation-duration: 3.8s; }
.star-13 { left: 50%; top: 6%; animation-delay: 0.7s; animation-duration: 4.2s; }
.star-14 { left: 70%; top: 26%; animation-delay: 1.2s; animation-duration: 3.6s; }

/* 响应式调整 */
@media (max-width: 768px) {
  .qr-section {
    left: 20px;
    top: 20px;
  }
  
  .qr-wrapper {
    padding: 15px;
  }
  
  .qr-code {
    width: 150px;
    height: 150px;
  }
  
  .lighthouse-wrapper {
    right: 10%;
    bottom: 15%;
    transform: scale(0.8);
  }
}/* 签到成功页面样式 */
.checkin-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.success-content, .error-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
}

.success-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out;
}

.error-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: shake 0.5s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.success-title, .error-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.welcome-text {
  font-size: 20px;
  color: #666;
  margin-bottom: 10px;
}

.info-text {
  font-size: 16px;
  color: #999;
  margin-bottom: 30px;
}

.error-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.retry-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

.retry-button:hover {
  transform: scale(1.05);
}

/* 小灯塔动画 */
.lighthouse-animation {
  margin-top: 30px;
  height: 100px;
  position: relative;
}

.mini-lighthouse {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 80px;
  background: linear-gradient(to bottom, #fff 0%, #f0f0f0 50%, #e0e0e0 100%);
  clip-path: polygon(45% 0%, 55% 0%, 60% 100%, 40% 100%);
}

.mini-lighthouse::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, #ffff00 0%, #ffcc00 50%, transparent 100%);
  border-radius: 50%;
  animation: lighthousePulse 2s ease-in-out infinite;
}

@keyframes lighthousePulse {
  0%, 100% { 
    box-shadow: 0 0 20px #ffff00, 0 0 40px #ffcc00;
    transform: translateX(-50%) scale(1);
  }
  50% { 
    box-shadow: 0 0 30px #ffff00, 0 0 60px #ffcc00;
    transform: translateX(-50%) scale(1.2);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .success-content, .error-content {
    padding: 30px 20px;
  }
  
  .success-icon, .error-icon {
    font-size: 60px;
  }
  
  .success-title, .error-title {
    font-size: 24px;
  }
  
  .welcome-text {
    font-size: 18px;
  }
}.mobile-page {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.phone-container {
  position: relative;
  width: 375px;
  height: 812px;
  background-image: url('https://gametest23.oss-cn-beijing.aliyuncs.com/dist/phone.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  border-radius: 40px;
  overflow: hidden;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-page {
    padding: 0;
    background-color: transparent;
  }
  
  .phone-container {
    width: 100%;
    height: 100vh;
    background-image: url('https://gametest23.oss-cn-beijing.aliyuncs.com/dist/phone.jpg');
    background-size: cover;
    box-shadow: none;
    border-radius: 0;
  }
  
  .phone-screen {
    padding: 15px;
  }
}

.user-info{
  text-align: center;
  margin-bottom: 20px;
}
.form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.form-container h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  background-color: white;
  color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
}

.lottery-btn {
  width: 100%;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lottery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.result-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.winner-result h2 {
  color: #ff6b6b;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.no-prize-result h2 {
  color: #666;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.car-image {
  margin-bottom: 20px;
}

.car-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reset-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}
.info-display{
  color:#000
}
.reset-btn:hover {
  background: #0056b3;
}
.user-info{
  text-align: center;
  margin-bottom: 20px;
}
.result-container p {
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #ff5722, #ff8f00);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  background: white;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Login page specific styles */
.login-page {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.login-form-card {
  position: fixed;
  bottom: 40px;
  left: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  padding: 30px 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.login-input {
  width: 100%;
  padding: 18px 12px;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
  background: transparent;
  transition: all 0.2s ease;
  color: #333;
}

.login-input:first-child {
  border-top: none;
}

.login-input:focus {
  outline: none;
  border-bottom-color: #666;
}

.login-input::placeholder {
  color: #999;
  font-size: 15px;
}

.login-btn {
  width: 100%;
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.login-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .login-form-card {
    bottom: 30px;
    left: 15px;
    right: 15px;
    padding: 25px 18px 22px;
  }
}

/* Success toast notification */
.success-toast {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in;
}

.success-toast p {
  margin: 0;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.admin-page {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.admin-phone-container {
  position: relative;
  width: 375px;
  height: 812px;
  background-image: url('https://gametest23.oss-cn-beijing.aliyuncs.com/dist/phone.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  border-radius: 40px;
  overflow: hidden;
}

.admin-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f3f4f6;
}

.admin-header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
}

.logout-btn {
  padding: 8px 16px;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.form-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.current-winner-section {
  margin-bottom: 30px;
}

.current-winner-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 15px;
}

.winner-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.winner-avatar-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  flex-shrink: 0;
}

.winner-info-small {
  flex: 1;
}

.winner-info-small p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.winner-info-small strong {
  color: #1f2937;
}

.no-winner {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
  margin: 0;
}

.admin-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.draw-btn, .clear-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.draw-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.draw-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.clear-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.clear-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.draw-btn:disabled, .clear-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.message {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 500;
  background: #dbeafe;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

/* 中奖记录 */
.records-section {
  margin-top: 20px;
  border-top: 2px solid #f3f4f6;
  padding-top: 20px;
}

.records-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.records-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #1f2937;
  font-weight: 600;
}

.toggle-records-btn {
  padding: 6px 12px;
  background: #6b7280;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-records-btn:hover {
  background: #4b5563;
}

.records-container {
  background: #f9fafb;
  border-radius: 8px;
  padding: 15px;
  max-height: 400px;
  overflow-y: auto;
}

.records-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.record-item {
  background: white;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
}

.record-index {
  font-weight: bold;
  color: #3b82f6;
  font-size: 0.9rem;
  min-width: 30px;
}

.record-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
}

.record-info {
  flex: 1;
}

.record-info p {
  margin: 2px 0;
  font-size: 0.85rem;
}

.record-name {
  font-weight: 600;
  color: #1f2937;
}

.record-phone {
  color: #4b5563;
}

.record-time {
  color: #6b7280;
  font-size: 0.75rem;
}

.clear-all-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-all-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.clear-all-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.no-records {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .admin-page {
    padding: 0;
    background-color: transparent;
    background-image: url('https://gametest23.oss-cn-beijing.aliyuncs.com/dist/phone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .admin-phone-container {
    width: 100%;
    height: 100vh;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  
  .admin-phone-screen {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .admin-page {
    padding: 0;
    background-image: url('https://gametest23.oss-cn-beijing.aliyuncs.com/dist/phone.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .admin-phone-container {
    background: none;
  }
  
  .admin-phone-screen {
    padding: 15px;
  }
  
  .admin-header h1 {
    font-size: 1.5rem;
  }
  
  .admin-actions {
    flex-direction: column;
  }

  .records-header {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .record-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .record-index {
    align-self: flex-end;
  }
}
/* Light control styles */
.light-status-section {
  margin: 30px 0;
  text-align: center;
}

.light-status-section h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 20px;
}

.light-status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.status-light {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.status-light.light-on {
  background: #ffeb3b;
  box-shadow: 0 0 20px #ffeb3b, 0 0 40px #ffeb3b;
  animation: pulse 1.5s infinite;
}

.status-light.light-off {
  background: #666;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px #ffeb3b, 0 0 40px #ffeb3b;
  }
  50% {
    box-shadow: 0 0 30px #ffeb3b, 0 0 60px #ffeb3b;
  }
  100% {
    box-shadow: 0 0 20px #ffeb3b, 0 0 40px #ffeb3b;
  }
}

.status-text {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.light-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.App {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}