/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: transparent;
  color: #ffffff;
}

/* Canvas Background */
#backgroundCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(270deg, #00c6ff, #0072ff, #00c6ff, #7f00ff);
  background-size: 600% 600%;
  animation: animatedBackground 20s ease infinite;
}

/* New background animation */
@keyframes animatedBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Logo */
.logo-container {
  text-align: center;
  margin-top: 20px;
}
.app-logo {
  width: 100px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}

/* Title */
.site-title {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Video Section */
.video-section {
  margin: 30px auto;
  max-width: 600px;
}
.video-card {
  background: rgba(26, 26, 26, 0.8);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #00ffff55;
}
.video-warning {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-8px);}
}
.watch-button {
  background: #00ffff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  display: block;
  text-align: center;
}

/* Download Sign */
.download-sign {
  text-align: center;
  font-size: 1.5em;
  margin-top: 20px;
  animation: bounce 1.5s infinite;
}

/* Info Section */
.info-section {
  margin: 30px auto;
  max-width: 600px;
  background: rgba(26, 26, 26, 0.8);
  padding: 20px;
  border-radius: 15px;
}
.info-section ul {
  list-style: none;
  padding: 0;
}
.info-section li {
  margin-bottom: 10px;
}
/* Telegram Join Button */
.telegram-join {
  text-align: center;
  margin-top: 30px;
}
.telegram-button {
  background: linear-gradient(90deg, #0088cc, #00ffff);
  color: #fff;
  font-size: 1.2em;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s;
}
.telegram-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #00ffff, #0088cc);
}


/* Download Section */
.download-section {
  text-align: center;
  margin: 40px auto;
}
.download-btn {
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: #000;
  font-size: 1.2em;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.download-btn:hover {
  transform: scale(1.05);
}
.counter {
  margin-top: 15px;
  font-size: 1em;
  color: #ccc;
}
