/* Общие стили */
body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  color: #fff;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Фон gif */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-video .bg-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* затемнение, чтобы текст видно было */
}

/* Контент */
.content {
  position: relative;
  z-index: 10;
  padding: 20px;
}

/* Лого + Заголовок */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.coin-logo {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 0 10px #ff00de);
}

.title {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #ff00de, 0 0 10px #00f0ff;
}

/* Glitch эффект */
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.glitch::before {
  color: #ff00de;
  clip: rect(10px, 9999px, 80px, 0);
  animation: glitchTop 2s infinite linear alternate-reverse;
}
.glitch::after {
  color: #00f0ff;
  clip: rect(20px, 9999px, 100px, 0);
  animation: glitchBottom 3s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  25% { clip: rect(10px, 9999px, 50px, 0); transform: translate(-5px, -5px); }
  50% { clip: rect(85px, 9999px, 140px, 0); transform: translate(5px, 5px); }
}
@keyframes glitchBottom {
  25% { clip: rect(60px, 9999px, 120px, 0); transform: translate(5px, -5px); }
  50% { clip: rect(20px, 9999px, 80px, 0); transform: translate(-5px, 5px); }
}

/* Текст */
.subtitle {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.highlight {
  color: #ff4de3;
}

/* Кнопки */
.buttons {
  margin-top: 2rem;
}

.btn-neon {
  background: #ff00de;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 0 10px #ff00de, 0 0 20px #ff00de inset;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px;
  display: inline-block;
}

.btn-neon:hover {
  background: #00f0ff;
  box-shadow: 0 0 20px #00f0ff, 0 0 30px #00f0ff inset;
  transform: scale(1.1);
}

/* Footer */
.footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #bbb;
}

/* Кастомный курсор */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #ff00de;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
  box-shadow: 0 0 10px #ff00de;
}

/* 📱 Адаптив под телефоны */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  .coin-logo {
    width: 60px;
  }
  .subtitle {
    font-size: 1rem;
  }
  .btn-neon {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
