@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

:root {
  font-family: "Inter", sans-serif;
  --glow-indigo: rgba(99, 102, 241, 0.5);
  --bg-primary: #0b0c10;
}

body {
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(at 10% 10%, #2e2a4f 0px, transparent 60%),
    radial-gradient(at 80% 20%, #15182b 0px, transparent 60%),
    radial-gradient(at 40% 70%, #1a1e35 0px, transparent 60%);
  color: #e5e7eb;
  overflow-x: hidden;
}

header {
  backdrop-filter: blur(12px);
  background: rgba(17, 20, 28, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.text-gradient {
  background: linear-gradient(270deg, #7f5af0, #00c6ff, #ff4ecd, #7f5af0);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShift 18s ease infinite;
}

@keyframes textShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.btn-rgb {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transition: all 0.24s ease;
}

.btn-rgb:hover {
  box-shadow: 0 0 34px rgba(236, 72, 153, 0.48), 0 0 56px rgba(99, 102, 241, 0.34);
  transform: translateY(-1px);
}

.card {
  background: rgba(30, 33, 46, 0.76);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.card:hover {
  border-color: rgba(99, 102, 241, 0.36);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.16);
  transform: translateY(-2px);
}

.app-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

footer {
  background: rgba(10, 12, 18, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

#contact-message {
  min-height: 1.35rem;
  color: #93c5fd;
}

#contact-message[data-state="success"] {
  color: #4ade80;
}

#contact-message[data-state="error"] {
  color: #fca5a5;
}

.contact-turnstile {
  display: flex;
  justify-content: center;
}

#contact-turnstile-widget {
  width: 100%;
  max-width: 320px;
}
