:root {
  --strzelnica-coyote: #c19a6b;
  --strzelnica-coyote-soft: rgba(193, 154, 107, 0.14);
  --strzelnica-bg: #070707;
  --strzelnica-bg-soft: #11100f;
  --strzelnica-surface: rgba(15, 15, 15, 0.78);
  --strzelnica-surface-strong: rgba(12, 12, 12, 0.92);
  --strzelnica-line: rgba(255, 255, 255, 0.08);
  --strzelnica-line-strong: rgba(193, 154, 107, 0.22);
  --strzelnica-text: #f6f3ee;
  --strzelnica-muted: #b8b0a4;
  --strzelnica-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.strzelnica-body {
  overflow-x: hidden;
  color: var(--strzelnica-text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(193, 154, 107, 0.13), transparent 34%),
    linear-gradient(180deg, #060606 0%, #0a0908 32%, #12100d 100%);
}

body.strzelnica-body a {
  color: inherit;
  text-decoration: none;
}

.strzelnica-main-wrapper {
  min-height: 100vh;
}

#shooting-range-notice {
  position: fixed;
  top: 92px;
  right: 16px;
  z-index: 200;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.94);
  border: 1px solid var(--strzelnica-line-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  color: var(--strzelnica-text);
}

#shooting-range-notice.hidden {
  display: none !important;
}

.strzelnica-page-shell {
  width: min(1240px, calc(100vw - 2rem));
  margin: 0 auto;
}

.strzelnica-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 3, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.strzelnica-nav__back {
  position: absolute;
  left: clamp(1rem, 2vw, 2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #8c857a;
  font-size: 1.1rem;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.strzelnica-nav__back:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-1px);
}

.strzelnica-nav__brand {
  padding: 0 5rem;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #b7b0a5;
  white-space: nowrap;
}

.strzelnica-nav__ghost {
  position: absolute;
  right: clamp(1rem, 2vw, 2rem);
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0;
}

.strzelnica-section {
  padding: 0 0 5.5rem 0;
}

.strzelnica-section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.strzelnica-section-head h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0.04em;
}

.strzelnica-section-head p {
  margin: 0;
  max-width: 620px;
  color: var(--strzelnica-muted);
  line-height: 1.75;
}

.strzelnica-surface {
  background:
    linear-gradient(180deg, rgba(24, 22, 20, 0.82), rgba(13, 12, 11, 0.94)),
    rgba(12, 12, 12, 0.86);
  border: 1px solid var(--strzelnica-line);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--strzelnica-shadow);
}

.strzelnica-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--strzelnica-muted);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.strzelnica-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.strzelnica-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--strzelnica-muted);
  font-size: 0.92rem;
}

.strzelnica-lead {
  color: var(--strzelnica-muted);
  line-height: 1.78;
}

.strzelnica-footer {
  padding: 0 0 3rem;
  color: var(--strzelnica-muted);
}

.strzelnica-footer__inner {
  padding: 1.35rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 820px) {
  .strzelnica-page-shell {
    width: min(1240px, calc(100vw - 1rem));
  }

  .strzelnica-nav__brand {
    font-size: 0.84rem;
    letter-spacing: 0.22em;
    padding: 0 3rem;
  }

  #shooting-range-notice {
    top: 84px;
    right: 8px;
  }
}
