:root {
  --green: #0A5C36;
  --gold: #FFB800;
  --dark: #111;
  --light: #fff;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Inter',sans-serif;background:var(--dark);color:var(--light);scroll-behavior:smooth}
h1,h2{font-family:'Bebas Neue',cursive;letter-spacing:2px}
section{padding:80px 20px;text-align:center}
nav{display:flex;justify-content:space-between;align-items:center;padding:20px 40px;background:rgba(0,0,0,.4);position:fixed;width:100%;top:0;z-index:9}
.logo{height:40px}
.nav-links a{color:var(--light);margin-left:20px;text-decoration:none;font-weight:700}
#hero{height:100vh;background:url('../img/jungle-bg.jpg') center/cover;display:flex;flex-direction:column;justify-content:center;align-items:center}
.hero-content{margin-top:60px}
.hero-content h1{font-size:4rem}
.gold{color:var(--gold)}
.cta{background:var(--gold);color:var(--dark);padding:15px 40px;border-radius:30px;font-weight:700;margin-top:20px;text-decoration:none;transition:.3s}
.cta:hover{transform:scale(1.05)}

/* Pie */
/* ---- Renkli Pizza ---- */
.pie-chart {
  display: grid;
  place-items: center;
  margin: 40px auto;
}
.pie {
  --size: 260px;            /* boyut */
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: conic-gradient(
    var(--p30) 0% 30%,
    var(--p20) 30% 50%,
    var(--p15) 50% 65%,
    var(--p25) 65% 90%,
    var(--p10) 90% 100%
  );
}

/* Legend */
.legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin-top: 30px;
  padding: 0;
  font-weight: 700;
}
.legend li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.legend span {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .pie { --size: 220px; }
}
/* Buy */
.exchanges{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;margin-top:30px}
.btn{background:var(--green);color:var(--light);padding:12px 30px;border-radius:8px;text-decoration:none;font-weight:700}
.contract{margin-top:15px;font-size:.9rem}

/* Swiper */
.swiper{max-width:600px;margin:auto}
.swiper-slide img{width:100%;border-radius:12px}
.swiper-pagination-bullet{background:var(--gold)}

/* Roadmap */
.road{max-width:600px;margin:auto;list-style:none}
.road li{background:#222;margin:10px 0;padding:15px;border-left:4px solid var(--gold)}

/* FAQ */
details{max-width:600px;margin:10px auto;background:#222;padding:15px;border-radius:8px}
summary{cursor:pointer;font-weight:700}

/* Footer */
footer{background:#000;padding:15px;font-size:.8rem}
@media(max-width:600px){
  .hero-content h1{font-size:2.5rem}
  nav{padding:10px 20px}
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);   /* 40-96 px */
  line-height: 1.1;
  letter-spacing: 100px;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);     /* 32-64 px */
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* İsteğe bağlı: Mobilde biraz daha sıkı boşluk */
@media (max-width: 600px) {
  h1 { letter-spacing: 0; }
  h2 { margin-bottom: 0.5rem; }
}

.hero-content p {
  font-size: clamp(1.2rem, 2.5vw, 2rem);   /* slogan büyüdü */
  margin-bottom: 3rem;                     /* butonla arası açıldı */
}

.hero-content .cta {
  transform: translateY(0);                /* varsa ekstra margin yerine */
  margin-top: 2rem;                        /* butonu aşağı iter */
}