body {
  background-color: #050505;
  color: #ffffff;
  overflow-x: hidden;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll Animations Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Price Card Hover Effect */
.price-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px -10px rgba(168, 85, 247, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}



.reveal .reveal-item {
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active .reveal-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* delays */
.delay-150 {
  transition-delay: 0.15s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-500 {
  transition-delay: 0.5s;
}


.device-card {
  transition:
    transform 0.45s cubic-bezier(.4, 0, .2, 1),
    opacity 0.35s ease,
    filter 0.35s ease,
    box-shadow 0.35s ease,
    z-index 0.2s;
  will-change: transform;
}

/* Hover focus */
.device-card:hover {
  transform: translateY(-22px) scale(1.04);
  z-index: 60;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

/* Otros dispositivos pierden protagonismo */
.relative:hover .device-card:not(:hover) {
  opacity: 0.45;
  filter: blur(2px);
  transform: translateY(10px) scale(0.96);
}


.device-card:hover {
  transform: translateY(-22px) scale(1.04) rotate(-1deg);
}




.tag {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
}

article:hover {
  transform-style: preserve-3d;
}


/* Navbar */
.nav-link {
  @apply text-gray-300 hover:text-white transition-colors relative;
}

.nav-link::after {
  content: '';
  @apply absolute left-0 -bottom-1 w-0 h-[2px] bg-purple-500 transition-all duration-300;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-mobile {
  @apply text-gray-300 hover:text-white transition-colors py-2;
}
