/* aw.css — тема страниц Air Warfare. Подключается ПОСЛЕ base.css.
   Направление: дневная авиация — высокое небо, полосы инверсионного следа,
   металл кабины и красный акцент акульей пасти. Никакой морской латуни:
   у каждой игры своя тема (см. site/README.md). */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

:root {
  --bg: #dff0fa;                 /* высокое небо */
  --surface: #ffffff;
  --line: rgba(21, 60, 96, 0.16);
  --text: #12293d;
  --muted: #48657e;
  --dim: #7c94a8;
  --accent: #e63b2e;             /* красный акульей пасти */
  --on-accent: #ffffff;

  --display: 'Russo One', 'Arial Black', sans-serif;
}

body {
  /* градиент неба + инверсионные следы */
  background-image:
    linear-gradient(180deg, #bfe2f5 0%, #dff0fa 40%, #eef7fc 100%),
    none;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* инверсионные следы — тонкие диагональные росчерки */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.85) 42.5%, rgba(255, 255, 255, 0) 44%) no-repeat,
    linear-gradient(115deg, transparent 68%, rgba(255, 255, 255, 0.6) 68.4%, rgba(255, 255, 255, 0) 69.6%) no-repeat;
}

h1, h2 { font-weight: 400; }   /* Russo One один вес — жирность не нужна */
h1 { letter-spacing: 0.01em; text-transform: uppercase; }
h2 { letter-spacing: 0.02em; }

.brand { font-family: var(--body); font-weight: 800; }
.top nav a { font-weight: 600; }

.btn { border-radius: 6px; box-shadow: 0 6px 18px -8px rgba(230, 59, 46, 0.55); }
.btn.ghost { box-shadow: none; }
.btn[aria-disabled='true'] { box-shadow: none; }

footer { border-top-color: var(--line); }
footer a { color: var(--muted); }
footer .req { color: var(--dim); }

hr.rule {
  background: none;
  border-top: 2px dashed rgba(21, 60, 96, 0.22);   /* пунктир маршрута на карте */
  height: 0;
  margin: 70px 0 44px;
}
