
.nyan-timer {
  text-align: center;
  background: #fdf6f0;
  border: 3px solid #ffd8df;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px #ffc2cc;
}
.cat {
  width: 200px;
  margin-bottom: 20px;
  transition: opacity 0.4s ease-in-out, transform 0.6s ease-in-out, filter 0.6s ease-in-out;
  cursor: pointer;
}
.cat.fade {
  opacity: 0;
  transform: scale(1.05) rotate(2deg);
  filter: blur(4px);
}
.tarot-details {
  display: none;
  background: #ffeeff;
  padding: 1rem;
  margin: 10px auto;
  border-radius: 12px;
  color: #aa2288;
  font-size: 0.95rem;
  box-shadow: 0 0 5px #ddb0d0;
  transition: all 0.4s ease;
}
.tarot-details.show {
  display: block;
}
.time-inputs input {
  width: 60px;
  padding: 10px;
  margin: 5px;
  font-size: 18px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #ffb3c6;
}
.buttons button {
  font-size: 18px;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  border-radius: 20px;
  background: #ffccda;
  cursor: pointer;
  transition: 0.3s;
}
.buttons button:hover {
  background: #ffb3c6;
}
.buttons button:active {
  opacity: 0.7;
  transform: scale(0.97);
}
#countdown {
  font-size: 32px;
  margin-top: 15px;
  color: #ff6090;
  transition: opacity 0.4s ease-in-out;
}
#countdown.fade {
  opacity: 0;
}
.tarot-message {
  background: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  color: #663366;
  box-shadow: 0 0 10px #ccc;
  transition: opacity 0.4s ease-in-out;
}
.tarot-message.fade {
  opacity: 0;
}
    

.titlebar {
  -webkit-app-region: drag;
  height: 32px;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 32px;
  font-weight: bold;
  user-select: none;
}

button, input, a {
  -webkit-app-region: no-drag;
}


.window-controls {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 4px;
  -webkit-app-region: no-drag;
}

.window-controls button {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  width: 32px;
  height: 28px;
  cursor: pointer;
}

.window-controls button:hover {
  background: #444;
}
