:root {
  --bg: #121212;
  --panel: #1a1a1a;
  --text: #e8e8e8;
  --muted: #a9a9a9;
  --line: #2a2a2a;
  --radius: 18px;
  --max: 560px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 16px;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.wrap { display: flex; flex-direction: column; gap: 14px; width: min(100%, var(--max)); margin: 0 auto; }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.section { padding: 14px; }
.banner { width: 100%; aspect-ratio: 4 / 2; overflow: hidden; background: #000; }
.banner img { display: block; width: 100%; height: 100%; object-fit: cover; }

h1 { margin: 0; font-size: 20px; line-height: 1.35; }
h2 { margin: 0 0 10px; font-size: 15px; }
p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.intro { text-align: center; }
.intro p { margin-top: 10px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  background: #3b3737;
  color: #a9a8a8;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.btn:hover, .btn:focus-visible { background: #484343; color: #e8e8e8; }
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.btn:active { transform: translateY(1px); }

.logo-box {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: .04em;
}
.ru-box { background: #8f3f56; }
.en-box { background: #4b5b91; }
.he-box { background: #2d8881; }
.es-box { background: #ca7a35; }

footer { padding: 8px 0 2px; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.legal-links a { color: var(--muted); }

.placeholder { width: min(100%, var(--max)); margin: 12vh auto 0; padding: 34px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); text-align: center; }
.placeholder p { margin-top: 12px; }
.back-link { display: inline-block; margin-top: 24px; color: var(--text); }

@media (max-width: 380px) { .grid-2 { grid-template-columns: 1fr; } }
