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

h1 {
  color: #e60073;
  font-family: 'Pacifico', cursive;
}

.section {
  padding: 50px 20px;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 10px 20px;
}

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

.navbar h1 {
  font-size: 24px;
  margin: 0;
}

.navbar .hamburger {
  display: block;
  cursor: pointer;
}

.navbar .hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.4s;
}

#nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: black;
  width: 100%;
  z-index: 10;
}

#nav-links li {
  padding: 10px;
  text-align: center;
}

#nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.home-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: ;
  margin-bottom: 20px;
}

.curved-title {
  font-size: 48px;
  position: relative;
  text-align: center;
  transform: rotate(-5deg);
}

/* About Section */
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-content img {
  max-width: 300px;
  border-radius: 10px;
}

.about-content .text p {
  margin: 10px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Buy Section */
.buy-content {
  text-align: center;
}

.ca-container {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
  overflow-wrap: anywhere;
  margin: 0 auto;
}

#ca {
  word-break: break-word;
  font-size: 14px;
}

.buy-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #e60073;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.buy-btn:hover {
  background-color: #ff3399;
}

/* Roadmap Section */
.roadmap-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phase {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  animation: fadeIn 2s ease-in-out;
  font-size: 16px;
}

/* Contact Section */
.contact-icons img {
  width: 50px;
  margin: 10px;
  cursor: pointer;
}

/* Trailer Section */
.trailer-container {
  margin: 0 auto;
  max-width: 720px;
}

iframe {
  width: 100%;
  height: 405px;
  border: none;
  border-radius: 10px;
}

/* Surprise Doll */
.surprise-doll {
  width: 100px;
  height: 100px;
  background-image: url('doll.png');
  background-size: cover;
  animation: glow 3s infinite alternate;
  margin: 0 auto;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px red;
  }
  to {
    box-shadow: 0 0 40px pink;
  }
}

/* Keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}







/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-content ul {
  list-style-type: none;
  padding: 0;
}

.footer-content ul li {
  margin: 5px 0;
}

.footer-content ul li a {
  color: #e60073;
  text-decoration: none;
}

.footer-content img {
  width: 30px;
  margin: 0 5px;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e60073;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  display: none;
  transition: 0.3s;
}

.back-to-top:hover {
  background-color: #ff3399;
}

/* FAQ Section */
#faq .faq-item {
  margin: 20px 0;
  text-align: left;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}












/* Removed styles for the Countdown Timer */

/* Highlights Carousel */
.carousel {
  display: flex;
  overflow: hidden;
  gap: 10px;
  justify-content: center;
}

.carousel-image {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.carousel-image:hover {
  transform: scale(1.05);
}












/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay h1 {
  font-size: 60px;
  color: #e60073;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 24px;
  margin-bottom: 30px;
}


/* Audio Control */
.audio-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e60073;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.audio-control:hover {
  transform: scale(1.2);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.preloader img {
  width: 150px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}























/* Highlights Section */
.carousel-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  width: 300px;
  height: 200px;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.arrow:hover {
  background-color: rgba(230, 0, 115, 0.8);
}