/* AOPL WEB (aoplweb.in) - Bespoke Styling System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --primary-glow: rgba(0, 242, 254, 0.4);
  --secondary-glow: rgba(127, 0, 255, 0.35);
  --accent-cyan: #00f2fe;
  --accent-purple: #7f00ff;
  --accent-blue: #4facfe;
  --dark-bg: #070a12;
  --card-bg: rgba(15, 23, 42, 0.75);
  --card-border: rgba(255, 255, 255, 0.08);
}

* {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, .font-display {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070a12;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Glassmorphism Classes */
.glass-card {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glass-card-hover {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-hover:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 50px -12px rgba(0, 242, 254, 0.15), 0 0 30px -5px rgba(79, 172, 254, 0.2);
}

.glass-nav {
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #c084fc 0%, #7f00ff 50%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fde047 0%, #eab308 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradient Buttons */
.btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #050d1a;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

/* Ambient Background Blobs */
.blob-cyan {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.blob-purple {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 0, 255, 0.14) 0%, rgba(0,0,0,0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* Grid overlay background */
.bg-grid-pattern {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.bg-dot-pattern {
  background-image: radial-gradient(rgba(0, 242, 254, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Pulse badge animation */
@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

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

/* Floating animation */
@keyframes floatUpAndDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

.animate-float-delayed {
  animation: floatUpAndDown 4.5s infinite ease-in-out 1.5s;
}

/* Interactive slider track styling */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #1e293b;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
input[type=range]::-webkit-slider-thumb {
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #00f2fe;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
  box-shadow: 0 0 12px #00f2fe;
}

/* Live Subdomain terminal visualizer */
.terminal-code {
  font-family: 'Consolas', 'Courier New', monospace;
}

/* Highlight badge */
.badge-neon {
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
}
.badge-purple {
  background: rgba(127, 0, 255, 0.12);
  border: 1px solid rgba(127, 0, 255, 0.3);
  color: #c084fc;
}
