/* Font Declarations */
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
}

/* Banner */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 80px;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00d4ff;
}

.buy-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff6200;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
}

.buy-icon {
  width: 20px;
  height: 20px;
}

/* Main Content */
.main-content {
  margin-top: 120px;
  padding-top: 20px;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  height: 90vh;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cto-badge {
  /* background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); */
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
}

.hero-buttons,
.hero-buttons1 {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.btn-primary {
  background: #ff6200;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #cccccc;
  line-height: 1.8;
}

.hero-controls {
  display: flex;
  gap: 1rem;
}

.control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.control-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.control-btn img {
  width: 20px;
  height: 20px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 24px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  border-radius: 12px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scrolling Text */
.scrolling-text {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* About Section */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.about-img {
  width: 300px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #cccccc;
}

.highlight {
  color: #00d4ff;
  font-weight: 700;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.social-link img {
  width: 25px;
  height: 25px;
}

/* Tokenomics Section */
.tokenomics-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin: 2rem auto;
}

.tokenomics-content {
  max-width: 1000px;
  margin: 0 auto;
}

.tokenomics-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tokenomics-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tokenomics-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.tokenomics-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ff6200;
}

.tokenomics-item p {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.token-symbol {
  color: #ff6200;
  font-weight: 700;
}

.tokenomics-item ul {
  list-style: none;
}

.tokenomics-item li {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tokenomics-chart {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tokenomics-chart:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.chart-container {
  position: relative;
  margin-bottom: 2rem;
}

.chart-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.chart-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  background: #ff6200;
  border-radius: 50%;
}

/* Gallery Section */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.gallery-btn img {
  width: 20px;
  height: 20px;
}

/* How to Buy Section */
.how-to-buy-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.buy-steps {
  max-width: 800px;
  margin: 0 auto;
}

.buy-steps ol {
  text-align: left;
  margin-bottom: 2rem;
}

.buy-steps li {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #cccccc;
}

.buy-steps a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
}

.buy-steps a:hover {
  text-decoration: underline;
}

.contract-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ff6200;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.contract-btn:hover {
  transform: translateY(-2px);
}

.contract-btn img {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00d4ff;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  color: #ffffff;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    margin-top: 140px;
  }

  .banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-menu {
    gap: 1rem;
    justify-content: center;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.5rem;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons,
  .hero-buttons1 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .hero-description {
    text-align: center;
  }

  .hero-controls {
    justify-content: center;
  }

  .about-section {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tokenomics-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .how-to-buy-section {
    text-align: center;
  }

  .buy-steps {
    text-align: center;
  }

  .buy-steps ol {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .about-section {
    padding: 2rem 1rem;
  }

  .tokenomics-section {
    padding: 2rem 1rem;
  }

  .how-to-buy-section {
    padding: 2rem 1rem;
  }

  .buy-steps ol {
    padding-left: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    padding: 0 1rem;
  }
}
