@font-face {
  font-family: "MoscowSans";
  src: url("./moscowsansregular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --container: 1100px;
  --pad: 16px;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "MoscowSans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Header */
header {
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.review-btn {
  background-color: #007dba;
  color: #ffffff;
  font-size: 9pt;
  line-height: 1;
  text-decoration: none;

  padding: 8px 12px;
  border-radius: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-transform: lowercase;
  white-space: nowrap;
}

.review-btn:hover {
  opacity: 0.9;
}

.review-btn:active {
  opacity: 0.85;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 66px;
  width: auto;
  display: block;
}

/* Main */
main {
  padding: 24px 0 32px;
}

.video-wrap {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrap iframe,
.video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid #e8e8e8;
  padding: 16px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.footer-left {
  text-align: left;
}

strong {
  font-size: 22pt;
  color: #007dba;
}

footer .greytext {
  color: gray;
}

.footer-right {
  text-align: right;
}

.video-player {
  position: relative;
}

.video {
  width: 100%;
  height: 100%;
  display: block;
}

/* Большая заметная кнопка по центру */
.sound-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px 22px;
  font-size: 18px;
  font-family: "MoscowSans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  border: 0;
  border-radius: 14px;
  cursor: pointer;

  /* “стеклянная” заметная плашка */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  color: #007dba;
}

.sound-btn:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.sound-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
