@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
  --phosphorescent: #39FF14;
  --deep-black: #000000;
  --off-white: #F5F5F5;
  --metallic-gray: #2A2A2A;
  --red-500: #EF4444;
  --yellow-500: #EAB308;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--deep-black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.font-orbitron {
  font-family: 'Orbitron', monospace;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}

/* Color Classes */
.text-phosphorescent {
  color: var(--phosphorescent);
}

.text-deep-black {
  color: var(--deep-black);
}

.text-off-white {
  color: var(--off-white);
}

.text-metallic-gray {
  color: var(--metallic-gray);
}

.text-red-400 {
  color: #F87171;
}

.text-red-500 {
  color: var(--red-500);
}

.text-gray-300 {
  color: #D1D5DB;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-500 {
  color: #6B7280;
}

.text-yellow-500 {
  color: var(--yellow-500);
}

/* Background Classes */
.bg-phosphorescent {
  background-color: var(--phosphorescent);
}

.bg-deep-black {
  background-color: var(--deep-black);
}

.bg-metallic-gray {
  background-color: var(--metallic-gray);
}

.bg-red-500 {
  background-color: var(--red-500);
}

.bg-yellow-500 {
  background-color: var(--yellow-500);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--phosphorescent) 0%, #00FF88 50%, var(--phosphorescent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

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

/* Matrix Background */
.matrix-bg {
  background: 
    radial-gradient(circle at 20% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--deep-black) 0%, #0A0A0A 100%);
  position: relative;
}

.matrix-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 98%, rgba(57, 255, 20, 0.03) 100%),
    linear-gradient(0deg, transparent 98%, rgba(57, 255, 20, 0.03) 100%);
  background-size: 50px 50px;
  animation: matrix-move 20s linear infinite;
}

@keyframes matrix-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Particles Container */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particles-container::before,
.particles-container::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--phosphorescent);
  border-radius: 50%;
  animation: particle-float 6s ease-in-out infinite;
}

.particles-container::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particles-container::after {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes particle-float {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-elements::before {
  content: '∞';
  position: absolute;
  top: 30%;
  left: 80%;
  font-size: 2rem;
  color: var(--phosphorescent);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.floating-elements::after {
  content: '∑';
  position: absolute;
  top: 70%;
  left: 20%;
  font-size: 1.5rem;
  color: var(--phosphorescent);
  opacity: 0.2;
  animation: float 10s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes glow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
  }
  50% { 
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.8), 0 0 60px rgba(57, 255, 20, 0.3);
  }
}

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

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes loading-bar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Animation Classes */
.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pulse {
  animation: pulse-slow 2s ease-in-out infinite;
}

.animate-loading-bar {
  animation: loading-bar 3s ease-in-out infinite;
}

/* Layout Classes */
.min-h-screen {
  min-height: 100vh;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* Flexbox */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Spacing */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-2 { padding-top: 0.5rem; }
.pt-8 { padding-top: 2rem; }

.pb-3 { padding-bottom: 0.75rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.ml-3 { margin-left: 0.75rem; }

/* Typography Sizes */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-8xl { font-size: 6rem; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.line-through { text-decoration: line-through; }

.tracking-wide { letter-spacing: 0.025em; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.border-phosphorescent\/20 {
  border-color: rgba(57, 255, 20, 0.2);
}

.border-phosphorescent\/30 {
  border-color: rgba(57, 255, 20, 0.3);
}

.border-metallic-gray {
  border-color: var(--metallic-gray);
}

.border-red-500\/20 {
  border-color: rgba(239, 68, 68, 0.2);
}

.border-red-500\/30 {
  border-color: rgba(239, 68, 68, 0.3);
}

/* Backgrounds with Opacity */
.bg-phosphorescent\/10 {
  background-color: rgba(57, 255, 20, 0.1);
}

.bg-phosphorescent\/20 {
  background-color: rgba(57, 255, 20, 0.2);
}

.bg-red-500\/10 {
  background-color: rgba(239, 68, 68, 0.1);
}

.bg-red-500\/20 {
  background-color: rgba(239, 68, 68, 0.2);
}

.bg-metallic-gray\/30 {
  background-color: rgba(42, 42, 42, 0.3);
}

.bg-metallic-gray\/50 {
  background-color: rgba(42, 42, 42, 0.5);
}

.bg-deep-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-deep-black\/95 {
  background-color: rgba(0, 0, 0, 0.95);
}

/* Gradients */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-phosphorescent\/10 {
  --tw-gradient-from: rgba(57, 255, 20, 0.1);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(57, 255, 20, 0));
}

.from-phosphorescent\/20 {
  --tw-gradient-from: rgba(57, 255, 20, 0.2);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(57, 255, 20, 0));
}

.from-metallic-gray {
  --tw-gradient-from: var(--metallic-gray);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(42, 42, 42, 0));
}

.from-deep-black {
  --tw-gradient-from: var(--deep-black);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.to-deep-black {
  --tw-gradient-to: var(--deep-black);
}

.to-metallic-gray {
  --tw-gradient-to: var(--metallic-gray);
}

.to-red-900\/20 {
  --tw-gradient-to: rgba(127, 29, 29, 0.2);
}

/* Backdrop Blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* Pointer Events */
.pointer-events-none {
  pointer-events: none;
}

/* Opacity */
.opacity-10 { opacity: 0.1; }
.opacity-60 { opacity: 0.6; }

/* Transforms */
.transform {
  transform: var(--tw-transform);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.translate-x-full {
  transform: translateX(100%);
}

/* Transitions */
.transition-all {
  transition-property: all;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}

.transition-transform {
  transition-property: transform;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Shadows */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Hero Section Specific Styles */
.hero-guarantee {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-guarantee {
    font-size: 3.5rem;
    letter-spacing: 0.12em;
  }
}

@media (min-width: 1024px) {
  .hero-guarantee {
    font-size: 4.5rem;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 1280px) {
  .hero-guarantee {
    font-size: 5rem;
    letter-spacing: 0.08em;
  }
}

/* Background Images Responsive Styles */
section img {
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  section img {
    opacity: 0.1 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  section img {
    opacity: 0.12 !important;
  }
}

@media (min-width: 1025px) {
  section img {
    opacity: 0.15 !important;
  }
}

/* Navigation Styles */
nav {
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: var(--off-white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--phosphorescent) !important;
  background-color: rgba(57, 255, 20, 0.1);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--phosphorescent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:active {
  transform: translateY(0);
}

/* Button Styles */
.cta-primary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--phosphorescent);
  transition: width 0.3s ease;
  z-index: -1;
}

.cta-secondary:hover::before {
  width: 100%;
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
  position: relative;
}

.card-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

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

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
}

/* Form Styles */
input, textarea {
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
  transform: scale(1.02);
}

/* Toast Styles */
#toast {
  box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

#toast.show {
  transform: translateX(0);
}

/* Loading Screen */
#loading-screen {
  background: linear-gradient(135deg, var(--deep-black) 0%, #0A0A0A 100%);
}

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--metallic-gray);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#mobile-menu.show {
  display: block;
}

#mobile-menu button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--off-white) !important;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

#mobile-menu button:hover {
  color: var(--phosphorescent) !important;
  background-color: rgba(57, 255, 20, 0.1);
  padding-left: 2rem;
}

#mobile-menu button:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--off-white) !important;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
  cursor: pointer;
}

.mobile-nav-link:hover {
  color: var(--phosphorescent) !important;
  background-color: rgba(57, 255, 20, 0.1);
  padding-left: 2rem;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

/* Responsive Navigation Improvements */
@media (max-width: 767px) {
  nav .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  nav .h-16 {
    height: 4rem;
  }
  
  .font-orbitron.text-xl {
    font-size: 1.1rem;
  }
  
  .text-2xl.mr-3 {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
  }
  
  .hidden.md\\:flex {
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-link {
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
  }
  
  .hidden.md\\:flex {
    gap: 1rem;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .md\:flex {
    display: flex !important;
  }
  
  .md\:hidden {
    display: none !important;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-6xl {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-8xl {
    font-size: 6rem;
  }
  
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .sm\:flex-row {
    flex-direction: row;
  }
}

/* Utility Classes */
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }

.h-1 { height: 0.25rem; }
.h-3 { height: 0.75rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-8 { top: 2rem; }

.right-0 { right: 0; }
.right-4 { right: 1rem; }

.bottom-4 { bottom: 1rem; }
.bottom-8 { bottom: 2rem; }

.left-0 { left: 0; }
.left-4 { left: 1rem; }

.block { display: block; }
.hidden { display: none; }

.resize-none { resize: none; }

.cursor-pointer { cursor: pointer; }

.text-left { text-align: left; }

/* Focus Styles */
.focus\:border-phosphorescent:focus {
  border-color: var(--phosphorescent);
}

.focus\:outline-none:focus {
  outline: none;
}

/* Hover Styles */
.hover\:text-phosphorescent:hover {
  color: var(--phosphorescent);
}

.hover\:bg-phosphorescent:hover {
  background-color: var(--phosphorescent);
}

.hover\:bg-white:hover {
  background-color: white;
}

.hover\:text-deep-black:hover {
  color: var(--deep-black);
}

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

::-webkit-scrollbar-track {
  background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
  background: var(--phosphorescent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2ECC0A;
}

/* Selection */
::selection {
  background: var(--phosphorescent);
  color: var(--deep-black);
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
}

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

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .text-gray-300,
  .text-gray-400 {
    color: var(--off-white);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .dark {
    color-scheme: dark;
  }
}

#mobile-menu {
  position: fixed;
  top: 4rem; /* Altura del navbar */
  right: 0;
  width: 70%;
  max-width: 300px;
  height: calc(100vh - 4rem);
  z-index: 90;
  padding: 1rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  overflow-y: auto;
}

#mobile-menu.show {
  transform: translateX(0) !important;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--off-white);
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--phosphorescent);
}