/* Базовые стили и переменные */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #05070c;
  color: #eef2ff;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 🟦 синий основной */
:root {
  --primary-blue: #1e88e5;
  --primary-green: #2ecc71;
  --dark-bg: #05070c;
  --card-bg: #0f1219;
  --text-light: #eef2ff;
  --text-muted: #9da1ab;
}

/* 🟩 зеленый только на ключевых кнопках */
.btn-primary {
  background: var(--primary-green);
  color: #0a0c10;
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.btn-outline:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-primary:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.btn {
  text-decoration: none;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

/* Модалка (общая) */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
}

.modal-content {
  background: #10141e;
  padding: 40px;
  border-radius: 40px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.modal-content input {
  width: 100%;
  background: #1c212e;
  border: none;
  padding: 14px;
  border-radius: 30px;
  margin-bottom: 15px;
  color: white;
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}