/* Cyber Neon Theme Custom Styles */

/* Keyframe Animations */
@keyframes cyber-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.7), 0 0 40px rgba(0, 255, 255, 0.3);
  }
}

@keyframes text-glow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.5);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Added parallax scroll animation */
@keyframes parallax-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(-5px) translateX(-3px);
  }
  75% {
    transform: translateY(-15px) translateX(2px);
  }
}

/* Added particle system animations */
@keyframes particle-drift {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(-20px) scale(1);
  }
  100% {
    transform: translateY(-10vh) translateX(30px) scale(0);
    opacity: 0;
  }
}

@keyframes particle-drift-2 {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
    transform: translateY(85vh) translateX(-15px) scale(1) rotate(90deg);
  }
  85% {
    opacity: 0.8;
    transform: translateY(15vh) translateX(25px) scale(1) rotate(270deg);
  }
  100% {
    transform: translateY(-10vh) translateX(-10px) scale(0) rotate(360deg);
    opacity: 0;
  }
}

@keyframes particle-drift-3 {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
    transform: translateY(80vh) translateX(20px) scale(1);
  }
  80% {
    opacity: 0.6;
    transform: translateY(20vh) translateX(-30px) scale(1);
  }
  100% {
    transform: translateY(-10vh) translateX(15px) scale(0);
    opacity: 0;
  }
}

/* Added new keyframe animations for button effects */
@keyframes button-glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4), 0 0 35px rgba(0, 255, 255, 0.3);
  }
}

@keyframes active-glow {
  0% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.7), 0 0 45px rgba(255, 0, 255, 0.3);
  }
}

/* Added pagination pulse animation */
@keyframes pagination-pulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6), 0 0 35px rgba(255, 0, 255, 0.2);
  }
}

/* Added monogram glow animation */
@keyframes monogram-glow {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3), inset 0 0 15px rgba(255, 0, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5), inset 0 0 25px rgba(255, 0, 255, 0.2);
  }
}

/* Cyber Grid Background */
.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-pulse 4s ease-in-out infinite;
}

/* Floating Holograms */
.floating-hologram {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-hologram-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-hologram-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-hologram-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

/* Added parallax elements */
.parallax-element {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.parallax-slow {
  animation: parallax-float 8s ease-in-out infinite;
}

.parallax-medium {
  animation: parallax-float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.parallax-fast {
  animation: parallax-float 4s ease-in-out infinite;
  animation-delay: -4s;
}

/* Added particle system */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.particle-1 {
  left: 10%;
  animation: particle-drift 12s linear infinite;
  animation-delay: 0s;
}

.particle-2 {
  left: 30%;
  animation: particle-drift-2 15s linear infinite;
  animation-delay: -3s;
  background: rgba(255, 0, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.particle-3 {
  left: 50%;
  animation: particle-drift-3 10s linear infinite;
  animation-delay: -6s;
}

.particle-4 {
  left: 70%;
  animation: particle-drift 14s linear infinite;
  animation-delay: -9s;
}

.particle-5 {
  left: 90%;
  animation: particle-drift-2 11s linear infinite;
  animation-delay: -12s;
  background: rgba(255, 0, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

/* Glow Effects */
.cyber-glow {
  animation: cyber-glow 3s ease-in-out infinite;
}

.cyber-text-glow {
  animation: text-glow 4s ease-in-out infinite;
}

/* Added casino monogram styles */
.casino-monogram {
  position: relative;
  transition: all 0.3s ease;
  animation: monogram-glow 3s ease-in-out infinite alternate;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 255, 0.4);
}

.casino-monogram:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6), inset 0 0 30px rgba(255, 0, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.8);
}

.casino-monogram span {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Buttons */
.cyber-btn-primary {
  @apply px-6 py-3 bg-gradient-to-r from-neon-magenta to-neon-cyan text-cyber-dark font-bold rounded-lg;
  @apply hover:shadow-lg transition-all duration-300;
  @apply transform hover:scale-105;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), 0 0 30px rgba(0, 255, 255, 0.2);
  animation: button-glow 2s ease-in-out infinite alternate;
}

.cyber-btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.4);
  transform: scale(1.05) translateY(-2px);
}

.sort-btn {
  @apply px-4 py-2 bg-cyber-light border border-neon-cyan/30 text-neon-cyan rounded-lg;
  @apply hover:bg-neon-cyan/10 transition-all duration-300 text-sm font-medium;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.sort-btn:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-1px);
  border-color: rgba(0, 255, 255, 0.6);
}

.sort-btn.active {
  @apply bg-neon-cyan text-cyber-dark border-neon-cyan;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  animation: active-glow 1.5s ease-in-out infinite alternate;
}

/* Casino Cards */
.casino-card {
  @apply transform hover:scale-[1.02] transition-all duration-300;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
}

.casino-card:hover {
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

/* Enhanced prose styling for cyber theme */
.prose-cyber {
  color: #e5e7eb;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: none;
}

.prose-cyber h1 {
  font-size: 2.5rem;
  color: #00ffff;
  font-family: "Orbitron", monospace;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.prose-cyber h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #ff00ff, transparent);
  border-radius: 2px;
}

.prose-cyber h2 {
  font-size: 2rem;
  color: #00ffff;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(0, 255, 255, 0.4);
  padding-bottom: 0.75rem;
  position: relative;
}

.prose-cyber h2::before {
  content: "▶";
  color: #ff00ff;
  margin-right: 0.5rem;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
}

.prose-cyber h3 {
  font-size: 1.5rem;
  color: #ff00ff;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.prose-cyber h3::before {
  content: "◆";
  color: #00ffff;
  margin-right: 0.5rem;
  font-size: 0.8em;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
}

.prose-cyber h4 {
  font-size: 1.25rem;
  color: #ffffff;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.prose-cyber p {
  color: #d1d5db;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  text-align: justify;
  font-size: 1.05rem;
  letter-spacing: 0.025em;
}

.prose-cyber p:first-of-type {
  font-size: 1.15rem;
  color: #f3f4f6;
  font-weight: 400;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.prose-cyber strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  padding: 0.1em 0.3em;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-cyber em {
  color: #ff00ff;
  font-style: italic;
  text-shadow: 0 0 6px rgba(255, 0, 255, 0.4);
  font-weight: 400;
}

.prose-cyber a {
  color: #00ffff;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
  padding: 0.1em 0.2em;
  border-radius: 3px;
  font-weight: 500;
}

.prose-cyber a:hover {
  color: #ff00ff;
  border-bottom-color: rgba(255, 0, 255, 0.6);
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
  background: rgba(255, 0, 255, 0.1);
  transform: translateY(-1px);
}

.prose-cyber ul,
.prose-cyber ol {
  margin: 2rem 0;
  padding-left: 2rem;
  background: rgba(0, 255, 255, 0.02);
  border-left: 3px solid rgba(0, 255, 255, 0.3);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.prose-cyber li {
  color: #d1d5db;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  position: relative;
}

.prose-cyber ul li::marker {
  color: #00ffff;
  font-size: 1.2em;
}

.prose-cyber ol li::marker {
  color: #ff00ff;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.prose-cyber li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.6);
}

.prose-cyber ol li::before {
  display: none;
}

.prose-cyber blockquote {
  border-left: 4px solid #00ffff;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.05), transparent);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-style: italic;
  color: #f3f4f6;
  border-radius: 0 12px 12px 0;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.prose-cyber blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3rem;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  font-family: "Times New Roman", serif;
}

.prose-cyber blockquote::after {
  content: '"';
  position: absolute;
  bottom: -20px;
  right: 15px;
  font-size: 3rem;
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
  font-family: "Times New Roman", serif;
}

.prose-cyber code {
  background: rgba(0, 255, 255, 0.15);
  color: #00ffff;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.prose-cyber pre {
  background: rgba(10, 10, 15, 0.9);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  overflow-x: auto;
  margin: 2.5rem 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}

.prose-cyber pre::before {
  content: "CODE";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #0a0a0f;
  color: #00ffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.prose-cyber pre code {
  background: none;
  border: none;
  padding: 0;
  color: #e5e7eb;
  text-shadow: none;
}

.prose-cyber table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.prose-cyber th,
.prose-cyber td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.prose-cyber th {
  background: rgba(0, 255, 255, 0.15);
  color: #00ffff;
  font-weight: 700;
  font-family: "Orbitron", monospace;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.prose-cyber td {
  color: #d1d5db;
  font-weight: 300;
  font-size: 1.05rem;
}

.prose-cyber tr:hover {
  background: rgba(0, 255, 255, 0.05);
}

.prose-cyber hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
  margin: 4rem 0;
  border-radius: 2px;
  position: relative;
}

.prose-cyber hr::after {
  content: "◆";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0f;
  color: #ff00ff;
  padding: 0 0.5rem;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
}

/* Added special highlight boxes for important content */
.prose-cyber .highlight-box {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}

.prose-cyber .highlight-box::before {
  content: "💡 IMPORTANT";
  position: absolute;
  top: -12px;
  left: 25px;
  background: #0a0a0f;
  color: #00ffff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.prose-cyber .warning-box {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 0, 0, 0.1));
  border: 2px solid rgba(255, 165, 0, 0.4);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 165, 0, 0.1);
}

.prose-cyber .warning-box::before {
  content: "⚠️ WARNING";
  position: absolute;
  top: -12px;
  left: 25px;
  background: #0a0a0f;
  color: #ffa500;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid rgba(255, 165, 0, 0.4);
  text-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

/* Enhanced spacing and visual hierarchy */
.prose-cyber > *:first-child {
  margin-top: 0;
}

.prose-cyber > *:last-child {
  margin-bottom: 0;
}

/* Mobile responsive prose styling */
@media (max-width: 768px) {
  .prose-cyber {
    font-size: 1rem;
    line-height: 1.7;
  }

  .prose-cyber h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .prose-cyber h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .prose-cyber h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }

  .prose-cyber blockquote {
    padding: 1rem 1.5rem;
    margin: 2rem 0;
  }

  .prose-cyber ul,
  .prose-cyber ol {
    padding-left: 1.5rem;
  }

  .prose-cyber pre {
    padding: 1.5rem;
  }

  .prose-cyber th,
  .prose-cyber td {
    padding: 1rem;
  }
}

/* Prose Styling */
.prose {
  @apply text-gray-300;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  @apply text-white font-cyber;
}

.prose h2 {
  @apply text-neon-cyan;
}

.prose a {
  @apply text-neon-cyan hover:text-neon-magenta transition-colors;
}

.prose strong {
  @apply text-white;
}

.prose ul li::marker {
  @apply text-neon-cyan;
}

/* Added navigation hover effects */
.nav-link {
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
  transform: translateY(-1px);
}

/* Enhanced pagination button styles with cyber theme */
.pagination-btn {
  @apply px-4 py-2 bg-cyber-light border border-neon-cyan/30 text-neon-cyan rounded-lg;
  @apply hover:bg-neon-cyan/10 transition-all duration-300 flex items-center gap-2;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  transform: translateY(-1px);
  border-color: rgba(0, 255, 255, 0.6);
}

.pagination-btn:disabled {
  @apply opacity-50 cursor-not-allowed;
  box-shadow: none;
}

.page-number-btn {
  @apply px-3 py-2 bg-cyber-light border border-neon-cyan/30 text-neon-cyan rounded;
  @apply hover:bg-neon-cyan/10 transition-all duration-300 text-sm font-medium;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  min-width: 40px;
}

.page-number-btn:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  transform: translateY(-1px);
  border-color: rgba(0, 255, 255, 0.6);
}

.page-number-btn.active {
  @apply bg-neon-cyan text-cyber-dark border-neon-cyan font-bold;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  animation: pagination-pulse 2s ease-in-out infinite alternate;
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-hologram {
    width: 60px;
    height: 60px;
  }

  .cyber-grid {
    background-size: 30px 30px;
  }

  /* Hide particles on mobile for performance */
  .particle-container {
    display: none;
  }

  /* Mobile pagination adjustments */
  .pagination-btn {
    @apply px-3 py-2 text-sm;
  }

  .page-number-btn {
    @apply px-2 py-1 text-xs;
    min-width: 32px;
  }

  /* Mobile monogram adjustments */
  .casino-monogram {
    width: 60px;
    height: 60px;
  }

  .casino-monogram span {
    font-size: 1.2rem;
  }
}

/* Enhanced smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ff00ff, #00ffff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #ff00ff, #00ffff);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
