/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

h1, h2 {
  color: #00e6ff;
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: #00e6ff;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.8);
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.project-name {
  margin-left: 10px;
  font-size: 22px;
  font-weight: bold;
}

/* Starry Background */
#starry-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #000;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

section h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

/* Home Section */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-heading {
  font-size: 60px;
  text-shadow: 0 0 10px #00e6ff, 0 0 20px #00e6ff;
  margin-top: 20%;
}

/* About Section */
.about-img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.about-content p {
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Buy Section */
.buy-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.buy-box input {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #00e6ff;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
}

.buy-box input:focus {
  outline: none;
  box-shadow: 0 0 10px #00e6ff;
}

.buy-box button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background: linear-gradient(90deg, #00e6ff, #ff007c);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.buy-box button:hover {
  transform: scale(1.1);
}

.buy-btn {
  padding: 15px 30px;
  background: linear-gradient(90deg, #00e6ff, #ff007c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.buy-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Roadmap Section */
.roadmap-container {
  position: relative;
  margin-top: 40px;
}

.phase {
  margin: 20px auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  animation: slideIn 4s infinite;
}

@keyframes slideIn {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Vision Section */
#vision p {
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Memes Section */
.memes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.memes-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.memes-slider img {
  width: 200px;
  height: 200px;
  margin: 0 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #00e6ff, #ff007c);
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.arrow:hover {
  transform: scale(1.1);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* Contact Section */
.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.contact-icons a {
  margin: 0 10px;
}

.contact-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.contact-icons img:hover {
  transform: scale(1.2);
}