/* ============================================================
   AlgoSphere Custom Theme & Crypto Animation Styles
   ============================================================ */

:root {
  --as-bg-dark: #060913;
  --as-bg-card: rgba(13, 20, 36, 0.92);
  --as-border-cyan: rgba(56, 189, 248, 0.4);
  --as-cyan: #38bdf8;
  --as-electric-cyan: #00f2fe;
  --as-blue: #0284c7;
  --as-blue-deep: #1e3a8a;
  --as-text-white: #ffffff;
  --as-text-bright: #f8fafc;
  --as-text-muted: #cbd5e1;
  --as-gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --as-gradient-blue: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  --as-glow-shadow: 0 0 35px rgba(0, 242, 254, 0.4);
}

/* Base Body Adjustments & High Contrast Text */
html, body {
  background-color: var(--as-bg-dark) !important;
  color: var(--as-text-white) !important;
  font-family: 'Jost', 'Outfit', sans-serif;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
  scroll-behavior: smooth;
}

html.lenis-stopped, body.lenis-stopped,
html.lenis-locked, body.lenis-locked {
  overflow-y: auto !important;
}

.text-muted {
  color: var(--as-text-muted) !important;
}

/* Candlestick & Hexagon Tech Pattern Background */
.as-tech-bg {
  position: relative;
  background-color: var(--as-bg-dark);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(2, 132, 199, 0.25), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 242, 254, 0.18), transparent 55%);
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.as-tech-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   CRYPTO ANIMATIONS
   ============================================================ */

/* 1. Floating Animation for Crypto Cards & Graphics */
@keyframes asFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.as-float-anim {
  animation: asFloat 5s ease-in-out infinite;
}

.as-float-anim-delay {
  animation: asFloat 6s ease-in-out 2s infinite;
}

/* 2. Pulsing Glow Animation */
@keyframes asGlowPulse {
  0% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); }
  50% { box-shadow: 0 0 45px rgba(0, 242, 254, 0.7); }
  100% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.3); }
}

.as-glow-pulse {
  animation: asGlowPulse 3s infinite ease-in-out;
}

/* 3. 3D Spinning Coin Animation */
@keyframes asCoinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.as-coin-spin {
  animation: asCoinSpin 8s infinite linear;
  transform-style: preserve-3d;
}

/* 4. Live Crypto Ticker Marquee Bar */
.as-ticker-bar {
  background: rgba(6, 9, 19, 0.95);
  border-bottom: 1.5px solid var(--as-border-cyan);
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.as-ticker-track {
  display: flex;
  width: max-content;
  animation: asInfiniteScroll 35s linear infinite;
}

.as-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes asInfiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.as-ticker-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.as-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 25px;
  font-family: 'Outfit', sans-serif;
}

.as-ticker-badge {
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid var(--as-cyan);
  color: var(--as-electric-cyan);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Hero Section Styles */
.as-hero-section {
  padding: 100px 0 80px 0;
  position: relative;
  z-index: 2;
}

.as-hero-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.4));
}

.as-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.as-hero-title .text-cyan {
  color: var(--as-cyan);
  background: var(--as-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.as-hero-subtitle-pill {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff !important;
  margin-bottom: 35px;
  text-transform: uppercase;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid var(--as-electric-cyan);
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(0, 242, 254, 0.25);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.as-btn-primary {
  background: var(--as-gradient-primary);
  color: #060913 !important;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.as-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.7);
  color: #000000 !important;
}

.as-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.as-btn-outline:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--as-electric-cyan);
  color: var(--as-electric-cyan) !important;
  transform: translateY(-4px);
}

/* About Us Section Styles */
.as-about-section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.as-about-img-box {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--as-electric-cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.4);
  transition: all 0.4s ease;
}

.as-about-img-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 242, 254, 0.6);
}

.as-card-blue {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.92) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  border-radius: 18px;
  padding: 28px;
  color: #ffffff !important;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.as-card-blue:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.5);
  border-color: var(--as-electric-cyan);
}

.as-card-blue .card-title-badge {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Wallets Section Styles */
.as-wallets-section {
  padding: 90px 0;
  background: rgba(4, 8, 18, 0.7);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  position: relative;
  z-index: 2;
}

.as-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: #ffffff !important;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.as-wallet-card {
  background: var(--as-bg-card);
  border: 1.5px solid var(--as-border-cyan);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.as-wallet-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--as-electric-cyan);
  box-shadow: 0 18px 45px rgba(0, 242, 254, 0.35);
}

.as-wallet-icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.as-wallet-card:hover .as-wallet-icon-wrapper {
  transform: scale(1.1);
}

.as-wallet-pill {
  background: var(--as-gradient-blue);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 50px;
  width: 100%;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.4);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.as-bep20-banner {
  background: linear-gradient(90deg, rgba(2, 132, 199, 0.3) 0%, rgba(0, 242, 254, 0.4) 50%, rgba(2, 132, 199, 0.3) 100%);
  border: 1.5px solid var(--as-electric-cyan);
  border-radius: 16px;
  padding: 25px 30px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.3);
}

.as-bep20-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.as-bep20-banner h3 span {
  color: var(--as-electric-cyan);
  background: var(--as-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Why Choose Us Section Styles */
.as-why-section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.as-why-card {
  background: rgba(13, 20, 36, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.as-why-card:hover {
  border-color: var(--as-cyan);
  transform: translateY(-5px);
}

.as-why-card.highlighted {
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.25) 0%, rgba(2, 132, 199, 0.95) 100%);
  border: 2px solid var(--as-electric-cyan);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.45);
  transform: translateY(-8px);
}

.as-why-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #ffffff !important;
}

.as-why-card-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--as-text-muted) !important;
  font-weight: 400;
}

.as-why-card.highlighted .as-why-card-text {
  color: #ffffff !important;
  font-weight: 500;
}

/* Contact / Thank You Section Styles */
.as-thankyou-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--as-bg-dark) 0%, #03060d 100%);
  position: relative;
  z-index: 2;
}

.as-contact-pill {
  background: var(--as-gradient-blue);
  border: 1.5px solid var(--as-electric-cyan);
  border-radius: 50px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 380px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.as-contact-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 242, 254, 0.6);
  border-color: var(--as-electric-cyan);
  color: #ffffff !important;
}

.as-contact-pill i {
  font-size: 1.4rem;
  color: var(--as-electric-cyan);
}

/* ============================================================
   WEB3 GLASSMORPHIC HEADER & FOOTER
   ============================================================ */

/* Navbar Header Container */
.as-navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 9, 19, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1.5px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.as-navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
}

.as-navbar-brand span.brand-cyan {
  color: var(--as-electric-cyan);
  background: var(--as-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.as-nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Outfit', sans-serif;
}

.as-nav-link:hover, .as-nav-link.active {
  color: var(--as-electric-cyan) !important;
  background: rgba(0, 242, 254, 0.12);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.as-nav-btn-login {
  border: 1.5px solid var(--as-cyan);
  color: var(--as-cyan) !important;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.as-nav-btn-login:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #ffffff !important;
  border-color: var(--as-electric-cyan);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.as-nav-btn-register {
  background: var(--as-gradient-primary);
  color: #060913 !important;
  font-weight: 800;
  padding: 9px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.as-nav-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.7);
  color: #000000 !important;
}

/* Web3 Footer */
.as-footer-wrapper {
  background: linear-gradient(180deg, #060913 0%, #02040a 100%);
  border-top: 2px solid var(--as-electric-cyan);
  box-shadow: 0 -10px 40px rgba(0, 242, 254, 0.15);
  position: relative;
  overflow: hidden;
}

.as-footer-top-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #00f2fe 50%, transparent 100%);
  width: 100%;
}

.as-footer-logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.as-footer-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--as-cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.as-footer-link {
  color: #cbd5e1 !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.as-footer-link:hover {
  color: var(--as-electric-cyan) !important;
  transform: translateX(5px);
}

.as-footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid var(--as-border-cyan);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.as-footer-social-icon:hover {
  background: var(--as-gradient-primary);
  color: #060913;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

/* ============================================================
   WEB3 DAPP REGISTRATION PAGE STYLES (150 USDT BEP-20)
   ============================================================ */

.as-register-hero {
  padding: 20px 0 30px 0;
  position: relative;
  z-index: 2;
}

.as-reg-card {
  background: rgba(11, 19, 41, 0.94) !important;
  border: 1.5px solid var(--as-electric-cyan) !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.2) !important;
  backdrop-filter: blur(20px) saturate(180%);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}

.as-reg-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.08), transparent 60%);
  pointer-events: none;
}

.as-package-badge-box {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.35) 0%, rgba(0, 242, 254, 0.2) 100%);
  border: 1.5px solid var(--as-electric-cyan);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
}

.as-package-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--as-electric-cyan);
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
  line-height: 1.1;
}

.as-balance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.as-balance-card {
  background: rgba(6, 12, 26, 0.85);
  border: 1px solid var(--as-border-cyan);
  border-radius: 12px;
  padding: 10px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.as-balance-card:hover {
  border-color: var(--as-electric-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.as-balance-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--as-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.as-balance-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.as-input-custom {
  background: rgba(6, 12, 26, 0.9) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.35) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 9px 14px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.as-input-custom:focus {
  border-color: var(--as-electric-cyan) !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3) !important;
  outline: none !important;
}

/* ============================================================
   HIGH-CONTRAST ERROR & ALERT NOTIFICATION STYLES
   ============================================================ */

.alert-box {
  padding: 16px 22px !important;
  border-radius: 18px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.3s ease !important;
  text-align: left !important;
}

.alert-box.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28) 0%, rgba(127, 29, 29, 0.5) 100%) !important;
  border: 2px solid #ef4444 !important;
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), inset 0 0 15px rgba(239, 68, 68, 0.2) !important;
  animation: asShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both, asPulseError 2s infinite !important;
}

.alert-box.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.28) 0%, rgba(6, 78, 59, 0.5) 100%) !important;
  border: 2px solid #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5) !important;
}

.alert-box.info {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.22) 0%, rgba(3, 105, 161, 0.45) 100%) !important;
  border: 2px solid var(--as-electric-cyan) !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4) !important;
}

.as-input-custom.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6) !important;
  background: rgba(127, 29, 29, 0.2) !important;
  animation: asShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

@keyframes asShake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

@keyframes asPulseError {
  0% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.8); }
  100% { box-shadow: 0 0 25px rgba(239, 68, 68, 0.5); }
}


