game-home.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. html, body.millions-bg { background: #f5f7fb !important; }
  2. .main-content { background: #f5f7fb !important; }
  3. /* Mega Jackpot amount — spiral grow & shrink */
  4. .mega-jackpot-spiral {
  5. display: inline-block;
  6. transform-origin: center center;
  7. animation: megaJackpotSpiral 1.8s ease-in-out infinite;
  8. will-change: transform;
  9. }
  10. /* Redeem Rewards button — gentle pulse + golden glow */
  11. .redeem-pulse {
  12. animation: redeemPulse 1.6s ease-in-out infinite;
  13. will-change: transform, box-shadow;
  14. }
  15. @keyframes redeemPulse {
  16. 0%, 100% {
  17. transform: scale(1);
  18. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(255, 207, 15, 0.6);
  19. }
  20. 50% {
  21. transform: scale(1.06);
  22. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18), 0 0 0 6px rgba(255, 207, 15, 0);
  23. }
  24. }
  25. .lang-flag-icon {
  26. width: 16px;
  27. height: 12px;
  28. object-fit: cover;
  29. border-radius: 2px;
  30. flex-shrink: 0;
  31. box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  32. }
  33. @keyframes megaJackpotSpiral {
  34. 0% {
  35. transform: scale(0.25) rotate(0deg);
  36. }
  37. 30% {
  38. transform: scale(1.15) rotate(360deg);
  39. }
  40. 65% {
  41. transform: scale(1.15) rotate(360deg);
  42. }
  43. 100% {
  44. transform: scale(0.25) rotate(720deg);
  45. }
  46. }