@import url('fonts.css');

:root {
  --background: #050505;
  --foreground: #ffffff;
  --accent: #5e17eb;
  --accent-glow: rgba(94, 23, 235, 0.4);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --font-primary: 'Outfit', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-primary), sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

.glass-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  z-index: 10;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.85); /* Darker background to hide thin grid lines */
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}

.glow-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.glow-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* Background Grid & Stars */
@keyframes panGrid {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.bg-grid {
  position: fixed; /* Fixed behind everything */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2; /* Way behind */
  pointer-events: none;
  animation: panGrid 15s linear infinite;
  transform: translateZ(0);
}

.star-container {
  position: fixed; /* Fixed behind everything */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Behind content, above grid */
  pointer-events: none;
  overflow: hidden;
  transform: translateZ(0);
}

.star-wrapper {
  position: absolute;
}

@keyframes shoot {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(120vw); opacity: 0; }
}

.shooting-star {
  position: absolute;
  width: 120px;
  height: 3px; /* Slightly thicker for better blur visibility */
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
  opacity: 0;
  animation-name: shoot;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  backface-visibility: hidden;
}

.shooting-star::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,1);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,1), 0 0 20px var(--accent);
}

/* Star Delays */
.star-1 { top: -10%; left: 10%; transform: rotate(35deg); }
.star-1 .shooting-star { animation-duration: 4s; animation-delay: 0s; width: 100px; }
.star-2 { top: -10%; left: 40%; transform: rotate(35deg); }
.star-2 .shooting-star { animation-duration: 5s; animation-delay: 1.2s; width: 150px; }
.star-3 { top: 20%; left: -10%; transform: rotate(35deg); }
.star-3 .shooting-star { animation-duration: 3.5s; animation-delay: 2.5s; width: 80px; }
.star-4 { top: 50%; left: -10%; transform: rotate(35deg); }
.star-4 .shooting-star { animation-duration: 6s; animation-delay: 0.8s; width: 200px; }
.star-5 { top: -10%; left: 70%; transform: rotate(35deg); }
.star-5 .shooting-star { animation-duration: 4.5s; animation-delay: 3s; width: 120px; }
.star-6 { top: 80%; left: -10%; transform: rotate(35deg); }
.star-6 .shooting-star { animation-duration: 5.5s; animation-delay: 1.8s; width: 90px; }
.star-7 { top: -10%; left: 90%; transform: rotate(35deg); }
.star-7 .shooting-star { animation-duration: 4.8s; animation-delay: 4.1s; width: 160px; }
.star-8 { top: 10%; left: -20%; transform: rotate(35deg); }
.star-8 .shooting-star { animation-duration: 4.2s; animation-delay: 0.5s; width: 140px; }
.star-9 { top: -10%; left: 25%; transform: rotate(35deg); }
.star-9 .shooting-star { animation-duration: 5.8s; animation-delay: 2.1s; width: 110px; }
.star-10 { top: 60%; left: -10%; transform: rotate(35deg); }
.star-10 .shooting-star { animation-duration: 3.9s; animation-delay: 1.5s; width: 180px; }
.star-11 { top: -10%; left: 55%; transform: rotate(35deg); }
.star-11 .shooting-star { animation-duration: 6.5s; animation-delay: 0.2s; width: 90px; }
.star-12 { top: 30%; left: -10%; transform: rotate(35deg); }
.star-12 .shooting-star { animation-duration: 4.6s; animation-delay: 3.5s; width: 130px; }
.star-13 { top: -10%; left: 85%; transform: rotate(35deg); }
.star-13 .shooting-star { animation-duration: 5.2s; animation-delay: 1.9s; width: 100px; }
.star-14 { top: 75%; left: -10%; transform: rotate(35deg); }
.star-14 .shooting-star { animation-duration: 4.1s; animation-delay: 2.8s; width: 170px; }
.star-15 { top: -10%; left: 100%; transform: rotate(35deg); }
.star-15 .shooting-star { animation-duration: 6.2s; animation-delay: 0.9s; width: 120px; }

/* Cursive Drawing */
@keyframes drawText {
  0% { background-position: 100% 0; }
  65% { background-position: 0 0; }
  80% { background-position: 0 0; }
  95%, 100% { background-position: 100% 0; }
}

.cursive-draw {
  font-family: var(--font-cursive);
  background: linear-gradient(
    to right, 
    var(--accent) 50%, 
    rgba(255, 255, 255, 0.1) 50%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: drawText 8s ease-in-out infinite;
  filter: drop-shadow(0 0 35px rgba(94, 23, 235, 0.6));
  -webkit-filter: drop-shadow(0 0 35px rgba(94, 23, 235, 0.6));
  display: inline-block;
  line-height: 1.2;
}

.header-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Nav */
.user-nav-container { position: relative; }
.user-nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  min-width: 100%;
}
.user-nav-container:hover .user-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-nav-display {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}
.user-nav-container:hover .user-nav-display {
  border-color: var(--accent);
  background: rgba(94, 23, 235, 0.05);
}

/* Tiles */
.tile-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tile-leaderboard:hover { border-color: #FFD700 !important; box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
.tile-spiel:hover { border-color: var(--accent) !important; box-shadow: 0 0 50px rgba(94, 23, 235, 0.4); }
.tile-einsenden:hover { border-color: #00B4FF !important; box-shadow: 0 0 30px rgba(0, 180, 255, 0.3); }

/* Sparkles */
@keyframes sparkleRise {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-150px) scale(2); opacity: 0; }
}
.sparkle-container {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 80%);
  mask-image: linear-gradient(to top, black 0%, transparent 80%);
  z-index: 5;
}
.tile-card:hover .sparkle-container { opacity: 1; }
.p {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparkleRise infinite linear;
  opacity: 0; /* Hidden by default to prevent load flickering */
}
.tile-leaderboard .p { background: #FFD700; box-shadow: 0 0 15px #FFD700, 0 0 30px rgba(255,215,0,0.5); }
.tile-spiel .p { background: var(--accent); box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(94, 23, 235, 0.5); }
.tile-einsenden .p { background: #00B4FF; box-shadow: 0 0 15px #00B4FF, 0 0 30px rgba(0, 180, 255, 0.5); }

.p:nth-child(1) { left: 10%; animation-duration: 1.2s; animation-delay: 0.1s; }
.p:nth-child(2) { left: 30%; animation-duration: 1.5s; animation-delay: 0.4s; }
.p:nth-child(3) { left: 50%; animation-duration: 1.1s; animation-delay: 0.2s; }
.p:nth-child(4) { left: 70%; animation-duration: 1.4s; animation-delay: 0.6s; }
.p:nth-child(5) { left: 90%; animation-duration: 1.3s; animation-delay: 0.3s; }
.p:nth-child(6) { left: 20%; animation-duration: 1.6s; animation-delay: 0.5s; }
.p:nth-child(7) { left: 40%; animation-duration: 1.2s; animation-delay: 0.8s; }
.p:nth-child(8) { left: 60%; animation-duration: 1.5s; animation-delay: 0.1s; }
.p:nth-child(9) { left: 80%; animation-duration: 1.3s; animation-delay: 0.7s; }
.p:nth-child(10) { left: 15%; animation-duration: 1.4s; animation-delay: 0.2s; }

/* Header Bar */
.header-bar {
  position: sticky;
  top: 4rem; /* Even more space from top to allow logo to float above */
  z-index: 1000;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 8rem; /* Increased margin for large logo overlap */
  padding: 0.8rem 1.5rem; /* Back to thin bar */
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeIn 1s ease-out;
}

.header-logo-container { flex: 1; display: flex; justify-content: center; order: 2; position: relative; }
.header-left { flex: 1; display: flex; justify-content: flex-start; order: 1; }
.header-right { flex: 1; display: flex; justify-content: flex-end; order: 3; }

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #666;
}

.stat-icon { 
  color: var(--accent); 
  opacity: 0.8; 
  padding-top: 2px; /* Align icon slightly better with text */
}

.stat-content { 
  display: flex; 
  flex-direction: column; 
  gap: 4px; /* More space between value and label */
}

.stat-value { 
  font-size: 1.8rem; 
  font-weight: 800; 
  color: #eee; 
  line-height: 1; 
  display: block; 
}

.stat-label { 
  font-size: 0.9rem; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  opacity: 0.6; 
  display: block; 
  white-space: nowrap;
}

/* Layout Main */
main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  overflow-x: hidden;
  z-index: 1;
}

.tiles-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  flex: 1;
}

.tilt-wrapper {
  transition: all 0.5s ease;
  z-index: 10;
  position: relative;
}

/* =============================================
   RESPONSIVE SCALING
   Target: looks identical on 1080p and 2K
   ============================================= */

/* Header bar */
.header-bar {
  max-width: clamp(900px, 80vw, 1400px);
  margin-bottom: clamp(3rem, 6vw, 8rem);
  top: clamp(1rem, 2vw, 4rem);
}

/* Logo: scale down gracefully */
.header-logo-container h1 {
  font-size: clamp(4rem, 6vw, 9rem) !important;
}

/* Tiles container */
.tiles-container {
  max-width: clamp(900px, 85vw, 1300px);
  gap: clamp(1rem, 2vw, 2.5rem);
}

/* Stats row */
.stats-row {
  gap: clamp(1.5rem, 3vw, 4rem);
}

/* On smaller screens (<=1600px) tighten things up — 1080p gets the same as 2K */
@media (max-width: 1600px) {
  .header-bar {
    top: 1.5rem;
    margin-bottom: 4rem;
  }

  .header-logo-container h1 {
    font-size: clamp(3.5rem, 5vw, 6rem) !important;
    padding: 1rem !important;
  }

  .stats-row {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
  }

  /* Side tiles */
  .tile-leaderboard,
  .tile-einsenden {
    min-height: clamp(280px, 30vh, 420px) !important;
    padding: clamp(1.5rem, 2vw, 3rem) clamp(1rem, 1.5vw, 2rem) !important;
  }

  /* Center tile */
  .tile-spiel {
    min-height: clamp(340px, 38vh, 580px) !important;
    padding: clamp(2rem, 3vw, 4rem) clamp(1rem, 1.5vw, 2rem) !important;
    transform: translateY(clamp(-20px, -2vh, -40px)) !important;
  }

  .tilt-wrapper {
    min-width: clamp(220px, 20vw, 300px) !important;
  }
}

/* Tablet / small screens: stack tiles vertically */
@media (max-width: 900px) {
  .tiles-container {
    flex-direction: column;
    align-items: stretch;
  }

  .tile-spiel {
    transform: none !important;
  }

  .tilt-wrapper {
    min-width: unset !important;
    width: 100%;
  }

  .header-logo-container h1 {
    font-size: 2.8rem !important;
  }
}

/* =============================================
   PREMIUM SPLASH SCREEN intro SYSTEM
   ============================================= */
#splash-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: var(--background); /* Same background color as the index website (#050505) */
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
  overflow: hidden;
}

#splash-screen.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Background grid and star container inside splash screen */
#splash-screen .bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#splash-screen .star-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* Stunning neon background aura behind logo */
.splash-bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(94, 23, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: splashAuraPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 3; /* Increased to stack above bg-grid and star-container */
}

/* Lightning Flash Overlay */
.splash-lightning-flash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(167, 139, 250, 0.45) 0%, rgba(255, 255, 255, 0.15) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: color-dodge;
  transition: opacity 0.05s ease-out;
}

/* Lightning SVG */
#splash-lightning-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* Screen Shake Animation for Logo wrapper */
@keyframes splash-screen-shake {
  0% { transform: translate(0, 0) scale(1); }
  10% { transform: translate(-2px, -3px) skewX(1deg) scale(1.01); }
  20% { transform: translate(3px, -1px) skewX(-1deg) scale(1.01); }
  30% { transform: translate(-1px, 2px) scale(1); }
  40% { transform: translate(2px, -2px) skewX(1deg) scale(1); }
  50% { transform: translate(-3px, 1px) skewX(-1deg) scale(1.01); }
  60% { transform: translate(1px, 2px) scale(1); }
  70% { transform: translate(-2px, -1px) scale(1); }
  80% { transform: translate(2px, 1px) scale(1); }
  90% { transform: translate(-1px, -2px) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

.splash-shake {
  animation: splash-screen-shake 0.3s cubic-bezier(.36,.07,.19,.97) both;
}

.splash-logo-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: scale(0.85);
  opacity: 0;
  filter: blur(10px);
  animation: splashLogoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-logo-wrapper {
  position: relative;
  padding: 20px;
}

.splash-logo {
  width: clamp(180px, 15vw, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(94, 23, 235, 0.3));
  animation: splashLogoGlow 3s ease-in-out infinite alternate;
}

/* High-tech tech rings rotating around logo */
.splash-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(94, 23, 235, 0.15);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.splash-ring-1 {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-top-color: var(--accent);
  border-bottom-color: var(--accent);
  animation: rotateClockwise 8s linear infinite;
}
.splash-ring-2 {
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border-left-color: rgba(0, 180, 255, 0.4);
  border-right-color: rgba(0, 180, 255, 0.4);
  animation: rotateCounterClockwise 12s linear infinite;
}

.splash-title {
  font-family: var(--font-primary), sans-serif;
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 20%, #bf94ff 50%, #ffffff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite, splashTextEntrance 1s ease-out 0.3s forwards;
  opacity: 0;
  text-shadow: 0 0 30px rgba(94, 23, 235, 0.2);
}

.splash-subtitle {
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  animation: splashSubtitleEntrance 0.8s ease-out 0.6s forwards;
}

/* Loading Progress Bar at the bottom */
.splash-progress-track {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeInProgress 0.5s ease forwards 0.8s;
}

.splash-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #00B4FF 100%);
  box-shadow: 0 0 8px var(--accent);
  animation: splashProgressFill 3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Sleek Skip Button */
.splash-skip-btn {
  position: absolute;
  bottom: 4%;
  right: 4%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #555;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeInProgress 0.5s ease forwards 1.2s;
}

.splash-skip-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* KEYFRAMES FOR INTRO SCREEN */
@keyframes splashLogoEntrance {
  0% { transform: scale(0.85); opacity: 0; filter: blur(10px); }
  100% { transform: scale(1); opacity: 1; filter: blur(0px); }
}

@keyframes splashTextEntrance {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes splashSubtitleEntrance {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.6; transform: translateY(0); }
}

@keyframes fadeInProgress {
  to { opacity: 1; }
}

@keyframes splashProgressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes splashAuraPulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.15); opacity: 0.35; filter: blur(50px); }
}

@keyframes splashLogoGlow {
  0% { filter: drop-shadow(0 0 15px rgba(94, 23, 235, 0.25)); }
  100% { filter: drop-shadow(0 0 35px rgba(94, 23, 235, 0.55)) drop-shadow(0 0 15px rgba(0, 180, 255, 0.3)); }
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes textShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
