/* ------------------------------
   GLOBAL BASE
------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: url("background.png") no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  overflow-x: hidden;
}

/* Noise overlay */
.noise {
  pointer-events: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.08;
  z-index: 999;
}

/* ------------------------------
   NAVIGATION
------------------------------ */

.nav {
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 55px;
  margin-right: 10px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 900;
  color: #ffdd55;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

nav a {
  margin-left: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

nav a:hover {
  color: #ffdd55;
}

/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  display: flex;
  max-width: 1200px;
  padding: 20px;
  gap: 60px;
  align-items: center;
}

.pre {
  font-size: 22px;
  opacity: 0.8;
}

h1 {
  font-size: 85px;
  line-height: 0.9;
  margin: 20px 0;
  font-weight: 900;
}

.tagline {
  display: block;
  font-size: 24px;
  margin-top: 10px;
  opacity: 0.85;
}

.hero-desc {
  margin: 20px 0 35px;
  font-size: 22px;
}

.cta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.btn {
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

.primary {
  background: #ffdd55;
  color: #000;
}

.primary:hover {
  background: #ffd22b;
}

.ghost {
  border: 2px solid #ffdd55;
  color: #ffdd55;
}

.ghost:hover {
  background: rgba(255, 221, 85, 0.15);
}

/* Pills */
.info-row {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 12px;
}

.live {
  color: #00ff88;
  font-weight: 900;
}

/* Contract box */
.contract-box {
  margin-top: 25px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 4px solid #ffdd55;
}

.contract-box code {
  font-family: monospace;
}

/* ------------------------------
   HERO ART (COIN)
------------------------------ */

.hero-art {
  position: relative;
}

.coin-orbit {
  position: relative;
  width: 350px;
  height: 350px;
}

.coin {
  width: 350px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ------------------------------
   SECTIONS
------------------------------ */

.section {
  padding: 140px 40px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.section.dark {
  background: rgba(0, 0, 0, 0.45);
}

.section h2 {
  font-size: 55px;
  margin-bottom: 25px;
}

.tokenomics-list li,
.steps li {
  font-size: 24px;
  margin: 12px 0;
}

/* Social links */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Footer */
.footer {
  padding: 40px;
  text-align: center;
  opacity: 0.6;
  font-size: 16px;
}

/* ------------------------------
   RESPONSIVE — TABLET
------------------------------ */

@media (max-width: 992px) {
  h1 {
    font-size: 70px;
  }
  .coin {
    width: 280px;
  }
  .hero-inner {
    gap: 40px;
  }
}

/* ------------------------------
   RESPONSIVE — MOBILE
------------------------------ */

@media (max-width: 768px) {

  .nav {
    padding: 15px 20px;
  }

  nav {
    display: none; /* Simplu: ascundem meniul – pot face meniu burger dacă vrei */
  }

  .logo img {
    width: 45px;
  }

  .logo {
    font-size: 24px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  h1 {
    font-size: 52px;
  }

  .tagline {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .cta-row {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    font-size: 18px;
  }

  .info-row {
    flex-direction: column;
    gap: 12px;
  }

  .coin-orbit {
    width: 220px;
    height: 220px;
  }

  .coin {
    width: 220px;
  }

  .section {
    padding: 80px 20px;
  }

  .section h2 {
    font-size: 36px;
  }

  .tokenomics-list li,
  .steps li {
    font-size: 18px;
  }
}

/* ------------------------------
   RESPONSIVE — VERY SMALL MOBILE
------------------------------ */

@media (max-width: 480px) {

  h1 {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .coin {
    width: 180px;
  }

  .section h2 {
    font-size: 30px;
  }
}
