/* ===== OctaMom (OMOM) – Anime Crypto Website ===== */
:root {
  --gold: #ffd700;
  --gold-dark: #e6b800;
  --pink: #ff6b9d;
  --pink-light: #ff9ec0;
  --blue: #4fc3f7;
  --blue-deep: #0288d1;
  --purple: #b388ff;
  --bg-dark: #0a0a12;
  --bg-card: #12121f;
  --text: #ffffff;
  --text-muted: #b0b0c8;
  --accent: #ff6b9d;
  --gradient-gold: linear-gradient(135deg, #ffd700, #ffaa00, #ffd700);
  --gradient-anime: linear-gradient(135deg, #ff6b9d, #b388ff, #4fc3f7);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.4);
  --radius: 20px;
  --font-display: 'Mochiy Pop One', 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', 'Zen Maru Gothic', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Background particles */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.accent {
  background: var(--gradient-anime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 18, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu.open {
  display: flex;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(79, 195, 247, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(179, 136, 255, 0.1) 0%, transparent 40%),
    var(--bg-dark);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-logo {
  width: min(680px, 85vw);
  height: auto;
  border-radius: 50%;
  box-shadow: 
    0 0 50px rgba(255, 215, 0, 0.55),
    0 0 90px rgba(255, 107, 157, 0.35),
    0 0 130px rgba(79, 195, 247, 0.25);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-title {
  margin-bottom: 16px;
}

.title-main {
  display: block;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.title-sub {
  display: block;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--pink-light);
  margin-top: 4px;
  letter-spacing: 6px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.7;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Sections common */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* About */
.about {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(179, 136, 255, 0.08) 0%, transparent 50%),
    var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-anime);
  opacity: 0;
  transition: opacity 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card.main-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #1a1a2e, #12121f);
  border-color: rgba(255, 215, 0, 0.25);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* OMOM Power special card */
.about-card.power-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, #1a1528, #12121f 40%, #0f1a2e);
  border: 1px solid rgba(255, 215, 0, 0.4);
  text-align: center;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.about-card.power-card::before {
  opacity: 1;
  background: var(--gradient-gold);
  height: 4px;
}

.about-card.power-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.about-card.power-card .card-icon {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.about-card.power-card h3 {
  font-size: 1.6rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.about-card.power-card .power-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pink-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.about-card.power-card p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.about-card.power-card:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 50px rgba(255, 215, 0, 0.2);
  transform: translateY(-6px);
}

/* Tokenomics */
.tokenomics {
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 45%),
    var(--bg-dark);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.token-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.token-percent {
  font-family: var(--font-display);
  font-size: 2.4rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.token-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.token-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.token-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

/* ERC-20 Contract Card */
.erc20-card {
  margin-top: 32px;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.erc20-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.erc20-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.erc20-badge {
  background: var(--gradient-gold);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.erc20-header h3 {
  font-size: 1.3rem;
  color: var(--text);
}

.erc20-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.erc20-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.erc20-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.erc20-label {
  min-width: 140px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.erc20-value {
  color: var(--text);
  font-size: 0.95rem;
}

.contract-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.contract-wrap code {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--gold);
  word-break: break-all;
}

.copy-btn {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover:not(:disabled) {
  background: rgba(255, 215, 0, 0.3);
}

.copy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.erc20-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(255, 107, 157, 0.08);
  border-left: 3px solid var(--pink);
  border-radius: 0 8px 8px 0;
}

/* Buy meta chips */
.buy-token-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.meta-chip {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Roadmap */
.roadmap {
  background: 
    radial-gradient(ellipse at 50% 80%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
    var(--bg-dark);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--pink), var(--blue));
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  z-index: 2;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateX(6px);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.timeline-content li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.7rem;
}

/* Family */
.family {
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    var(--bg-dark);
}

.family-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.family-main {
  text-align: center;
}

.family-img {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(255, 215, 0, 0.4),
    0 0 80px rgba(255, 107, 157, 0.25);
  border: 4px solid rgba(255, 215, 0, 0.5);
}

.family-desc h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.family-desc p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.family-traits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.family-traits li {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
}

/* Community */
.community {
  background: var(--bg-dark);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.social-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.social-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--gold);
}

.social-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Buy section */
.buy-section {
  padding-bottom: 80px;
}

.buy-card {
  background: linear-gradient(145deg, #1a1a2e, #12121f);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.buy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.buy-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.buy-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.buy-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.buy-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.contract-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contract-note code {
  background: rgba(255, 215, 0, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--gold);
  font-family: monospace;
}

.buy-logo {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.buy-logo img {
  width: 320px;
  height: 220px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  animation: float 5s ease-in-out infinite;
}

/* Footer */
.footer {
  background: #06060c;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 48px 24px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: none;
  border: none;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.disclaimer {
  font-size: 0.75rem !important;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .family-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .family-traits {
    justify-content: center;
  }

  .buy-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .buy-logo img {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding-top: 100px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .section {
    padding: 70px 20px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .tokenomics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .family-traits {
    grid-template-columns: 1fr;
  }
}
