:root {
  --macaron-pink: #ffb3ba;
  --macaron-mint: #baffc9;
  --macaron-purple: #c9a0ff;
  --macaron-blue: #bae1ff;
  --macaron-yellow: #ffffba;
  --macaron-orange: #ffdfba;
  --macaron-pink-dark: #ff99a3;
  --macaron-mint-dark: #99ffb3;
  --macaron-purple-dark: #b380ff;
  --macaron-blue-dark: #99d3ff;
  --bg-color: #000000;
  --text-color: #ffffff;
  --animation-duration: 3s;
  --fade-duration: 2s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fireworks-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bullets-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.bullet {
  position: absolute;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  max-width: 200px;
  word-wrap: break-word;
  opacity: 0;
  animation: fadeInOut var(--animation-duration) ease-in-out forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 0.9;
    transform: scale(1);
  }
  80% {
    opacity: 0.9;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .bullet {
    font-size: 12px;
    max-width: 150px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .bullet {
    font-size: 10px;
    max-width: 120px;
    padding: 6px 10px;
  }
}

::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}