:root {
  --green-dark: #2b612b;
  --green-main: #388e3c;
  --green-light: #49b45a;
  --green-box: #3f843f;
  --green-faq: #206e33;
  --white: #fff;
  --yellow: #ebff28;
  --yellow-shadow: #cfd80d;
  --gray: #36433c80;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
  --rounded: 20px;
  --font: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  font-weight: 700;
  background: var(--green-dark);
  color: var(--white);
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  min-width: 320px;
}

/* === NAVIGATION === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--green-main);
  padding: 0 clamp(15px, 4vw, 40px);
  min-height: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
}

.logo {
  width: clamp(36px, 8vw, 48px);
  height: clamp(36px, 8vw, 48px);
  flex-shrink: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 20px);
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 3vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-hidden {
  display: list-item;
}

.navbar-btn {
  flex-shrink: 0;
  margin-left: clamp(10px, 3vw, 20px);
}

/* === BUTTONS ==== */
.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: #232e00;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1rem);
  text-decoration: none;
  border: none;
  padding: clamp(10px, 2vw, 13px) clamp(20px, 4vw, 34px) clamp(12px, 2vw, 14px) clamp(18px, 4vw, 28px);
  border-radius: 0;
  box-shadow: 4px 5px 0 var(--yellow-shadow);
  margin-top: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  transition: background 0.19s, color 0.19s, transform 0.08s;
  text-align: center;
  white-space: nowrap;
}
.btn-yellow:hover {
  background: #dbea15;
  color: #181e00;
  transform: translate(2px, 2px);
}

/* === HERO SECTION === */
.hero {
  background: var(--green-dark);
  min-height: clamp(400px, 80vh, 600px);
  padding-top: clamp(100px, 20vh, 140px);
  position: relative;
  text-align: center;
  width: 100%;
  padding-left: clamp(10px, 3vw, 20px);
  padding-right: clamp(10px, 3vw, 20px);
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.big {
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin: clamp(20px, 5vw, 42px) 0 0 0;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px #1118;
  z-index: 10;
}
.frog-astronauts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0;
  margin: clamp(-40px, -10vw, -80px) 0 0 0;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}
.frog-astronauts img {
  width: clamp(280px, 60vw, 590px);
  max-width: 95vw;
  height: auto;
  margin: 0 clamp(-10px, -3vw, -18px);
}
.hero-cta {
  margin-top: clamp(-15px, -3vw, -24px);
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}
.cta-box {
  background: var(--green-box);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: clamp(24px, 6vw, 44px) clamp(20px, 8vw, 60px) clamp(20px, 5vw, 32px) clamp(20px, 8vw, 60px);
  min-width: clamp(280px, 80vw, 400px);
  max-width: 95vw;
  min-height: clamp(100px, 20vw, 120px);
  position: relative;
  z-index: 20;
}
.cta-title {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 900;
  margin: 0 0 clamp(16px, 4vw, 24px) 0;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* ABOUT SECTION */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 15vw, 120px) clamp(15px, 4vw, 20px) clamp(40px, 10vw, 80px) clamp(15px, 4vw, 20px);
  position: relative;
  background: var(--green-main);
  width: 100%;
}
.about-img {
  flex: 1;
  text-align: right;
  display: flex;
  justify-content: center;
}
.about-img img {
  max-width: clamp(200px, 35vw, 400px);
  width: 100%;
  height: auto;
}
.about-content {
  flex: 2;
  margin-left: clamp(20px, 5vw, 36px);
  color: var(--white);
  text-align: left;
  max-width: 100%;
}
.about-content h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0 0 clamp(8px, 2vw, 12px) 0;
  font-weight: 900;
  line-height: 1.1;
}
.about-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.5;
  margin-bottom: clamp(16px, 4vw, 24px);
}

/* === MARQUEE ===*/
.marquee {
  width: 100%;
  background: transparent;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: clamp(60px, 12vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.marquee-inner {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 2px;
  color: var(--white);
  background: #3dd187;
  display: inline-block;
  transform: rotate(-4deg) translateY(18px);
  padding: clamp(8px, 2vw, 15px) 0;
  width: 120vw;
  text-align: center;
  margin-left: -10vw;
}
.marquee-inner.yellow {
  background: var(--yellow);
  color: #223412;
  transform: rotate(5deg) translateY(-22px);
  font-weight: 900;
}

/* === TOKENOMICS === */
.tokenomics {
  padding: clamp(60px, 15vw, 120px) clamp(15px, 4vw, 20px) clamp(20px, 5vw, 30px) clamp(15px, 4vw, 20px);
  background: var(--green-dark);
  text-align: center;
  width: 100%;
}
.tokenomics h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.6em;
}
.tokenomics-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(24px, 6vw, 38px);
}
.tokenomics-chart {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: clamp(600px, 80vw, 820px);
  position: relative;
}
.tokenomics-item {
  background: rgba(255, 255, 255, 0.046);
  border-radius: 50%;
  width: clamp(120px, 20vw, 170px);
  height: clamp(120px, 20vw, 170px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 22px #25252518;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
}
.t1 {
  grid-area: 1 / 1;
}
.t2 {
  grid-area: 1 / 3;
}
.t3 {
  grid-area: 2 / 1;
}
.t4 {
  grid-area: 2 / 3;
}
.tokenomics-astro {
  grid-area: 1 / 2 / 3 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tokenomics-astro img {
  width: clamp(200px, 30vw, 350px);
  height: auto;
  margin-top: 15px;
  box-shadow: 0 10px 40px #1519201a;
}
.percent {
  font-size: clamp(1.8em, 4vw, 2.3em);
  font-weight: bold;
  color: var(--white);
}
.label {
  margin-top: 8px;
  color: #d5ffe8;
  font-size: clamp(1em, 2vw, 1.2em);
}

/* === HOW TO BUY === */
.buy {
  padding: clamp(30px, 8vw, 44px) clamp(15px, 4vw, 20px) clamp(40px, 10vw, 60px) clamp(15px, 4vw, 20px);
  background: var(--green-main);
  text-align: center;
  width: 100%;
}
.buy-header {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: clamp(20px, 5vw, 32px);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(24px, 6vw, 38px);
}
.buy-title {
  flex: 2;
  text-align: left;
  padding: 0 clamp(15px, 4vw, 32px);
  min-width: 280px;
}
.buy-title h2 {
  font-size: clamp(2.5rem, 8vw, 3rem);
  font-weight: 900;
  margin: 0 0 clamp(8px, 2vw, 12px) 0;
}
.buy-img {
  flex: 2;
  text-align: right;
  display: flex;
  justify-content: center;
}
.buy-img img {
  width: clamp(200px, 40vw, 360px);
  height: auto;
  margin: 0 clamp(15px, 4vw, 25px);
}
.buy-steps {
  display: flex;
  gap: clamp(16px, 4vw, 32px);
  justify-content: center;
  margin: clamp(30px, 8vw, 54px) 0 clamp(16px, 4vw, 22px) 0;
  flex-wrap: wrap;
}
.step {
  background: #398d41e0;
  border-radius: var(--rounded);
  min-width: clamp(240px, 30vw, 250px);
  min-height: clamp(150px, 20vw, 175px);
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 22px) clamp(18px, 3vw, 24px) clamp(16px, 3vw, 22px);
  text-align: left;
  box-shadow: var(--shadow);
  color: var(--white);
  flex: 1;
  margin: 0 clamp(5px, 1vw, 7px);
  max-width: 100%;
}
.step-num {
  background: #39ce5a;
  color: #123821;
  border-radius: 50%;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: bold;
  padding: clamp(4px, 1vw, 5px) clamp(10px, 2vw, 13px) clamp(6px, 1vw, 7px) clamp(10px, 2vw, 13px);
  margin-right: clamp(10px, 2vw, 14px);
  display: inline-block;
  vertical-align: middle;
}
.step h4 {
  font-size: clamp(1rem, 2.2vw, 1.08rem);
  margin: clamp(8px, 2vw, 10px) 0 clamp(6px, 1.5vw, 8px) 0;
  font-weight: 800;
}
.step p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}
.buy-contract {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-box);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  margin: clamp(24px, 6vw, 36px) auto 0 auto;
  padding: clamp(16px, 4vw, 22px) clamp(20px, 5vw, 32px);
  min-width: clamp(280px, 60vw, 480px);
  max-width: 95vw;
  font-size: clamp(0.9rem, 2.2vw, 1.10rem);
  gap: clamp(16px, 4vw, 24px);
  flex-wrap: wrap;
}
.contract-address {
  font-family: var(--font);
  letter-spacing: 1px;
  background: none;
  color: #fff;
  margin-right: clamp(6px, 2vw, 9px);
  word-break: break-all;
  text-align: center;
  flex: 1;
  min-width: 200px;
}
#copyContract {
  min-width: clamp(80px, 20vw, 100px);
  margin-top: 0;
}

/* === AIRDROP SECTION === */
.airdrop {
  padding: clamp(60px, 12vw, 80px) clamp(15px, 4vw, 20px) clamp(40px, 10vw, 60px) clamp(15px, 4vw, 20px);
  background: var(--green-dark);
  text-align: center;
  width: 100%;
}

.airdrop-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.airdrop-header {
  margin-bottom: clamp(40px, 10vw, 60px);
  position: relative;
}

.airdrop-header h2 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  margin-bottom: clamp(8px, 2vw, 12px);
  color: var(--yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.airdrop-desc {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: clamp(20px, 5vw, 32px);
  color: #d5ffe8;
  line-height: 1.4;
}

.airdrop-tasks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 35vw, 280px), 1fr));
  gap: clamp(16px, 4vw, 24px);
  margin: 0 auto clamp(40px, 10vw, 60px) auto;
  max-width: 1000px;
  width: 100%;
}

.task-card {
  background: var(--green-box);
  border-radius: var(--rounded);
  padding: clamp(20px, 4vw, 24px) clamp(16px, 3vw, 20px);
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: clamp(250px, 40vw, 280px);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.task-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.task-icon {
  font-size: clamp(2rem, 6vw, 2.5rem);
  margin-bottom: clamp(12px, 3vw, 16px);
}

.task-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.task-content h4 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 900;
  margin: 0 0 clamp(6px, 1.5vw, 8px) 0;
  color: var(--white);
}

.task-reward {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 800;
  color: var(--yellow);
  margin: 0 0 clamp(6px, 1.5vw, 8px) 0;
}

.task-desc {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #d5ffe8;
  margin: 0 0 clamp(16px, 4vw, 20px) 0;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
}

.task-btn {
  width: 100%;
  margin-top: auto;
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.task-btn:disabled {
  background: #666;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.task-status {
  margin-top: clamp(8px, 2vw, 12px);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.completed {
  color: var(--yellow);
  font-weight: 800;
}

.referral-card {
  grid-column: 1 / -1;
  max-width: 100%;
  min-height: auto;
}

.referral-section {
  margin-top: clamp(16px, 4vw, 20px);
}

.referral-link-container {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 12px);
  margin-bottom: clamp(16px, 4vw, 24px);
}

.referral-input {
  width: 100%;
  padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  box-sizing: border-box;
}

.copy-btn {
  width: 100%;
  padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.referral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 20px);
  margin-top: clamp(16px, 4vw, 20px);
}

.stat {
  text-align: center;
  padding: clamp(12px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--yellow);
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #d5ffe8;
}

.total-earnings {
  display: flex;
  justify-content: center;
  width: 100%;
}

.earnings-card {
  background: linear-gradient(135deg, var(--green-box), var(--green-main));
  border-radius: var(--rounded);
  padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 24px);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--yellow);
  width: 100%;
  max-width: clamp(350px, 80vw, 500px);
}

.earnings-card h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 900;
  margin: 0 0 clamp(12px, 3vw, 16px) 0;
  color: var(--white);
}

.total-amount {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin: clamp(12px, 3vw, 16px) 0 clamp(16px, 4vw, 24px) 0;
  color: var(--yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.token-symbol {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-left: clamp(6px, 1.5vw, 8px);
}

.claim-btn {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  padding: clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
  width: 100%;
}

.claim-btn:disabled {
  background: #666;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

/* === COMMUNITY SECTION === */
.community {
  padding: clamp(60px, 12vw, 80px) clamp(15px, 4vw, 20px) clamp(40px, 10vw, 60px) clamp(15px, 4vw, 20px);
  background: var(--green-main);
  text-align: center;
  width: 100%;
}

.community-header {
  margin-bottom: clamp(40px, 10vw, 60px);
}

.community-header h2 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  margin-bottom: clamp(8px, 2vw, 12px);
  color: var(--white);
}

.community-desc {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #d5ffe8;
  margin-bottom: clamp(20px, 5vw, 32px);
  line-height: 1.4;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 300px), 1fr));
  gap: clamp(20px, 5vw, 32px);
  margin: 0 auto clamp(40px, 10vw, 60px) auto;
  max-width: 900px;
  width: 100%;
}

.community-card {
  background: var(--green-box);
  border-radius: var(--rounded);
  padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 24px);
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  width: 100%;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.telegram-card {
  border-left: 4px solid #0088cc;
}

.twitter-card {
  border-left: 4px solid #1da1f2;
}

.community-icon {
  margin-bottom: clamp(16px, 4vw, 20px);
  color: var(--yellow);
}

.community-content h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 900;
  margin: 0 0 clamp(8px, 2vw, 12px) 0;
  color: var(--white);
}

.community-content p {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #d5ffe8;
  margin: 0 0 clamp(16px, 4vw, 24px) 0;
  font-weight: 400;
  line-height: 1.5;
}

.community-btn {
  width: 100%;
  text-align: center;
  padding: clamp(10px, 2.5vw, 12px) clamp(20px, 5vw, 24px);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 20vw, 150px), 1fr));
  gap: clamp(20px, 5vw, 32px);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--yellow);
  display: block;
  margin-bottom: clamp(6px, 1.5vw, 8px);
}

.stat-item .stat-label {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #d5ffe8;
  font-weight: 400;
}

/* === FAQ SECTION === */
.faq {
  background: #fff;
  color: #171e1a;
  padding: clamp(80px, 15vw, 110px) clamp(15px, 4vw, 20px) clamp(30px, 8vw, 44px) clamp(15px, 4vw, 20px);
  text-align: center;
  width: 100%;
}
.faq h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  margin-bottom: clamp(6px, 1.5vw, 8px);
  color: #232e00;
}
.faq-desc {
  font-size: clamp(1rem, 2.2vw, 1.02rem);
  margin-bottom: clamp(20px, 5vw, 32px);
}
.faq-list {
  margin: 0 auto clamp(20px, 5vw, 32px) auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 320px), 1fr));
  gap: clamp(12px, 3vw, 19px) clamp(16px, 4vw, 28px);
  max-width: 670px;
  width: 100%;
}
.faq-item {
  border-radius: 8px;
  border: 2px solid var(--green-faq);
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 19px) clamp(5px, 1vw, 7px) clamp(16px, 3vw, 19px);
  text-align: left;
  box-shadow: 0 1px 5px #0002;
  font-size: clamp(1rem, 2.2vw, 1.06rem);
  width: 100%;
}
.faq-item.green {
  background: var(--green-faq);
  color: #fff;
}
.faq-item.dark {
  background: #fff;
  color: #1c3122;
}

.faq-item b {
  font-size: clamp(0.95rem, 2vw, 1rem);
  display: block;
  margin-bottom: clamp(6px, 1.5vw, 9px);
}
.faq-frogs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(16px, 4vw, 28px);
  margin-top: clamp(24px, 6vw, 36px);
  flex-wrap: wrap;
}
.faq-frogs img {
  width: clamp(120px, 35vw, 380px);
  height: auto;
}

/* === ROADMAP SECTION === */
.roadmap {
  background: linear-gradient(to bottom, #fff 0%, #e6faff14 33%, var(--green-dark) 95%);
  padding: clamp(50px, 12vw, 70px) clamp(15px, 4vw, 20px) clamp(40px, 10vw, 60px) clamp(15px, 4vw, 20px);
  position: relative;
  min-height: clamp(500px, 80vw, 660px);
  width: 100%;
}
.roadmap-label {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 900;
  letter-spacing: clamp(3px, 1vw, 6px);
  color: #20460e;
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  text-orientation: mixed;
  position: absolute;
  left: clamp(15px, 4vw, 6vw);
  top: clamp(60px, 15vw, 92px);
}
.roadmap-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 30vw, 250px), 1fr));
  gap: clamp(20px, 5vw, 54px) clamp(20px, 5vw, 44px);
  margin-left: clamp(80px, 20vw, 190px);
  margin-right: auto;
  max-width: 850px;
  position: relative;
  width: calc(100% - clamp(80px, 20vw, 190px));
}
.roadmap-phase {
  background: var(--green-box);
  border-radius: 13px;
  color: #fff;
  box-shadow: var(--shadow);
  padding: clamp(16px, 4vw, 22px) clamp(20px, 5vw, 32px) clamp(14px, 3vw, 19px) clamp(20px, 5vw, 32px);
  min-width: clamp(180px, 25vw, 210px);
  margin-bottom: clamp(16px, 4vw, 26px);
  position: relative;
  width: 100%;
}
.roadmap-phase h4 {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: bold;
  margin: 0 0 clamp(6px, 1.5vw, 9px) 0;
  letter-spacing: 1px;
}
.roadmap-phase ul {
  margin: 0;
  padding-left: clamp(10px, 2vw, 14px);
  font-size: clamp(0.9rem, 2vw, 1rem);
}
.roadmap-frog {
  position: absolute;
  right: clamp(-50px, -12vw, -130px);
  bottom: clamp(-5px, -2vw, -10px);
  z-index: 10;
  display: none;
}
.roadmap-frog img {
  width: clamp(100px, 25vw, 290px);
  height: auto;
}

/* JOIN THE FROGS */
.join {
  text-align: center;
  padding: clamp(60px, 12vw, 80px) clamp(15px, 4vw, 20px) clamp(100px, 20vw, 140px) clamp(15px, 4vw, 20px);
  background: var(--green-dark);
  width: 100%;
}
.join-logo {
  width: clamp(60px, 12vw, 80px);
  height: auto;
  margin-bottom: clamp(16px, 4vw, 24px);
}
.join h2 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 2px;
}

/* === RESPONSIVENESS === */
@media (max-width: 1000px) {
  .mobile-hidden {
    display: none;
  }
  .tokenomics-chart {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
  }
  .tokenomics-astro {
    grid-area: 3 / 1 / 3 / 3;
  }
  .t1 {
    grid-area: 1 / 1;
  }
  .t2 {
    grid-area: 1 / 2;
  }
  .t3 {
    grid-area: 2 / 1;
  }
  .t4 {
    grid-area: 2 / 2;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px;
    min-height: auto;
  }

  .nav-container {
    order: 2;
    width: 100%;
    margin-top: 15px;
  }

  .navbar-btn {
    order: 3;
    margin: 15px 0 0 0;
    width: 100%;
    text-align: center;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    flex: 1;
    min-width: auto;
    text-align: center;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-img,
  .about-content {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .about-content {
    margin-left: 0;
    margin-top: 20px;
  }

  .about-img img {
    max-width: 60vw;
  }

  .buy-header {
    flex-direction: column-reverse;
    text-align: center;
  }

  .buy-title {
    padding: 0;
    text-align: center;
  }

  .buy-steps {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }

  .buy-contract {
    flex-direction: column;
    gap: 15px;
    margin: 30px 10px 0 10px;
  }

  .contract-address {
    margin-right: 0;
    text-align: center;
  }

  .roadmap-content {
    grid-template-columns: 1fr;
    margin-left: 60px;
    margin-right: 15px;
  }

  .roadmap-label {
    left: 15px;
    font-size: 1.5rem;
  }

  .roadmap-frog {
    display: block;
    right: -30px;
  }

  .airdrop-tasks {
    grid-template-columns: 1fr;
  }

  .referral-card {
    grid-column: 1;
  }

  .referral-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .community-links {
    grid-template-columns: 1fr;
  }

  .community-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 6px 8px;
    flex: none;
    min-width: 60px;
  }

  .hero {
    padding-top: 120px;
  }

  .cta-box {
    padding: 20px 15px;
    min-width: 95vw;
  }

  .about {
    padding: 60px 10px 40px 10px;
  }

  .tokenomics-chart {
    gap: 15px;
  }

  .tokenomics-item,
  .tokenomics-astro img {
    width: clamp(80px, 18vw, 100px);
    height: clamp(80px, 18vw, 100px);
  }

  .buy-steps {
    padding: 0 5px;
  }

  .step {
    padding: 16px 12px;
    min-width: 0;
  }

  .buy-contract {
    margin: 30px 5px 0 5px;
    padding: 15px;
  }

  .airdrop {
    padding: 50px 10px 30px 10px;
  }

  .task-card {
    padding: 16px 12px;
  }

  .registration-card {
    padding: 20px 15px;
  }

  .address-input {
    padding: 12px 15px;
  }

  .earnings-card {
    padding: 20px 15px;
  }

  .community {
    padding: 50px 10px 30px 10px;
  }

  .community-card {
    padding: 20px 15px;
  }

  .faq-frogs img {
    width: clamp(80px, 25vw, 120px);
  }

  .roadmap-content {
    margin-left: 50px;
    margin-right: 10px;
  }

  .roadmap-phase {
    padding: 15px 18px 12px 18px;
  }
}

/* Enhanced Airdrop Styles */
.registration-section {
  margin-bottom: clamp(30px, 8vw, 40px);
  width: 100%;
}

.registration-card {
  background: var(--green-box);
  border-radius: var(--rounded);
  padding: clamp(30px, 8vw, 40px) clamp(20px, 6vw, 32px);
  max-width: clamp(500px, 80vw, 600px);
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 2px solid var(--yellow);
  text-align: center;
  width: 100%;
}

.registration-card h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: clamp(8px, 2vw, 12px);
  color: var(--yellow);
}

.registration-desc {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #d5ffe8;
  margin-bottom: clamp(16px, 4vw, 24px);
  font-weight: 400;
  line-height: 1.4;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 16px);
  margin-bottom: clamp(16px, 4vw, 20px);
  width: 100%;
}

.address-input {
  width: 100%;
  padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.address-input:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.15);
}

.address-input.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.address-input.success {
  border-color: #44ff44;
  background: rgba(68, 255, 68, 0.1);
}

.register-btn {
  width: 100%;
  padding: clamp(12px, 3vw, 16px) clamp(20px, 5vw, 24px);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 900;
}

.registration-status {
  margin: clamp(12px, 3vw, 16px) 0;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  min-height: 24px;
}

.status-success {
  color: #44ff44;
}

.status-error {
  color: #ff4444;
}

.status-info {
  color: var(--yellow);
}

.address-info {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: clamp(12px, 3vw, 16px);
  margin-top: clamp(16px, 4vw, 20px);
}

.address-info p {
  margin: 0;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #d5ffe8;
  font-weight: 400;
  line-height: 1.4;
}

.user-info {
  background: var(--green-box);
  border-radius: var(--rounded);
  padding: clamp(20px, 5vw, 24px);
  margin-bottom: clamp(24px, 6vw, 32px);
  text-align: center;
  width: 100%;
}

.registered-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 12px);
  flex-wrap: wrap;
}

.address-label {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
}

.address-display {
  font-family: "Courier New", monospace;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2vw, 12px);
  border-radius: 6px;
  word-break: break-all;
  text-align: center;
}

.btn-small {
  background: var(--yellow);
  color: #232e00;
  border: none;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
  border-radius: 6px;
  font-size: clamp(0.75rem, 1.8vw, 0.8rem);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-small:hover {
  background: #dbea15;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 35vw, 280px), 1fr));
  gap: clamp(16px, 4vw, 24px);
  margin-bottom: clamp(30px, 8vw, 40px);
  width: 100%;
}

.referral-activity {
  margin-top: clamp(16px, 4vw, 20px);
  padding: clamp(12px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: none;
}

.referral-activity.active {
  display: block;
}

.referral-notification {
  background: rgba(68, 255, 68, 0.1);
  border: 1px solid #44ff44;
  border-radius: 6px;
  padding: clamp(10px, 2.5vw, 12px);
  margin-bottom: clamp(6px, 1.5vw, 8px);
  font-size: clamp(0.85rem, 2vw, 0.9rem);
  color: #44ff44;
  line-height: 1.4;
}

.earnings-dashboard {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 8vw, 40px);
  width: 100%;
}

.balance-breakdown {
  margin: clamp(16px, 4vw, 24px) 0;
}

.balance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(8px, 2vw, 12px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-item:last-child {
  border-bottom: none;
}

.balance-label {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #d5ffe8;
}

.balance-value {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
}

.balance-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 3vw, 16px) 0;
  margin-top: clamp(12px, 3vw, 16px);
  border-top: 2px solid var(--yellow);
}

.balance-total .balance-label {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 900;
  color: var(--white);
}

.claim-section {
  margin-top: clamp(20px, 5vw, 24px);
  padding-top: clamp(20px, 5vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.claim-info {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: #d5ffe8;
  margin-bottom: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: 1.4;
}

.claim-timer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 16px);
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.timer-label {
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  color: var(--white);
}

.timer-display {
  font-family: "Courier New", monospace;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 700;
  color: var(--yellow);
}

/* Additional responsive fixes */
@media (max-width: 600px) {
  .registered-address {
    flex-direction: column;
    gap: 10px;
  }

  .address-display {
    width: 100%;
    word-break: break-all;
  }

  .balance-item,
  .balance-total {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .claim-timer {
    flex-direction: column;
    text-align: center;
  }

  .referral-stats {
    grid-template-columns: 1fr;
  }
}

/* Animation keyframes */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Ensure all images are responsive */
img {
  max-width: 100%;
  height: auto;
}

/* Prevent horizontal overflow */
body,
html {
  overflow-x: hidden;
  width: 100%;
}

/* Ensure containers don't exceed viewport */
.airdrop-container,
.community-header,
.buy-header,
.tokenomics,
.about,
.hero,
.faq,
.roadmap,
.join {
  max-width: 100vw;
  overflow-x: hidden;
}
