/* === Темный стиль с мягкой янтарной палитрой для M-Taxi === */
:root {
  --primary-color: #f5b600; /* теплый янтарный */
  --primary-hover: #d99a00;
  --text-dark: #f0f0f0;
  --text-muted: #c0c0c0;
  --card-bg: #1c1c1e;
  --accent-dark: #ffffff;
  --gray-bg: #2c2c2e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius: 18px;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #202020, #3a2d00);
  color: var(--text-dark);
}

header {
  padding: 2rem 1rem;
  background: #111;
  border-bottom: 2px solid var(--primary-color);
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

header p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  border-left: 6px solid transparent;
}

.card-yellow {
  background: #2a1f00;
  border-left: 6px solid var(--primary-color);
}

.card-gray {
  background: var(--gray-bg);
  border-left: 6px solid #888;
}

.card-white {
  background: #202020;
  border-left: 6px solid var(--primary-color);
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: var(--accent-dark);
}

ul, ol {
  margin-left: 1.2rem;
  padding-left: 0.5rem;
}

li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.buttons {
  margin-top: 1.5rem;
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: #000;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  border: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 90%;
  box-sizing: border-box;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: #111;
  border-top: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.putevoy-list {
  text-align: center;
}

.putevoy-list p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.putevoy-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.putevoy-image:hover {
  transform: scale(1.03);
}
