body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffd1dc, #e6e6fa);
  font-family: Arial, sans-serif;
}

#game-container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.game-image {
  max-width: 300px;
  height: auto;
  border-radius: 0.5rem;
}

button {
  background: #ff69b4;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-top: 1rem;
}

button:hover {
  background: #ff1493;
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-container {
  text-align: center;
}

.loading-bar {
  width: 300px;
  height: 20px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: #ff69b4;
  transition: width 0.3s ease;
}

.loading-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

.skip-button {
  background: #999;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.skip-button:hover {
  background: #777;
}