body {
  font-family: "Poppins", sans-serif;
  touch-action: manipulation;
  width: 100vw;
  height: 100vh;
  overscroll-behavior: none;
  overflow: hidden;
}
.main-container {
  background: #2c2c5e;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen {
  width: 100%;
  max-width: 420px;
  height: 100vh;
  max-height: 900px;
  display: none;
  flex-direction: column;
  background: #2c2c5e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.screen.active {
  display: flex;
}
.btn-primary {
  background: #ffeac2;
  /* color: #4f00bc; */
  color: #725a2e;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background-color: #28c542;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.resource-bar {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
}
.bg-daily {
  background-color: #3d4293;
}
.board-cell {
  background-color: #3d4293;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.board-cell.x {
  color: #ffd700;
}
.board-cell.o {
  color: #34e0a1;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.modal-content {
  background: linear-gradient(180deg, #32377b 0%, #24275b 100%);
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}
.trophy-bg {
  background: #3b4394;
}
.trophy-shape-bg {
  background-color: #3c4391;
}
#confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 101;
}
.day7-reward-card {
  background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
  color: #a13333;
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 10px #fad0c4, 0 0 20px #ff9a9e;
  }
  to {
    box-shadow: 0 0 20px #fad0c4, 0 0 30px #ff9a9e;
  }
}
.trophy-road-item .line {
  width: 4px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 38px;
  top: 20px;
  z-index: 0;
}
.trophy-road-item:last-child .line {
  display: none;
}
.avatar-item.locked {
  filter: grayscale(1);
  cursor: not-allowed;
}
.avatar-item.selected {
  border-color: #ffd700;
}
