
/* =========================
   RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   HEADER + NAV
========================= */

.header {
  width: 100%;
  height: 70px;
  padding: 0 25px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #111;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.logo span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* NAV */

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 13px;
  opacity: 0.8;
  transition: 0.3s;
}

nav a:hover {
  color: #FFD600;
  opacity: 1;
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #FFD600;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s;
}

.menu-toggle:hover {
  opacity: 0.8;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: calc(100vh - 70px);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 214, 0, 0.1) 0%, rgba(255, 214, 0, 0.03) 30%, black 70%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.hero-text h1 span {
  color: #FFD600;
}

.hero-text p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* HERO BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.buy-btn,
.learn-btn {
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.buy-btn {
  background: #FFD600;
  color: black;
  font-weight: bold;
}

.learn-btn {
  border: 1px solid #444;
  background: transparent;
  color: white;
}

.buy-btn:hover,
.learn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.5);
}

/* CONTRACT BOX */

.contract-box {
  margin-top: 25px;
  padding: 20px;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
}

.contract-box .label {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.contract-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contract-text {
  font-size: 13px;
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  background: #FFD600;
  border: none;
  color: black;
  width: 35px;
  height: 35px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  flex-shrink: 0;
}

.copy-btn:hover {
  opacity: 0.8;
}

/* HERO IMAGE */

.hero-image {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 18px;
  animation: float 6s ease-in-out infinite;
}

/* =========================
   HR LINE
========================= */

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #FFD600, transparent);
  margin: 80px auto 60px;
  width: 80%;
}

/* =========================
   STORY SECTION
========================= */

.story-section {
  padding: 60px 5%;
  background: black;
}

.story-container {
  max-width: 900px;
  padding: 40px 25px;
  margin: auto;
  border-radius: 12px;
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
}

.story-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.timeline {
  display: grid;
  gap: 25px;
}

.event {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  text-align: left;
}

.event .dot {
  width: 12px;
  height: 12px;
  background: #555;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.event.active .dot {
  background: #FFD600;
  box-shadow: 0 0 10px #FFD600;
}

.event-content h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.small-text {
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   INFO GRID
========================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-box {
  background: #0c0c0c;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 10px;
}

.info-box h4 {
  color: #FFD600;
  margin-bottom: 8px;
}

/* =========================
   FOOTER TEXT
========================= */

.footer-text {
  font-size: 18px;
  margin-top: 40px;
  line-height: 1.6;
}

.footer-text span {
  color: #FFD600;
}

/* =========================
   TOKENOMICS + ROADMAP + BUY
========================= */

.tokenomics-section,
.roadmap-section,
.how-to-buy,
.community {
  padding: 60px 5%;
}

.tokenomics-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f00 50%, #0a0a0a 100%);
}

.roadmap-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1a00 50%, #0a0a0a 100%);
}

.how-to-buy {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a0f1a 50%, #0a0a0a 100%);
}

.community {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a15 50%, #0a0a0a 100%);
}

h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* Card Grid */
.token-grid,
.roadmap-grid,
.buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Box */
.token-box,
.roadmap-box,
.buy-card,
.phase {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.token-box h3,
.buy-card h3,
.phase h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.token-box p,
.buy-card p,
.phase p {
  font-size: 13px;
  opacity: 0.8;
}

.phase ul {
  list-style: none;
  text-align: center;
  margin-top: 15px;
}

.phase li {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.token-box.highlight,
.phase.active {
  border-color: #FFD600;
  box-shadow: 0 0 15px rgba(255, 214, 0, 0.5);
}

/* Next Burn */
.next-burn {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px;
  border: 1px solid #FFD600;
  border-radius: 10px;
  background: #0c0c0c;
}

/* =========================
   HOW TO BUY SECTION
========================= */

.buy-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.buy-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buy-card h3 {
  text-align: center;
}

.buy-card p {
  text-align: center;
}

.buy-card.large-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.main-btn,
.ghost-btn {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.main-btn {
  background: #FFD600;
  color: black;
  font-weight: bold;
}

.ghost-btn {
  border: 1px solid #444;
  background: transparent;
  color: white;
}

.main-btn:hover,
.ghost-btn:hover {
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.5);
  transform: translateY(-2px);
}

/* =========================
   COMMUNITY
========================= */

.community {
  max-width: 100%;
}

.community h2 {
  margin-bottom: 40px;
}

.community-box {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 25px;
  border: 1px solid #FFD600;
  background: #0c0c0c;
  border-radius: 10px;
}

.community-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.community-box ul {
  list-style: none;
  margin-bottom: 15px;
  text-align: left;
}

.community-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

.community-box p {
  margin-bottom: 5px;
  font-size: 14px;
}

.community-box strong {
  display: block;
  margin-top: 10px;
  color: #FFD600;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  padding: 20px;
  border: 1px solid #222;
  border-radius: 10px;
  background: #111;
  transition: 0.3s;
}

.social-card:hover {
  border-color: #FFD600;
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.3);
}

.social-card .icon {
  margin-bottom: 10px;
}

.social-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.social-card p {
  font-size: 12px;
  opacity: 0.7;
}

/* =========================
   FOOTER SOCIAL
========================= */

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #222;
  border-radius: 8px;
  transition: 0.3s;
  color: #FFD600;
}

.social-icon:hover {
  border-color: #FFD600;
  box-shadow: 0 0 10px rgba(255, 214, 0, 0.3);
}

/* =========================
   ANIMATION
========================= */

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* =========================
   TABLET (769px - 1024px)
========================= */

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 50px 5%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .token-grid,
  .roadmap-grid,
  .buy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h2 {
    font-size: 24px;
  }

  .story-container {
    padding: 30px 20px;
  }
}

/* =========================
   MOBILE (max-width: 768px)
========================= */

@media (max-width: 768px) {
  /* Header adjustments */
  .header {
    padding: 0 15px;
  }

  /* Navigation */
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: black;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #222;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #222;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    padding: 40px 5%;
    gap: 20px;
  }

  .hero-text {
    min-width: auto;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-image img {
    max-width: 280px;
  }

  /* Sections */
  .story-section,
  .tokenomics-section,
  .roadmap-section,
  .how-to-buy,
  .community {
    padding: 40px 5%;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  /* Grids */
  .token-grid,
  .roadmap-grid,
  .buy-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .token-box,
  .buy-card,
  .phase,
  .info-box {
    padding: 18px;
  }

  .buy-card.large-card {
    grid-column: 1;
  }

  /* Buttons */
  .buy-btn,
  .learn-btn,
  .main-btn,
  .ghost-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* Community */
  .community-box {
    padding: 20px;
  }

  .community-box ul {
    text-align: center;
  }

  .social-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-card {
    padding: 15px;
  }

  /* Contract Box */
  .contract-box {
    padding: 15px;
    margin-top: 18px;
  }

  .contract-inner {
    flex-direction: column;
  }

  .contract-text {
    font-size: 11px;
  }

  /* Logo text */
  .logo span {
    font-size: 12px;
  }

  /* HR line */
  hr {
    margin: 50px auto 40px;
  }

  .story-container {
    padding: 25px 18px;
  }
}

/* =========================
   SMALL MOBILE (max-width: 480px)
========================= */

@media (max-width: 480px) {
  .header {
    height: 60px;
    padding: 0 12px;
  }

  .logo img {
    width: 24px;
    height: 24px;
  }

  .logo span {
    font-size: 11px;
  }

  .hero {
    padding: 30px 4%;
  }

  .hero-text h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .hero-text p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .buy-btn,
  .learn-btn {
    padding: 9px 16px;
    font-size: 12px;
  }

  .contract-box {
    padding: 12px;
    margin-top: 15px;
  }

  .contract-text {
    font-size: 10px;
  }

  .copy-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .story-section,
  .tokenomics-section,
  .roadmap-section,
  .how-to-buy,
  .community {
    padding: 30px 4%;
  }

  .story-container {
    padding: 18px 12px;
  }

  .token-box h3,
  .buy-card h3,
  .phase h3 {
    font-size: 14px;
  }

  .token-box p,
  .buy-card p,
  .phase p {
    font-size: 12px;
  }

  .menu-toggle {
    font-size: 20px;
  }

  nav {
    padding: 15px;
  }

  nav a {
    padding: 10px 0;
    font-size: 13px;
  }

  .contract-box .label {
    font-size: 11px;
  }

  .footer-icons {
    gap: 15px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-grid {
    gap: 12px;
  }

  .social-card {
    padding: 12px;
  }

  .next-burn {
    padding: 15px;
  }
}
