:root {
  --bg: #1B2430;
  --surface: #252D3A;
  --text: #D6E6F2;
  --muted: #769FCD;
  --primary: #F7FBFC;
  --secondary: #516BEB;
  --accent: #F94892;
  --border: rgba(214,230,242,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", "Arial Black", sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(81,107,235,0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(249,72,146,0.14), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #121820 45%, var(--bg) 100%);
  background-attachment: fixed;
  padding-bottom: 72px;
  overflow-x: hidden;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(214,230,242,0.08) 11px,
      rgba(214,230,242,0.08) 12px
    );
}

.urban {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation-name: urban;
}

.streetwear {
  border: 2px solid var(--primary);
  box-shadow: 4px 4px 0 var(--accent);
  animation-name: streetwear;
}

.raw {
  border-radius: 0;
  animation-name: raw;
}

.distorted {
  transform: skewX(-2deg);
  animation-name: distorted;
}

.typography-led {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
  animation-name: typography-led;
}

a {
  color: var(--secondary);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.disclosure-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--primary);
  color: rgba(27,36,48,0.72);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 8px 16px;
}

.disclosure-banner .disclosure-label {
  background: #f5d76e;
  color: #1b2430;
  padding: 1px 6px;
  margin-right: 4px;
  font-weight: 700;
}

.site-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 1000;
  background: #0e1319;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: stretch;
  height: 100%;
}

.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--muted);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  min-width: 44px;
  height: 100%;
  padding: 4px 2px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.nav-ico {
  width: 16px;
  height: 16px;
  display: block;
  border: 1.5px solid currentColor;
  position: relative;
}

.nav-ico::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: currentColor;
  opacity: 0.35;
}

.nav-more {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
}

.nav-drawer {
  display: none;
  position: fixed;
  bottom: 52px;
  left: 0;
  right: 0;
  background: #0e1319;
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 12px 16px 16px;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.nav-drawer a {
  display: block;
  text-align: center;
  padding: 10px 6px;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .nav-links .nav-hide-mobile {
    display: none;
  }

  .nav-more {
    display: block;
    margin-left: auto;
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  padding: 40px 20px 28px;
  margin-top: 48px;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.2);
}

.footer-requisites {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-au-disclosure {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(118,159,205,0.85);
  line-height: 1.55;
  max-width: 900px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(14,19,25,0.88);
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none !important;
}

.age-dialog,
.cookie-dialog {
  background: var(--surface);
  border: 2px solid var(--primary);
  box-shadow: 6px 6px 0 var(--secondary);
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}

.age-dialog h2,
.cookie-dialog h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.age-dialog p,
.cookie-dialog p {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--bg);
  padding: 10px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.btn:hover {
  filter: brightness(1.08);
}

.page-main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  width: 100%;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 40px;
}

.legal-content {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: var(--text);
}

.legal-content h1 {
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 18px;
  color: var(--primary);
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--secondary);
}

.legal-content h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  color: var(--muted);
}

.legal-content p,
.legal-content li {
  color: rgba(214,230,242,0.9);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content code {
  font-size: 0.9em;
  background: rgba(214,230,242,0.08);
  padding: 1px 5px;
}

.contact-form {
  margin-top: 28px;
  max-width: 520px;
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 22px;
}

.contact-form label {
  display: block;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 6px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  border-radius: 0;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .field-error {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 14px;
  min-height: 1em;
}

.contact-success {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--surface);
  border: 2px solid var(--secondary);
  padding: 24px;
  margin-top: 28px;
  max-width: 520px;
}

.contact-success[hidden] {
  display: none !important;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-block: 2px solid var(--primary);
  background: var(--surface);
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
}

.marquee-track {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  padding-left: 100%;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes urban {
  0%, 100% { opacity: 1; }
}

@keyframes streetwear {
  0%, 100% { opacity: 1; }
}

@keyframes raw {
  0%, 100% { opacity: 1; }
}

@keyframes distorted {
  0%, 100% { transform: skewX(-2deg); }
}

@keyframes typography-led {
  0%, 100% { letter-spacing: 0.04em; }
}

.tape {
  position: relative;
}

.tape::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 18%;
  width: 64px;
  height: 18px;
  background: rgba(247,251,252,0.35);
  transform: rotate(-8deg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
  pointer-events: none;
}

.glitch-hover {
  overflow: hidden;
  display: inline-block;
}

.glitch-hover img {
  display: block;
  transition: filter 0.25s ease, transform 0.25s ease;
  filter: grayscale(0.4) contrast(1.1);
}

.glitch-hover:hover img {
  filter: grayscale(0) contrast(1.25) hue-rotate(20deg);
  transform: scale(1.04) skewX(-1deg);
  animation: glitch-shake 0.35s steps(2) infinite;
}

@keyframes glitch-shake {
  0% { transform: translate(0, 0) skewX(-1deg); }
  25% { transform: translate(-2px, 1px) skewX(1deg); }
  50% { transform: translate(2px, -1px) skewX(-2deg); }
  75% { transform: translate(-1px, 2px) skewX(0deg); }
  100% { transform: translate(0, 0) skewX(-1deg); }
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
}

.decor-clip {
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 480px) {
  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
  }

  .decor-clip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .inline-band {
    max-width: 100%;
    height: 120px;
  }

  .hero-mosaic {
    max-width: 100%;
  }
}

.subpage-hero {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border-bottom: 3px solid var(--primary);
  overflow: hidden;
}

.subpage-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.outline-text {
  -webkit-text-stroke: 1.5px var(--primary);
  color: transparent;
}

.vert-heading {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--accent);
}
