* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  background-color: #212121;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ШАПКА С ЛОГОТИПОМ ВНУТРИ */
.hero {
  width: 100%;
  height: 45vh;
  /* Немного увеличили высоту, чтобы логотипу было просторно */
  background: url("../photo.svg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  /* Центровка лого по вертикали внутри шапки */
  justify-content: center;
  /* Центровка лого по горизонтали */
}

/* Затемнение шапки для читаемости логотипа */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  /* Затемняем само фото */
  z-index: 1;
}

/* Плавный переход в фон страницы */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #212121);
  z-index: 2;
}

.logo-in-hero {
  width: 280px;
  z-index: 10;
  /* Выше затемнения */
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.8));
}

/* ГЛАВНЫЙ КОНТЕНТ (сразу после шапки) */
.main-container {
  width: 100%;
  max-width: 600px;
  padding: 30px 20px 0;
  /* Минимальный отступ от шапки */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 26px;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
  line-height: 1.15;
}

.translations-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.text-line {
  font-family: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

/* КНОПКИ */
.social-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.dm-hint {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #d4d4d4;
  font-weight: 600;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  color: #ffffff !important;
  font-size: 32px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.icon-btn:active {
  transform: scale(0.9);
}

.slogan {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 70px 0 40px;
  opacity: 0.8;
  font-weight: 600;
}

@media (max-width: 450px) {
  .logo-in-hero {
    width: 230px;
  }

  h1 {
    font-size: 20px;
  }

  .text-line {
    font-size: 12px;
  }

  .hero {
    height: 40vh;
  }
}

