@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6C63FF;
  --secondary-color: #FF6584;
  --accent-color: #00D9FF;
  --dark-bg: #0A0E27;
  --dark-card: #141B3D;
  --text-light: #FFFFFF;
  --text-gray: #A0A8C8;
  --gradient-1: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
  --gradient-2: linear-gradient(135deg, #00D9FF 0%, #6C63FF 100%);
  --gradient-3: linear-gradient(135deg, #FF6584 0%, #FFA726 100%);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(108, 99, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}
