@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-cyan: #00d4ff;
  --primary-pink: #ff6b9d;
  --primary-purple: #a855f7;
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --dark-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
  --gradient-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
  --glow-pink: 0 0 20px rgba(255, 107, 157, 0.5), 0 0 40px rgba(255, 107, 157, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.dark-theme {
  background: var(--dark-bg);
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.neon-text {
  color: var(--primary-cyan);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
  font-weight: 700;
}

/* Typography */
.title {
  color: var(--text-primary);
  font-weight: 700;
}

.subtitle {
  color: var(--text-secondary);
  font-weight: 400;
}

/* Buttons */
.button {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

a.button {
  cursor: pointer;
}

button.button {
  cursor: pointer;
}

.button.is-primary {
  background: var(--gradient-cyan);
  color: var(--dark-bg);
  box-shadow: var(--glow-cyan);
}

.button.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
}

.button.is-danger {
  background: var(--gradient-pink);
  color: var(--text-primary);
  box-shadow: var(--glow-pink);
}

.button.is-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 107, 157, 0.6), 0 0 60px rgba(255, 107, 157, 0.4);
}

.button.is-outlined.is-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  background: transparent;
}

.button.is-outlined.is-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.button.is-large {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.button.is-rounded {
  border-radius: 50px;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Form Elements */
.input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--dark-border);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.input::placeholder {
  color: var(--text-muted);
}

.label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.checkbox {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox a {
  color: var(--primary-cyan);
  text-decoration: none;
}

.checkbox a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.has-text-centered {
  text-align: center;
}

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.ml-3 { margin-left: 0.75rem; }

.is-fullwidth {
  width: 100%;
}

.is-rounded {
  border-radius: 8px;
}

.is-large {
  font-size: 1.25rem;
}

.is-medium {
  font-size: 1rem;
}

/* Animations */
@keyframes glow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animated-glow {
  animation: glow 2s ease-in-out infinite;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-cyan);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.5);
}
