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

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF1493, #FF6B35);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FF1493, #39FF14);
}

body {
  background: #0a0a0a;
  background-image: 
    radial-gradient(ellipse at 10% 20%, rgba(255, 20, 147, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(0, 229, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(57, 255, 20, 0.015) 0%, transparent 50%);
}

/* Leaf pattern watermark */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M20 80 Q30 50 50 30 Q40 55 45 75Z' fill='%2339FF14'/%3E%3Cpath d='M60 90 Q70 60 90 40 Q80 65 85 85Z' fill='%2339FF14'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.85; filter: brightness(1.3); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-4px) rotate(-1deg); }
  20% { transform: translateX(4px) rotate(1deg); }
  30% { transform: translateX(-4px) rotate(-1deg); }
  40% { transform: translateX(4px) rotate(1deg); }
  50% { transform: translateX(-2px); }
  60% { transform: translateX(2px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  90% { transform: translateX(-1px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes emojiExplode {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--rot)); opacity: 0; }
}

@keyframes glowIntensify {
  0% { box-shadow: 0 0 5px rgba(255, 0, 64, 0.2); }
  100% { box-shadow: 0 0 30px rgba(255, 0, 64, 0.8), 0 0 60px rgba(255, 0, 64, 0.4); }
}

@keyframes celebration {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
  100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

@keyframes bannerSlide {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  90% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes masterPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 229, 255, 0.5); }
  50% { text-shadow: 0 0 25px rgba(0, 229, 255, 0.9), 0 0 50px rgba(0, 229, 255, 0.3); }
}

.neon-pulse { animation: neonPulse 2s ease-in-out infinite; }
.sway { animation: sway 3s ease-in-out infinite; display: inline-block; }
.bob { animation: bob 2s ease-in-out infinite; display: inline-block; }
.shake-anim { animation: shake 0.5s ease-in-out infinite; }
.fade-in-up { animation: fadeInUp 0.4s ease-out forwards; }
.slide-in { animation: slideIn 0.3s ease-out forwards; }
.master-pulse { animation: masterPulse 3s ease-in-out infinite; }

.emoji-particle {
  position: absolute;
  animation: emojiExplode 1.2s ease-out forwards;
  pointer-events: none;
  font-size: 1.5rem;
  z-index: 50;
}

.glow-intensify {
  animation: glowIntensify 2s ease-in-out infinite alternate;
}

.tropical-gradient-text {
  background: linear-gradient(135deg, #FF1493, #FF6B35, #FF1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.tropical-border {
  border: 2px solid transparent;
  background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(135deg, #00E5FF, #39FF14);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.idle-overlay {
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.95);
}

.break-modal-bg {
  backdrop-filter: blur(8px);
  background: rgba(10, 10, 10, 0.9);
}

.badge-glow {
  text-shadow: 0 0 10px currentColor;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}