* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #ffffff;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.6s ease;
}

.loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-coin {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #ffcc70);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 45px rgba(255, 138, 0, 0.55);
  animation: spinCoin 1.5s linear infinite;
}

.loader p {
  margin-top: 22px;
  color: #ff8a00;
  font-weight: bold;
}

@keyframes spinCoin {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #ff8a00, #ffcc70);
  z-index: 10000;
}

.mouse-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.16), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.navbar {
  width: 100%;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 138, 0, 0.15);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #ff8a00;
}

.logo-icon {
  margin-right: 6px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  color: #ff8a00;
}

button {
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #050505;
  border: none;
  padding: 13px 24px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
}

.outline {
  background: transparent;
  color: #ff8a00;
  border: 1px solid #ff8a00;
}

.menu-btn {
  display: none;
  font-size: 24px;
  padding: 10px 16px;
}

.hero {
  min-height: 92vh;
  padding: 90px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  position: relative;
}

.hero-bg {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.18), transparent 65%);
  right: 5%;
  top: 12%;
  z-index: -1;
}

.hero-text {
  max-width: 680px;
}

.tag,
.section-tag {
  color: #ff8a00;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #ff8a00;
}

.desc {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stats {
  display: flex;
  gap: 45px;
  margin-top: 45px;
}

.stats h3 {
  font-size: 30px;
  color: #ff8a00;
}

.stats p {
  color: #aaa;
  margin-top: 5px;
}

.counter::after {
  content: "+";
}

.supply-counter::after {
  content: "";
}

.hero-card {
  width: 380px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(35, 35, 35, 0.75));
  border: 1px solid rgba(255, 138, 0, 0.25);
  box-shadow: 0 0 60px rgba(255, 138, 0, 0.12);
  backdrop-filter: blur(18px);
}

.floating {
  animation: floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0);
  }
}

.coin {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff8a00, #ffcc70);
  color: #050505;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 0 35px rgba(255, 138, 0, 0.45);
}

.hero-card h3 {
  color: #ff8a00;
  margin-bottom: 20px;
  font-size: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #2b2b2b;
}

.info-row span {
  color: #aaa;
}

.info-row strong {
  color: white;
}

.hero-card button {
  width: 100%;
  margin-top: 26px;
}

.section {
  padding: 95px 8%;
  text-align: center;
}

.section h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.section-desc {
  color: #ccc;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 17px;
}

.cards,
.tokenomics,
.roadmap {
  margin-top: 50px;
  display: grid;
  gap: 26px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.tokenomics {
  grid-template-columns: repeat(4, 1fr);
}

.roadmap {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.token-card,
.roadmap-item,
.faq-item {
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-radius: 24px;
  padding: 32px;
  transition: 0.3s ease;
  backdrop-filter: blur(18px);
}

.card,
.token-card,
.roadmap-item {
  position: relative;
  overflow: hidden;
}

.card::before,
.token-card::before,
.roadmap-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(255, 138, 0, 0.14), transparent 55%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.card:hover::before,
.token-card:hover::before,
.roadmap-item:hover::before {
  opacity: 1;
}

.card:hover,
.token-card:hover,
.roadmap-item:hover {
  transform: translateY(-8px);
  border-color: #ff8a00;
  box-shadow: 0 20px 45px rgba(255, 138, 0, 0.12);
}

.card-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.card h3,
.roadmap-item h3 {
  color: #ff8a00;
  margin-bottom: 14px;
}

.card p,
.roadmap-item p {
  color: #c8c8c8;
  line-height: 1.7;
}

.token-card h3 {
  font-size: 46px;
  color: #ff8a00;
  margin-bottom: 12px;
}

.token-card p {
  color: #ccc;
}

.roadmap-item span {
  color: #ff8a00;
  font-weight: bold;
  display: block;
  margin-bottom: 14px;
}

.cta {
  margin: 80px 8%;
  padding: 80px 30px;
  text-align: center;
  border-radius: 35px;
  background:
    radial-gradient(circle at top, rgba(255, 138, 0, 0.22), transparent 55%),
    linear-gradient(145deg, #121212, #080808);
  border: 1px solid rgba(255, 138, 0, 0.25);
}

.cta h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.cta p {
  color: #ccc;
  margin-bottom: 28px;
}

.faq {
  max-width: 850px;
  margin: 45px auto 0;
  text-align: left;
}

.faq-item {
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: white;
  text-align: left;
  box-shadow: none;
  border-radius: 0;
  padding: 22px;
}

.faq-question:hover {
  transform: none;
  box-shadow: none;
  color: #ff8a00;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: #ccc;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  padding: 45px 8%;
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 138, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer h3 {
  color: #ff8a00;
  margin-bottom: 8px;
}

.footer p {
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff8a00;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .stats {
    justify-content: center;
  }

  .cards,
  .tokenomics,
  .roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(255, 138, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 70px 6%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .desc {
    font-size: 16px;
  }

  .hero-card {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .cards,
  .tokenomics,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 75px 6%;
  }

  .section h2,
  .cta h2 {
    font-size: 34px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}