@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Cinzel:wght@400;600;700&family=Great+Vibes&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #000 url('./assets/background.jpg') center/cover no-repeat;
  color: white;
}

#scene {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  outline: none;
}

#text-overlay {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.4em;
  font-weight: 400;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

#text-overlay p {
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  animation: glowPulse 3s ease-in-out infinite;
}

/* Стили для чередующихся цветов слов */
#text-overlay p .word-red {
  color: #ff4444;
  text-shadow: 0 0 10px rgba(255, 68, 68, 0.8), 0 0 20px rgba(255, 68, 68, 0.5);
}

#text-overlay p .word-green {
  color: #44ff44;
  text-shadow: 0 0 10px rgba(68, 255, 68, 0.8), 0 0 20px rgba(68, 255, 68, 0.5);
}

/* Анимация появления текста */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Анимация появления кнопок */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Анимация пульсации свечения */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 100, 100, 0.3);
  }
}

/* Эффект при наведении */
#text-overlay:hover {
  transform: translateX(-50%) translateY(5px) scale(1.05);
}

#text-overlay:hover p {
  animation: none;
}

#text-overlay:hover p .word-red {
  color: #ff6666;
  text-shadow: 0 0 15px rgba(255, 102, 102, 1), 0 0 30px rgba(255, 102, 102, 0.8), 0 0 45px rgba(255, 102, 102, 0.6);
}

#text-overlay:hover p .word-green {
  color: #66ff66;
  text-shadow: 0 0 15px rgba(102, 255, 102, 1), 0 0 30px rgba(102, 255, 102, 0.8), 0 0 45px rgba(102, 255, 102, 0.6);
}

/* Эффект при клике */
#text-overlay:active {
  transform: translateX(-50%) translateY(3px) scale(1.02);
}

/* Контейнер для кнопок */
#buttons-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1s forwards;
}

/* Стили кнопок */
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-button span {
  position: relative;
  z-index: 1;
}

/* Стили для логотипа кнопки */
.button-logo {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  object-fit: contain;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.social-button:hover .button-logo {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.6));
}

.social-button:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-button:active {
  transform: translateY(-1px) scale(1.02);
}

/* Стили для кнопки PumpFun */
#pumpfun-btn {
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #FF6B35;
}

#pumpfun-btn:hover {
  background: rgba(255, 107, 53, 0.3);
  border-color: rgba(255, 107, 53, 0.6);
  color: #FF6B35;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.5);
}

#pumpfun-btn .button-logo {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

#pumpfun-btn:hover .button-logo {
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8)) brightness(1.2);
}

/* Стили для кнопки X */
#twitter-btn {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

#twitter-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
}

