/**
 * orcs.cloud Landing Page Styles
 * Custom styles (Tailwind utilities via CDN)
 */

/* Custom base styles */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient backgrounds */
.gradient-bg-orcs {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

.gradient-bg-dark {
  background: linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
}

/* Radial glow effect */
.radial-glow {
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}

/* Grid pattern background */
.grid-pattern {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Animated gradient border */
.border-animate {
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(34, 197, 94, 0.3);
  }
  50% {
    border-color: rgba(34, 197, 94, 0.6);
  }
}

/* Code syntax highlighting */
.token.comment {
  color: #6a737d;
}
.token.keyword {
  color: #22c55e;
}
.token.string {
  color: #60a5fa;
}
.token.function {
  color: #f59e0b;
}
