@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --yellow: #ffd900;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1f1f1f;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 217, 0, 0.12);
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-weight: 600;
}

nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}
nav a:hover {
  color: var(--white);
}
nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open {
  transform: translateX(0);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}
.mobile-nav-a {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 8px;
  transition: all 0.25s;
  width: 80%;
  text-align: center;
}
.mobile-nav-a:hover {
  color: var(--dark);
  background: var(--yellow);
}

.lang-toggle {
  display: flex;
  gap: 6px;
  align-items: center;
  position: fixed;
  top: 84px;
  right: 40px;
  z-index: 50;
}
.lang-btn {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--dark2);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.lang-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.page-hero {
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px 64px;
  position: relative;
  z-index: 2;
}
.watermark {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 14rem;
  text-transform: uppercase;
  color: rgba(255, 217, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--yellow);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}
.breadcrumb .current {
  color: var(--yellow);
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.page-tag-line {
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.page-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.page-title .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.page-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.meta-value {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.hero-bar {
  height: 4px;
  background: linear-gradient(
    to right,
    var(--yellow) 0%,
    rgba(255, 217, 0, 0.2) 60%,
    transparent 100%
  );
}

.layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.sidebar-nav li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-left-color: var(--yellow);
  padding-left: 20px;
}
.sidebar-nav li a .num {
  font-size: 0.68rem;
  color: var(--yellow);
  font-weight: 800;
  min-width: 22px;
  flex-shrink: 0;
}

.sidebar-contact {
  margin-top: 40px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.sidebar-contact-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sidebar-contact p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-contact-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--dark);
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-contact-small:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.doc-content {
  min-width: 0;
}
.lang-panel {
  display: none;
}
.lang-panel.active {
  display: block;
}

.doc-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.doc-intro strong {
  color: var(--yellow);
  font-weight: 600;
}

.doc-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.section-num-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 217, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--yellow);
  margin-top: 4px;
}
.section-heading {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
}

.doc-body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}
.doc-body p {
  margin-bottom: 14px;
}
.doc-body p:last-child {
  margin-bottom: 0;
}
.doc-body strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.doc-body a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 217, 0, 0.3);
  transition: border-color 0.2s;
}
.doc-body a:hover {
  border-color: var(--yellow);
}

.doc-sub {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 10px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.info-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 8px;
}

.highlight-box {
  background: rgba(255, 217, 0, 0.06);
  border: 1px solid rgba(255, 217, 0, 0.2);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 18px 0;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}
.highlight-box strong {
  color: var(--yellow);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.alert-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  font-style: italic;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 0.87rem;
}
.data-table th {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: left;
  padding: 12px 16px;
  background: rgba(255, 217, 0, 0.06);
  border-bottom: 2px solid rgba(255, 217, 0, 0.2);
}
.data-table td {
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.country-tag {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 13px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.right-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  transition: all 0.25s;
}
.right-card:hover {
  border-color: rgba(255, 217, 0, 0.3);
  background: var(--dark3);
}
.right-card-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.right-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--white);
}
.right-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.final-note {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}
.final-note-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.final-note-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--white);
}
.final-note p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 24px;
}

footer {
  background: #080808;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand span {
  color: var(--yellow);
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--yellow);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .sidebar {
    position: static;
  }
  .sidebar-nav {
    display: none;
  }
  .lang-toggle {
    right: 20px;
    top: 80px;
  }
}
@media (max-width: 600px) {
  header {
    padding: 0 20px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-overlay {
    display: flex;
  }
  .page-hero-inner {
    padding: 60px 24px 48px;
  }
  .watermark {
    font-size: 5rem;
  }
  footer {
    padding: 40px 24px;
    flex-direction: column;
  }
  .rights-grid {
    grid-template-columns: 1fr 1fr;
  }
  .countries-grid {
    grid-template-columns: 1fr 1fr;
  }
}
