:root {
  --color-primary: #0f172a;
  --color-secondary: #38bdf8;
  --color-accent: #f97316;
  --color-bg: #020617;
  --color-surface: #020617;
  --color-text: #e5e7eb;
  --radius-base: card-lg;
  --layout-container-width: 1200px;
  --layout-gutter-x: 1.5rem;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Базовый контейнер, чтобы все страницы были визуально согласованы */
.site-container {
  max-width: var(--layout-container-width);
  margin-inline: auto;
  padding-inline: var(--layout-gutter-x);
}

/* Общие utility-классы, которые ИИ может использовать в Tailwind-окружении */
.site-card {
  border-radius: var(--radius-base);
  background-color: var(--color-surface);
}

/* Кнопки на всякий случай (если модель захочет использовать эти классы) */
.btn-primary-soft {
  border-radius: var(--radius-base);
  background: var(--color-primary);
  color: white;
}

.btn-primary-soft:hover {
  filter: brightness(1.05);
}

/* Минимальная адаптация шапки/футера, если модель захочет использовать */
.site-header,
.site-footer {
  backdrop-filter: blur(12px);
}

.text-\[\#22292F\],
.text-\[\#22292f\] {
  --tw-text-opacity: 1;
  color: rgb(91 153 206) !important;
}

.iframe-map {
  width: 100%;
}

/* Unique styles specifically for thanks.html */
.thanks-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #f6f6f6;
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
}
.thanks-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #c49000;
  margin-bottom: 1.5rem;
}
.thanks-text {
  font-size: 1.125rem;
  color: #22292f;
  margin-bottom: 1rem;
  max-width: 600px;
}
.thanks-extra {
  font-size: 1rem;
  color: #575757;
  margin-bottom: 2rem;
  max-width: 600px;
}
.home-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #c49000;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
.home-button:hover {
  background-color: #a67a00;
}
