@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Baloo+2:wght@400;600;700&display=swap');

:root {
  --primary: #0E1CB4;
  --primary-light: #1e2ecf;
  --secondary: #e6ff00;
  --bg-dark: #050a24;
  --bg-alt: #0a113d;
  --text-white: #ffffff;
  --text-gray: #b0b8d1;
  --green: #00ff88;
  --font-display: 'Chewy', system-ui, sans-serif;
  --font-body: 'Baloo 2', system-ui, sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utils */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn.primary {
  background-color: var(--secondary);
  color: var(--bg-dark);
}

.btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(230, 255, 0, 0.4);
}

.btn.secondary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary-light);
}

.btn.secondary:hover {
  background-color: var(--primary-light);
}

.btn.ghost {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: rgba(5, 10, 36, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--primary); /* Placeholder color if img missing */
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--secondary);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--secondary);
}

.nav-cta {
  background-color: var(--secondary);
  color: var(--bg-dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(14, 28, 180, 0.2) 0%, transparent 70%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.tagline {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 4px 4px 0 var(--primary);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
}

.contract-box {
  background: var(--bg-alt);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.contract-label {
  font-size: 12px;
  opacity: 0.6;
  text-transform: uppercase;
}

.contract-value {
  font-family: monospace;
  font-size: 14px;
  color: var(--secondary);
  word-break: break-all;
}

.copy-btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.copy-feedback {
  position: absolute;
  top: -40px;
  right: 20px;
  background: var(--green);
  color: var(--bg-dark);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-feedback.show {
  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tools {
  margin-bottom: 60px;
}

.hero-tools-label {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 15px;
}

.hero-tools-buttons {
  display: flex;
  gap: 15px;
}

.disclaimer {
  font-size: 12px;
  opacity: 0.4;
  max-width: 500px;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-logo-circle {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, var(--bg-dark) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  border: 10px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-caption {
  font-style: italic;
  opacity: 0.7;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.7;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-is h2 {
  font-family: var(--font-display);
  font-size: 42px;
  margin-bottom: 20px;
}

.what-is p {
  margin-bottom: 20px;
  font-size: 18px;
  opacity: 0.9;
}

.about-card {
  background: var(--bg-dark);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid var(--primary);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--secondary);
}

.about-card ul {
  list-style: none;
}

.about-card li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

/* Tokenomics */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.token-card {
  background: var(--bg-alt);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.token-card:hover {
  transform: translateY(-10px);
  background: var(--bg-dark);
  border-color: var(--primary);
}

.token-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 15px;
}

.token-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.token-note {
  font-size: 14px;
  opacity: 0.7;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 auto 25px;
  border: 4px solid var(--secondary);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 15px;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

/* Tools */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.tool-card {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--primary) 100%);
  padding: 60px;
  border-radius: 30px;
  text-align: center;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 10px;
}

.tool-card p {
  margin-bottom: 30px;
  opacity: 0.8;
}

/* Roadmap */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--secondary);
}

.roadmap-card ul {
  list-style: "🍌 ";
  padding-left: 20px;
}

.roadmap-card li {
  margin-bottom: 12px;
  opacity: 0.9;
}

.tiny-note {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.4;
}

/* Community */
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.community-card {
  background: var(--bg-dark);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
}

.community-card p {
  margin-bottom: 25px;
  opacity: 0.8;
}

.tiny-note-b {
  font-size: 12px;
  opacity: 0.5;
  font-style: italic;
}

/* Floating Memes */
.floating-meme {
  position: fixed;
  width: 100px;
  pointer-events: none;
  z-index: 500;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.meme-top-left { top: 15%; left: 5%; }
.meme-bottom-left { bottom: 10%; left: 8%; animation-delay: 1s; }
.meme-mid-right { top: 40%; right: 5%; animation-delay: 2s; }
.meme-bottom-right { bottom: 15%; right: 10%; animation-delay: 3s; }

.floating-meme img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Footer */
.site-footer {
  padding: 60px 0;
  background: #000;
  text-align: center;
}

.footer-content p {
  margin-bottom: 10px;
  opacity: 0.7;
}

.footer-disclaimer {
  font-size: 12px;
  opacity: 0.4 !important;
}

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 56px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .contract-box { justify-content: center; }
  .hero-buttons, .hero-tools-buttons { justify-content: center; }
  .two-col { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-logo-circle { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px;
    height: calc(100vh - 86px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav.active { transform: translateX(0); }
  .nav-toggle { display: block; }
  .steps { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .floating-meme { display: none; }
}
