.win-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  text-align: center;
}
.win-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;

  display: flex;
  align-items: center;
  gap: 2px;
}
.win-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  letter-spacing: 3px;
}

.win-content > span:first-child {
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 768px) {
  .win-title {
    font-size: 15px;
    letter-spacing: 0.8px;
  }

  .win-content > span {
    font-size: 11px;
  }

  .win-container {
    gap: 8px;
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .win-title {
    font-size: 13px;
    letter-spacing: 0.6px;
  }

  .win-content > span:first-child {
    font-size: 15px;
  }

  .win-content > span {
    font-size: 10px;
  }

  .win-container {
    gap: 6px;
    min-height: 52px;
  }
}

@media (max-width: 360px) {
  .win-title {
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  .win-content > span:first-child {
    font-size: 13px;
  }

  .win-content > span {
    font-size: 9px;
  }

  .win-container {
    gap: 5px;
    min-height: 48px;
  }
}

/* ========================================
   TEMA MODERNO - ANIMAÇÃO DE VITÓRIA
   ======================================== */

.theme-modern .win-container {
  animation: winBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: visible;
  z-index: 2;
}

@keyframes winBounceIn {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.15) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.theme-modern .win-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-destaque));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
  animation: winTitlePulse 1.5s ease-in-out infinite, winTitleGlow 2s ease-in-out infinite;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 10px var(--cor-primaria));
}

@keyframes winTitlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes winTitleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px var(--cor-primaria)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 25px var(--cor-primaria)) brightness(1.2);
  }
}

.theme-modern .win-content {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
  padding: 20px 28px;
  border-radius: 20px;
  border: 3px solid var(--cor-primaria);
  box-shadow: 
    0 8px 32px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 215, 0, 0.2),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  animation: winContentFloat 2s ease-in-out infinite, winContentGlow 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.theme-modern .win-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: winShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes winShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes winContentFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes winContentGlow {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(255, 215, 0, 0.4),
      0 0 60px rgba(255, 215, 0, 0.2),
      inset 0 0 30px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 12px 40px rgba(255, 215, 0, 0.6),
      0 0 80px rgba(255, 215, 0, 0.4),
      inset 0 0 40px rgba(255, 255, 255, 0.15);
  }
}

.theme-modern .win-content > span:first-child {
  font-weight: 900;
  font-size: 28px;
  background: linear-gradient(135deg, var(--cor-primaria), var(--cor-destaque));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
  animation: winProfitPulse 1s ease-in-out infinite;
}

@keyframes winProfitPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .theme-modern .win-title {
    font-size: 20px;
  }
  
  .theme-modern .win-content {
    padding: 12px 18px;
    border-radius: 12px;
  }
  
  .theme-modern .win-content > span:first-child {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .theme-modern .win-title {
    font-size: 16px;
  }
  
  .theme-modern .win-content {
    padding: 10px 14px;
  }
  
  .theme-modern .win-content > span:first-child {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .theme-modern .win-title {
    font-size: 14px;
  }
  
  .theme-modern .win-content {
    padding: 8px 12px;
  }
  
  .theme-modern .win-content > span:first-child {
    font-size: 14px;
  }
}
