/* =====================================================================
   VapeCity — тёмная неоновая тема.
   Цвета вынесены в переменные ниже: меняешь тут — меняется весь сайт.
   ===================================================================== */

:root {
  --bg:            #0a0616;   /* основной фон, почти чёрный с фиолетом */
  --bg-2:          #120a26;   /* фон карточек/блоков */
  --bg-3:          #1b1036;   /* фон при наведении */
  --text:          #f2eefc;   /* основной текст */
  --text-dim:      #b9aee0;   /* приглушённый текст */
  --pink:          #ff3df0;   /* неон розовый */
  --violet:        #8b2fff;   /* неон фиолетовый */
  --blue:          #3d7bff;   /* неон синий */
  --border:        rgba(139, 47, 255, 0.35);
  --glow:          0 0 24px rgba(255, 61, 240, 0.35), 0 0 48px rgba(139, 47, 255, 0.25);
  --grad:          linear-gradient(100deg, var(--pink), var(--violet) 55%, var(--blue));
  --radius:        18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(139, 47, 255, 0.25), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(61, 123, 255, 0.15), transparent 60%),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

/* ================= Кнопки ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: var(--glow);
}
.btn--primary:hover { box-shadow: 0 0 30px rgba(255, 61, 240, .55), 0 0 60px rgba(139, 47, 255, .4); }

.btn--ghost {
  color: var(--text-dim);
  background: transparent;
  border-color: var(--border);
}
.btn--ghost:hover { color: var(--text); border-color: var(--violet); }

/* ================= Заглушка 18+ ================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(800px 500px at 50% 30%, rgba(139, 47, 255, 0.3), transparent 60%),
    var(--bg);
}
.age-gate__box {
  width: 100%;
  max-width: 520px;
  text-align: center;
  padding: 40px 28px;
  background: rgba(18, 10, 38, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  backdrop-filter: blur(6px);
}
.age-gate__logo {
  width: 130px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 18px rgba(139, 47, 255, .6));
}
.age-gate__text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 30px;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ================= Обложка ================= */
.cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 40px 20px;
}
.cover__link { display: block; line-height: 0; }
.cover__logo {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 40px rgba(139, 47, 255, .45));
  transition: transform .3s ease, filter .3s ease;
}
.cover__link:hover .cover__logo {
  transform: translateY(-4px);
  filter: drop-shadow(0 0 55px rgba(255, 61, 240, .55));
}

/* ================= Соцсети ================= */
.socials {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 10px 20px 60px;
}
.social {
  color: var(--text);
  line-height: 0;
  border-radius: 50%;
  transition: transform .2s ease, color .2s ease, filter .2s ease;
  filter: drop-shadow(0 0 10px rgba(139, 47, 255, .4));
}
.social:hover {
  transform: translateY(-4px) scale(1.06);
  color: var(--pink);
  filter: drop-shadow(0 0 16px rgba(255, 61, 240, .7));
}

/* ================= Блок "Мы ВКонтакте" ================= */
.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.about__title {
  text-align: center;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  margin: 0 0 22px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__text {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
}
.about__text p { margin: 0 0 10px; }

/* ================= Сетка точек ================= */
.points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 28px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.point:hover {
  transform: translateY(-6px);
  background: var(--bg-3);
  border-color: var(--violet);
  box-shadow: var(--glow);
}
.point__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: var(--glow);
}
.point__address {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
}
.point__note {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 12px;
}
.point__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 10px 0 8px;
}
.point__hours {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-dim);
  margin: auto 0 0;
  padding-top: 4px;
}

/* ================= Подвал ================= */
.footer {
  text-align: center;
  padding: 30px 20px 40px;
  color: var(--text-dim);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

/* ================= Адаптив ================= */
@media (max-width: 900px) {
  .points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .points { grid-template-columns: 1fr; }
  .cover { min-height: 60vh; }
  .socials { gap: 20px; padding-bottom: 40px; }
  .social svg { width: 48px; height: 48px; }
  .btn { min-width: 220px; }
  .age-gate__text { font-size: 18px; }
}
