body {
  font-family: Aries, sans-serif;
  height: 100vh;
  
  background: radial-gradient(circle at center, #e183fa 0%, #994cc1 100%);
  background-size: 200% 200%;
  
  animation: radialShift 15s ease infinite;
  position: relative;
}

@keyframes radialShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

#bgoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.pinimg.com/originals/a7/d0/c8/a7d0c865ba4bbac1998f155dc344c426.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

#bgshine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, #f8aafd 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
  animation: shineMove 12s ease-in-out infinite alternate;
}

@keyframes shineMove {
  0% { background-position: 25% 25%; }
  50% { background-position: 35% 35%; }
  100% { background-position: 25% 25%; }
}


.kalnia-glaze-1234 {
  font-family: "Kalnia Glaze", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "width" 112.5;
}

#title h1 {
  text-align: center;
  margin: 20px 0;
  font-size: 3em;
  text-shadow: 0 0 10px #f7f796, 0 0 20px #eff4d4;
}

#chart {
  width: 500px;
  height: 500px;
  margin: 20px auto;
  position: relative;
}

canvas {
  border-radius: 50%;
  background: #6d2d8d;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.chart-container canvas {
  background-color: transparent;
  }

.chartjs-render-moniter {
  color: white !important;
  }
  
.todo-box {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    width: 250px;
    font-family: Arial, sans-serif;
    color: #fff;
    position: relative;
    }

.todo-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: normal;
}

.todo-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.todo-box li {
  margin-bottom: 8px;
}
