:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --text: #ffffff;
  --text-2: #d0d0d0;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #fca800;
  --primary-20: rgba(252, 168, 0, 0.2);
  --primary-10: rgba(252, 168, 0, 0.1);
  --max-width: 980px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 0 0 1px rgba(252, 168, 0, 0.08), 0 0 42px rgba(252, 168, 0, 0.09);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(252, 168, 0, 0.06), transparent 24%),
    radial-gradient(circle at bottom left, rgba(252, 168, 0, 0.04), transparent 22%),
    var(--bg);
  color: var(--text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(252, 168, 0, 0.35);
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

a:hover {
  color: var(--primary);
  text-decoration-color: rgba(252, 168, 0, 0.7);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(11, 11, 11, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(252, 168, 0, 0.26);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-link:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.icon {
  width: 22px;
  height: 22px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 44px 0 82px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  margin-top: 42px;
  margin-bottom: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

h3 {
  font-size: 1.08rem;
  margin-top: 26px;
  margin-bottom: 10px;
}

p,
ul {
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 1rem;
}

em {
  color: var(--muted);
}

.legal-content {
  margin-top: 28px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.96), rgba(20, 20, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-content p strong,
.legal-content li strong {
  color: var(--text);
}

ul {
  padding-left: 22px;
}

li {
  margin-bottom: 10px;
}

li::marker {
  color: var(--primary);
}

.address-box {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(252, 168, 0, 0.24);
  background: linear-gradient(180deg, rgba(252, 168, 0, 0.08), rgba(252, 168, 0, 0.04));
}

.address-box h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--text);
}

.address-box p {
  margin-bottom: 0;
  color: var(--text);
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 22px, var(--max-width));
    padding: 30px 0 58px;
  }

  .legal-content {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  h2 {
    margin-top: 34px;
    padding-top: 14px;
  }

  p,
  ul {
    font-size: 0.97rem;
  }

  .home-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}