* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.logo {
  width: clamp(120px, 20vw, 220px);
  height: auto;
  opacity: 0.9;
  fill: white; /* 🔥 наконец-то */
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.6));
}



.bg-video {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}


.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}


.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #eaeaea;
  text-align: center;
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 0.2em;
}

p {
  font-size: 14px;
  letter-spacing: 0.25em;
  opacity: 0.6;
}

.tg-button {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.tg-button:hover {
  background: white;
  color: black;
}

.tg-button:hover .tg-icon {
  stroke: black;
}
.tg-icon {
  stroke: white;
  fill: none;
  width: 20px;
  height: 20px;
  fill: currentColor;
}
