/* Base Styles */
:root {
  --primary-color: #08cebd;
  --accent-color: #6407ac;
  --highlight-color: #fed01a;
  --text-light: #ffffff;
  --transition-smooth: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-color);
  font-family: "Protest Riot", sans-serif;
  overflow-x: hidden;
  animation: fadeIn 1s ease-in;
}

/* Navigation */
nav {
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

nav.scrolled {
  padding: 0.5rem 4rem;
  background: rgba(255, 255, 255, 0.2);
}

.main-logo {
  width: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  transition: var(--transition-smooth);
}

.main-logo:hover {
  transform: rotate(360deg);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  text-transform: capitalize;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--highlight-color);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 10rem 10rem;
  gap: 2rem;
}

.info {
  flex: 1;
}

.info h1 {
  font-family: "Bangers", serif;
  color: var(--accent-color);
  text-shadow: 4px 4px var(--highlight-color);
  animation: pulse 2s infinite;
  margin-top: 4rem;
  font-size: 5.9rem;
  filter: drop-shadow(3px 5px 30px white);
}

.article {
  color: var(--text-light);
  line-height: 1.6;
  margin: 2rem 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.main-image {
  width: 290px;
  max-width: 300px;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out, rollin 2s;
}

/* Button Styles */
.button-div {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.info-btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  padding: 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: grid;
  place-items: center;
}

.info-btn:hover {
  transform: translateY(-5px);
  background-color: var(--highlight-color);
}

.btn-image {
  width: 15px;
  height: 15px;
}

.monkey-button {
  background: var(--accent-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  color: var(--text-light);
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.monkey-button:hover {
  background: var(--highlight-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 7, 172, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes rollin {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* Mobile Navigation */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* Responsive Design */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  
  nav.scrolled {
    padding: 0.5rem 2rem;
  }
  
  .hero {
    padding: 8rem 2rem;
  }

  .info h1 {
    margin-top: 4rem;
    font-size: 5rem;
    filter: drop-shadow(3px 5px 30px white);
  }

  .article {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  nav {
    padding: 0.5rem 1rem;
  }
  
  .nav-links {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: var(--accent-color);
    width: 100%;
    text-align: center;
    transition: var(--transition-smooth);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-links.active {
    left: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .main-image {
    width: 70%;
  }

  .button-div {
    justify-content: center;
  }

  .monkey-button {
    display: none;
  }
  
  .about-image {
    width: 200px;
  }
  
  .roadmap-container {
    padding: 10px;
  }
  
  .about-info {
    width: 20rem;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem;
  }

  .info h1 {
    margin-top: 4rem;
    font-size: 5rem;
    filter: drop-shadow(3px 5px 30px white);
  }

  .article {
    font-size: 1rem;
  }
}

/* About Section */
.about-div {
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.about-image {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  width: 350px;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.about-info {
  animation: rollinfromlef 5s ease-in;
}

.about-info h1 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}



@keyframes rollinfromlef {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

.marque-div {
  background-color: #fed01a;
  text-align: center;
  animation: popinimage 1s ease-in-out infinite;
  width: 100%;
  max-width: 100%;
}

@keyframes popinimage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.marque-div marquee {}

.about-info p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* How to Buy Section */
.how-to-buy {
  padding: 3rem 1rem;
}

.header-to-buy {
  text-align: center;
  color: var(--highlight-color);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-shadow: 2px 2px var(--accent-color);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.infoo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infoo h3 {
  color: var(--highlight-color);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.infoo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Roadmap Section */
.roadmap-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.roadmap-title {
  text-align: center;
  color: var(--highlight-color);
  font-size: 3em;
  margin-bottom: 50px;
  text-shadow: 2px 2px var(--accent-color);
}

.roadmap-container .timeline {
  position: relative;
  padding: 60px 0;
}

.roadmap-container .timeline::before {
  content: '';
  position: absolute;
  width: 6px;
  background: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(100, 7, 172, 0.5);
}

.phase {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.phase.active {
  opacity: 1;
  transform: translateY(0);
}

.phase::before {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  background: var(--highlight-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(254, 208, 26, 0.5);
}

.phase:hover::before {
  background: var(--accent-color);
  border-color: var(--highlight-color);
  transform: translateY(-50%) scale(1.2);
}

.left {
  left: 0;
  padding-right: 50px;
}

.right {
  left: 50%;
  padding-left: 50px;
}

.left::before {
  right: -16px;
}

.right::before {
  left: -13px;
}

.phase-content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.phase-content:hover {
  transform: translateY(-5px);
}

.phase-title {
  color: var(--highlight-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.phase-date {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.phase-items {
  color: var(--text-light);
  list-style: none;
  padding: 0;
}

.phase-items li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}

.phase-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--highlight-color);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 4rem;
}

footer p {
  margin: 0.5rem 0;
}

/* Additional Media Queries */
@media (max-width: 768px) {
  .about-image {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .ca-div h2 {
    background-color: #6407ac;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    
  }
  
  .about-img {
    width: 200px;
  }

  .roadmap-container .timeline::before {
    left: 31px;
  }

  .phase {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .phase.right {
    left: 0;
  }

  .phase::before {
    left: 18px;
  }

  .how-to-buy {
    padding: 4rem 2rem;
  }

  .card {
    margin: 1.5rem;
  }
  
  .info h1 {
    font-size: 6rem;
    margin-top: 4rem;
    filter: drop-shadow(3px 5px 30px white);
  }
}

@media (max-width: 480px) {
  .about-div {
    padding: 4rem 1rem;
  }

  .phase-content {
    padding: 15px;
  }

  .phase-title {
    font-size: 1.2em;
  }

  .card {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .info h1 {
    margin-top: 4rem;
    font-size: 5rem;
    filter: drop-shadow(3px 5px 30px white);
  }

  .card {
    margin: 1rem;
    padding: 1rem;
  }

  .infoo-img {
    width: 40px;
    height: 40px;
  }
}

.ca-div h2 {
  background-color: #6407ac;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 100%;

}
