/* Qubx 2 Vaporwave Color Palette */
:root {
  --color-neon-cyan: #33FFCC;
  --color-hover-cyan: #4DFFE6;
  --color-bright-cyan: #4DE6E6;
  --color-neon-magenta: #FF33CC;
  --color-purple: #9966FF;
  --color-golden: #FFE64D;
  --color-bg-dark: #0D0D1A;
  --color-bg-panel: #1A334D;
  --color-bg-panel-hover: #264059;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background: linear-gradient(to bottom, var(--color-bg-dark), #330033, var(--color-bg-dark));
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  position: relative;
  z-index: 10;
}

/* Background effects */
.bg-wrapper {
  position: relative;
  min-height: 100vh;
}

.grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: 
    linear-gradient(rgba(51, 255, 204, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 255, 204, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-20%);
  transform-origin: center top;
}

.glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  transition: all 1s ease-out;
  pointer-events: none;
}

.glow-orb-1 {
  background: radial-gradient(circle, var(--color-neon-magenta), transparent);
  opacity: 0.3;
}

.glow-orb-2 {
  background: radial-gradient(circle, var(--color-neon-cyan), transparent);
  opacity: 0.2;
  transition-duration: 1.5s;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-out;
}

.title-wrapper {
  position: relative;
  display: inline-block;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff 0%, var(--color-neon-cyan) 50%, var(--color-neon-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(51, 255, 204, 0.3),
      0 0 40px rgba(255, 51, 204, 0.2),
      0 0 60px rgba(153, 102, 255, 0.1);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(51, 255, 204, 0.5),
      0 0 60px rgba(255, 51, 204, 0.4),
      0 0 90px rgba(153, 102, 255, 0.3);
  }
}

.scanlines {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #fff 2px, #fff 4px);
}

.subtitle {
  font-size: 1.25rem;
  color: var(--color-bright-cyan);
  letter-spacing: 0.1em;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  h1 {
    font-size: 8rem;
  }
}

/* Card Styles */
.card {
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.card:nth-child(2) {
  animation: slideInRight 0.8s ease-out;
}

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  filter: blur(40px);
  transition: filter 0.5s;
}

.card:hover .card-glow {
  filter: blur(60px);
}

.card-classic .card-glow {
  background: linear-gradient(to bottom right, rgba(51, 255, 204, 0.2), rgba(77, 230, 230, 0.2));
}

.card-new .card-glow {
  background: linear-gradient(to bottom right, rgba(255, 51, 204, 0.2), rgba(153, 102, 255, 0.2));
}

.card-content {
  position: relative;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid;
  transition: border-color 0.3s;
}

.card-classic .card-content {
  border-color: rgba(51, 255, 204, 0.3);
}

.card-classic:hover .card-content {
  border-color: rgba(51, 255, 204, 0.7);
}

.card-new .card-content {
  border-color: rgba(255, 51, 204, 0.3);
}

.card-new:hover .card-content {
  border-color: rgba(255, 51, 204, 0.7);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.status-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.card-classic .status-dot {
  background-color: var(--color-neon-cyan);
}

.card-new .status-dot {
  background-color: var(--color-neon-magenta);
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.card-classic .card-title {
  text-shadow: 0 0 20px rgba(51, 255, 204, 0.5);
}

.card-new .card-title {
  text-shadow: 0 0 20px rgba(255, 51, 204, 0.5);
}

.badge-new {
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 51, 204, 0.3);
  color: #FFB3E6;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 51, 204, 0.5);
}

.card-description {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-classic .card-description {
  color: rgba(77, 230, 230, 0.9);
}

.card-new .card-description {
  color: rgba(255, 179, 230, 0.9);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  border: 1px solid;
}

.card-classic .tag {
  background: rgba(51, 255, 204, 0.2);
  border-color: rgba(51, 255, 204, 0.3);
}

.card-new .tag {
  background: rgba(255, 51, 204, 0.2);
  border-color: rgba(255, 51, 204, 0.3);
}

.features-list {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

.card-classic .features-list {
  color: rgba(77, 230, 230, 0.7);
}

.card-new .features-list {
  color: rgba(255, 179, 230, 0.7);
}

.features-list p {
  margin: 0.25rem 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: block;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #1A334D, #264059);
  border: 1px solid var(--color-neon-cyan);
  color: var(--color-neon-cyan);
  box-shadow: 0 0 30px rgba(51, 255, 204, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, #264059, #336680);
  box-shadow: 0 0 50px rgba(51, 255, 204, 0.5);
  transform: scale(1.05);
}

.btn-secondary {
  background: rgba(26, 51, 77, 0.5);
  border: 1px solid rgba(51, 255, 204, 0.3);
  color: var(--color-neon-cyan);
}

.btn-secondary:hover {
  background: rgba(38, 64, 89, 0.5);
  border-color: rgba(51, 255, 204, 0.7);
}

/* Features Section */
.features {
  background: rgba(13, 13, 26, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(153, 102, 255, 0.3);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.features-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--color-neon-cyan), var(--color-neon-magenta), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.feature-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-1 .feature-title {
  color: var(--color-neon-cyan);
}

.feature-2 .feature-title {
  color: var(--color-neon-magenta);
}

.feature-3 .feature-title {
  color: var(--color-purple);
}

.feature-description {
  font-size: 0.875rem;
  color: rgba(77, 230, 230, 0.8);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 3rem;
  color: rgba(77, 230, 230, 0.6);
  font-size: 0.875rem;
}

footer a {
  color: var(--color-purple);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--color-neon-cyan);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive */
@media (max-width: 767px) {
  h1 {
    font-size: 4rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
}
