/* General Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  background-color: #000000;
}
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/live-bg.gif') no-repeat center center/cover;
  z-index: -1;
  filter: blur(3px);
  opacity: 0.8;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
header .logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffcc00;
}
.navbar {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar li a, .navbar li button {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s;
}
.navbar li button {
  background: #ffcc00;
  border: none;
}
.navbar li a:hover, .navbar li button:hover {
  background: #ffaa00;
}

/* Section Styles */
section {
  padding: 4rem 2rem;
  text-align: center;
}
.hero {
  background: linear-gradient(120deg, #ffcc00, #ffaa00);
  color: #000000;
  padding: 6rem 2rem;
}
.section-content {
  max-width: 800px;
  margin: auto;
}
.section-image {
  margin-top: 1.5rem;
  width: 300px;
  border-radius: 10px;
}
.roadmap-phases {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.phase {
  margin: 1rem;
  max-width: 300px;
  background: #333333;
  border-radius: 10px;
  padding: 1rem;
}
.phase h3 {
  color: #ffcc00;
}
.social-icons img {
  width: 50px;
  margin: 0 1rem;
  transition: transform 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}

/* Footer */
footer {
  background: #111111;
  color: #888888;
  padding: 1rem;
}



/* Hero Section Button Styling */
.hero button {
  background-color: #ffcc00;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(255, 204, 0, 0.5);
  transition: all 0.3s ease;
}
.hero button:hover {
  background-color: #ffaa00;
  box-shadow: 0 12px 20px rgba(255, 170, 0, 0.7);
  transform: translateY(-3px) scale(1.05);
}
.hero button:active {
  transform: translateY(2px) scale(1);
}

/* Section Image Styling (Top Position) */
.section-image {
  display: block;
  margin: 0 auto 1.5rem;
  width: 80%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Memes Section */
#memes {
  background: linear-gradient(120deg, #222831, #393e46);
  color: #ffffff;
  padding: 4rem 2rem;
}
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 80%;
  margin: 2rem auto;
}
.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 400%; /* For 4 images */
}
.carousel-images img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin: 0 1rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffcc00;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease-in-out;
}
.carousel-btn:hover {
  background: #ffaa00;
}
.prev-btn {
  left: -2rem;
}
.next-btn {
  right: -2rem;
}