.win-title,
.win-subtitle,
.score-text,
.win-button {
  max-height: 50%; /* Keep content within top half */
  display: block;
  color: white;
}

.win-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.4s ease;
  overflow: hidden;
  color: white;
}

.win-content {
  aspect-ratio: 1.3 / 2;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 1.2rem;
  text-align: center;
  animation: popIn 0.5s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
   align-items: center;
  background-image: url('../assets/images/win_image_dark.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.5);
 position: relative;
 color: white;
 
}

.win-content > * {
  flex-shrink: 0; /* Prevent shrinking */
  margin-top: 2%;  /* small spacing from top */
}

.hidden {
  opacity: 0;
  pointer-events: none;
}


/* Responsive tweaks for smaller devices */
@media (max-width: 480px) {
  .win-content {
    min-height: 400px;
    padding: 0.8rem;
  }
 
}
