/* ============================================
   WEB3 DARK THEME - MSQUARE MARKET
   ============================================ */

:root {
  /* Web3 Dark Theme Colors */
  --bg-primary: #0a0e27;
  --bg-secondary: #13182e;
  --bg-card: rgba(20, 25, 45, 0.6);
  
  /* Purple Theme Colors */
  --neon-purple: #9d4ffd;
  --neon-purple-light: #b87fff;
  --neon-purple-dark: #7c3fd1;
  --neon-cyan: #9d4ffd;
  --neon-pink: #9d4ffd;
  --neon-blue: #9d4ffd;
  --neon-green: #9d4ffd;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-accent: #9d4ffd;
  
  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, #9d4ffd 0%, #7c3fd1 100%);
  --gradient-secondary: linear-gradient(135deg, #9d4ffd 0%, #b87fff 100%);
  --gradient-hero: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  --gradient-card: linear-gradient(135deg, rgba(157, 79, 253, 0.1) 0%, rgba(124, 63, 209, 0.1) 100%);
  --gradient-text: linear-gradient(135deg, #9d4ffd 0%, #b87fff 50%, #9d4ffd 100%);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

body {
  background: var(--bg-primary) !important;
  background-image: 
    radial-gradient(at 0% 0%, rgba(102, 126, 234, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(0, 212, 255, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary) !important;
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  overflow-x: hidden;
  position: relative;
}

/* Force all text elements to use the correct font and color */
body, body * {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p, a, span, div, li {
  color: var(--text-primary) !important;
}

a {
  color: var(--text-secondary) !important;
}

/* Removed animated grid for better performance */

/* ============================================
   NAVIGATION - Modern Clean Design
   ============================================ */

.navbar {
  background: rgba(10, 14, 39, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(157, 79, 253, 0.15);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  padding: 0 1rem;
}

.navbar-brand img {
  filter: none;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
  opacity: 0.85;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 1.2rem !important;
  border: none !important;
  outline: none !important;
  margin: 0 0.25rem;
}

/* Simple underline on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9d4ffd, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link.active::after {
  opacity: 1;
  background: #9d4ffd;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: transparent !important;
}

.nav-link img {
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  padding: 4rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: visible !important;
  background: radial-gradient(circle at 30% 50%, rgba(10, 14, 39, 0.95) 0%, rgba(10, 14, 39, 0.85) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(157, 79, 253, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 79, 253, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.text-title {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 
    0 2px 20px rgba(157, 79, 253, 0.3),
    0 4px 40px rgba(0, 0, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 10;
}

.text-slogan {
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  color: #e0e7ff !important;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 
    0 2px 10px rgba(157, 79, 253, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 400 !important;
  background: rgba(10, 14, 39, 0.6);
  padding: 1rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}

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

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.glass-card:hover::before {
  opacity: 1;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  position: relative;
  z-index: 1;
}

.head-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.3;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 
    0 2px 15px rgba(157, 79, 253, 0.2),
    0 4px 30px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 10;
}

/* Feature Section Backgrounds */
#validation:nth-of-type(odd) {
  background: transparent !important;
}

#validation:nth-of-type(even) {
  background: rgba(19, 24, 46, 0.5) !important;
  position: relative;
}

#validation:nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

/* ============================================
   DOWNLOAD BUTTONS - WEB3 STYLE
   ============================================ */

.download_btn-wrap,
.down_section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.new__link,
.down__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem 0 5rem !important;
  min-width: 320px;
  height: 65px;
  background: rgba(20, 25, 45, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--text-primary) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: all 0.4s ease;
  overflow: hidden;
  background-clip: padding-box;
  font-family: 'Inter', sans-serif !important;
}

.new__link::before,
.down__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 2px;
  background: var(--gradient-secondary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.new__link:hover::before,
.down__link:hover::before {
  opacity: 1;
}

.new__link::after,
.down__link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #b87fff 0%, #9d4ffd 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.new__link:hover::after,
.down__link:hover::after {
  left: 0;
}

.new__link:hover,
.down__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(157, 79, 253, 0.5),
              0 0 30px rgba(157, 79, 253, 0.3);
  color: #ffffff !important;
}

/* Icon Styles */
.new__link.apple::after,
.down__link.apple::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 384 512'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.new__link.google::after,
.down__link.google::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%2300d4ff' d='M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}

.new__link:hover.apple::after,
.down__link:hover.apple::after,
.new__link:hover.google::after,
.down__link:hover.google::after {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.dl-text {
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif !important;
  text-shadow: 
    0 2px 15px rgba(157, 79, 253, 0.25),
    0 4px 30px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

#superhero {
  background: rgba(19, 24, 46, 0.3);
  position: relative;
  padding: 5rem 0;
}

#superhero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}

.down__content-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(10, 14, 39, 0.8);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer img {
  filter: none;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a,
.footer p,
.footer a {
  color: var(--text-secondary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer a:hover {
  color: var(--text-accent) !important;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.fs-custom {
  font-size: 0.95rem !important;
  line-height: 1.6;
  color: var(--text-secondary) !important;
  font-family: 'Inter', sans-serif !important;
}

/* ============================================
   IMAGE EFFECTS
   ============================================ */

.hero-section img,
.contain img,
#validation img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6)) brightness(0.9);
  transition: all 0.4s ease;
  position: relative;
  z-index: 5;
}

.hero-section img:hover,
.contain img:hover,
#validation img:hover {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.7)) brightness(0.95);
  transform: scale(1.05) translateY(-5px);
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  }
}

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .text-title {
    font-size: 2.5rem;
  }
  
  .head-title {
    font-size: 2rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .new__link,
  .down__link {
    min-width: 100%;
    max-width: 400px;
  }
  
  .text-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .text-slogan {
    text-align: center;
  }
  
  .head-title {
    font-size: 1.75rem;
  }
  
  .download_btn-wrap {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .text-title {
    font-size: 1.75rem;
  }
  
  .head-title {
    font-size: 1.5rem;
  }
  
  .new__link,
  .down__link {
    font-size: 0.9rem;
    padding: 0 1.5rem 0 4rem !important;
  }
  
  .new__link.apple::after,
  .down__link.apple::after {
    left: 25px;
    width: 26px;
    height: 30px;
  }
  
  .new__link.google::after,
  .down__link.google::after {
    left: 25px;
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
  background: linear-gradient(135deg, #b87fff 0%, #9d4ffd 50%, #7c3fd1 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  padding: 0 0.2em;
  font-weight: 900 !important;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(157, 79, 253, 0.8)) 
          drop-shadow(0 0 40px rgba(157, 79, 253, 0.6))
          drop-shadow(0 0 60px rgba(157, 79, 253, 0.4));
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 20px rgba(157, 79, 253, 0.8)) 
            drop-shadow(0 0 40px rgba(157, 79, 253, 0.6))
            drop-shadow(0 0 60px rgba(157, 79, 253, 0.4));
  }
  50% { 
    filter: drop-shadow(0 0 25px rgba(157, 79, 253, 1)) 
            drop-shadow(0 0 50px rgba(157, 79, 253, 0.8))
            drop-shadow(0 0 80px rgba(157, 79, 253, 0.6));
  }
}

.glow-text {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.neon-border {
  border: 2px solid var(--neon-cyan);
  box-shadow: 
    0 0 10px rgba(0, 212, 255, 0.5),
    inset 0 0 10px rgba(0, 212, 255, 0.2);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 10px;
  background: var(--bg-primary);
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-secondary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-primary);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top-color: var(--neon-cyan);
  border-right-color: var(--neon-purple);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   PARTICLE EFFECTS & DECORATIONS
   ============================================ */

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.particle-1 {
  width: 3px;
  height: 3px;
  background: var(--neon-cyan);
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.particle-2 {
  width: 4px;
  height: 4px;
  background: var(--neon-purple);
  top: 60%;
  right: 15%;
  animation: float 8s ease-in-out infinite reverse;
  box-shadow: 0 0 10px var(--neon-purple);
}

.particle-3 {
  width: 2px;
  height: 2px;
  background: var(--neon-pink);
  bottom: 30%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 0 10px var(--neon-pink);
}

/* Enhanced Hover Effects */
.nav-item img {
  transition: transform 0.3s ease;
}

.nav-item:hover img {
  transform: scale(1.1);
}

/* Section Transitions */
section {
  position: relative;
  z-index: 1;
}

/* Custom Gradient Borders */
.gradient-border {
  position: relative;
  border-radius: 20px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: var(--gradient-secondary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Enhanced Link Styles */
a {
  transition: color 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

/* Theme Color Override for Inline Styles */
[style*="background-color: #F5F8FF"] {
  background-color: rgba(19, 24, 46, 0.5) !important;
}

/* Enhanced Image Glow on Scroll */
@keyframes imageGlow {
  0%, 100% {
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 25px 50px rgba(139, 92, 246, 0.5));
  }
}

.hero-section img.img-fluid,
#validation img.img-fluid {
  animation: imageGlow 4s ease-in-out infinite;
}

/* Improved Text Readability */
.text-slogan,
.fs-custom {
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* Enhanced Button Press Effect */
.new__link:active,
.down__link:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

/* Smooth Transitions - excluding font properties */
a, button, .nav-link, .new__link, .down__link {
  transition-property: color, background-color, border-color, text-decoration-color, opacity, box-shadow, transform, filter;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .text-title,
  .head-title,
  .dl-text {
    -webkit-text-fill-color: white;
    text-shadow: 
      0 2px 10px rgba(157, 79, 253, 0.2),
      0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .new__link,
  .down__link {
    border-width: 3px;
  }
}

/* Dark Mode Enhancements (if user has dark mode preference) */
@media (prefers-color-scheme: dark) {
  body {
    background: var(--bg-primary);
  }
}

