:root {
  --primary-color: #36465d;
  --accent-color: #ff00d4;
  --secondary-accent: #00d4ff;
  --dark-bg: #0f1219;
  --darker-bg: #0a0c10;
  --text-color: #e0e0e0;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-color);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-primary-gradient {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-accent)
  );
}

.text-primary-gradient {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-info-gradient {
  background: linear-gradient(135deg, #ff9900, #ff0066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.glass-nav {
  background: rgba(15, 18, 25, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-darker {
  background-color: var(--darker-bg);
}
.bg-dark-card {
  background-color: #1a1f2e;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 80px;
  background: radial-gradient(
    circle at top right,
    #1e1124 0%,
    var(--dark-bg) 60%
  );
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.05;
  z-index: 1;
}

.search-box {
  transition: all 0.3s ease;
}

.search-box:focus-within {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.btn-gradient {
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-accent)
  );
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 212, 0.3);
  color: white;
}

/* Animations */
.animate-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  top: 20%;
  left: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-accent);
  bottom: 10%;
  right: -100px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Feature Cards */
.feature-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Accordion */
.accordion-button:not(.collapsed) {
  color: var(--secondary-accent);
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1);
}

/* Inputs */
#urlInput::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#urlInput {
  color: white !important;
}
.no-underline {
  text-decoration: none !important;
}
.down-btn {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
}
