﻿/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C38;
  --yellow: #FFD700;
  --green: #00C853;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --card: #161616;
  --border: rgba(255,107,0,0.2);
  --text: #F0F0F0;
  --text-muted: #888;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(255,107,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { background: rgba(10,10,10,0.97); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.nav-logo-text { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--orange); letter-spacing: 1px; }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-weight: 700;
  font-size: 0.9rem; padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s; letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--orange); background: rgba(255,107,0,0.08); }
.nav-socials { display: flex; gap: 8px; flex-shrink: 0; }
.btn-social {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  background: rgba(255,255,255,0.05); color: var(--text);
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.2s;
}
.btn-social:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.btn-social.telegram { background: rgba(0,136,204,0.1); border-color: rgba(0,136,204,0.25); color: #29aee6; }
.btn-social.telegram:hover { background: rgba(0,136,204,0.2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 16px; border-top: 1px solid var(--border); gap: 4px; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-weight: 700; font-size: 0.95rem; padding: 10px 12px; border-radius: var(--radius-sm); }
.nav-mobile a:hover { color: var(--orange); background: rgba(255,107,0,0.08); }
.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; justify-content: center;
  padding: 100px 24px 60px; overflow: hidden;
}
.hero-banner { position: absolute; inset: 0; z-index: 0; }
.banner-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 560px; flex: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.35);
  color: var(--orange-light); padding: 6px 14px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.5px;
  margin-bottom: 20px; text-transform: uppercase;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1; margin-bottom: 16px; letter-spacing: 2px;
}
.hero-pugg { color: var(--orange); text-shadow: 0 0 40px rgba(255,107,0,0.5); }
.hero-inu { color: var(--yellow); text-shadow: 0 0 40px rgba(255,215,0,0.4); }
.hero-tagline { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.hero-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; line-height: 1.6; }

.ca-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px;
}
.ca-label { font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.ca-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ca-address {
  font-family: monospace; font-size: 0.8rem; color: var(--orange-light);
  word-break: break-all; flex: 1; min-width: 0;
}
.ca-copy {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange); color: white; border: none;
  padding: 8px 14px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.82rem; font-weight: 800; transition: all 0.2s; flex-shrink: 0;
}
.ca-copy:hover { background: var(--orange-light); transform: translateY(-1px); }
.ca-copy.copied { background: var(--green); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white; text-decoration: none; padding: 14px 28px;
  border-radius: var(--radius); font-weight: 800; font-size: 1rem;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,0,0.55); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.2); text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius); font-weight: 800; font-size: 1rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

.launch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.25);
  color: var(--yellow); padding: 8px 16px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 700;
}

.hero-mascot {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex: 1; max-width: 420px;
}
.mascot-img {
  width: 100%; max-width: 380px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,107,0,0.3);
  box-shadow: 0 0 60px rgba(255,107,0,0.25), 0 0 120px rgba(255,107,0,0.1);
  animation: float 3.5s ease-in-out infinite;
}
.mascot-glow {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,0,0.2), transparent 70%);
  border-radius: 50%; animation: pulse-glow 3.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
@keyframes pulse-glow { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.15);opacity:1} }

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.75rem; animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== TICKER TAPE ===== */
.ticker-wrap {
  background: var(--orange); overflow: hidden; padding: 10px 0; white-space: nowrap;
}
.ticker-move {
  display: inline-flex; gap: 48px;
  animation: ticker 25s linear infinite;
}
.ticker-move span {
  font-family: 'Fredoka One', cursive; font-size: 1rem;
  color: white; letter-spacing: 1px; flex-shrink: 0; padding: 0 8px;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,0,0.1); border: 1px solid var(--border);
  color: var(--orange); padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--text); margin-bottom: 12px;
}
.section-title .highlight { color: var(--orange); }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-section { background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s;
}
.about-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.about-icon { font-size: 2.2rem; margin-bottom: 14px; }
.about-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.about-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ===== TOKENOMICS ===== */
.tokenomics-section { background: var(--dark); }
.tokenomics-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 48px;
}
.token-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: all 0.3s;
}
.token-stat:hover { border-color: var(--orange); transform: translateY(-3px); }
.token-stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.token-stat-value { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--orange); margin-bottom: 6px; }
.token-stat-label { color: var(--text-muted); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.token-dist { margin-bottom: 40px; display: flex; flex-direction: column; gap: 16px; }
.dist-item {}
.dist-bar {
  background: var(--dark3); border-radius: 100px; height: 36px;
  overflow: hidden; margin-bottom: 8px;
}
.dist-fill {
  height: 100%; border-radius: 100px; display: flex; align-items: center;
  padding-left: 16px; font-weight: 800; font-size: 0.9rem; color: var(--dark);
  transition: width 1s ease;
}
.dist-label { font-size: 0.88rem; font-weight: 700; color: var(--text-muted); padding-left: 4px; }

.contract-info {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.contract-row {
  display: flex; align-items: center;
  padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}
.contract-row:last-child { border-bottom: none; }
.contract-key { font-size: 0.82rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; min-width: 130px; }
.contract-val { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.contract-addr { font-family: monospace; font-size: 0.8rem; color: var(--orange-light); word-break: break-all; }

/* ===== HOW TO BUY ===== */
.htb-section { background: var(--dark2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Fredoka One', cursive; font-size: 3rem; color: rgba(255,107,0,0.12);
  line-height: 1; margin-bottom: 6px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 12px; }
.step-link {
  color: var(--orange); font-size: 0.85rem; font-weight: 800; text-decoration: none;
  transition: color 0.2s;
}
.step-link:hover { color: var(--orange-light); }

.ca-banner {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,215,0,0.05));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; text-align: center;
}
.ca-banner p { font-size: 0.8rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.ca-banner code { font-family: monospace; font-size: 0.88rem; color: var(--orange-light); word-break: break-all; display: block; margin-bottom: 16px; }
.btn-copy-full {
  background: var(--orange); color: white; border: none;
  padding: 10px 24px; border-radius: var(--radius-sm); cursor: pointer;
  font-weight: 800; font-size: 0.9rem; transition: all 0.2s;
}
.btn-copy-full:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ===== ROADMAP ===== */
.roadmap-section { background: var(--dark); }
.roadmap-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.roadmap-item { position: relative; }
.roadmap-phase {
  font-family: 'Fredoka One', cursive; font-size: 0.85rem;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px; padding-left: 4px;
}
.roadmap-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; height: 100%;
  transition: all 0.3s;
}
.roadmap-item.active .roadmap-card {
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,107,0,0.12);
}
.roadmap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.roadmap-status {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted); margin-bottom: 12px;
}
.active-status { color: var(--green); }
.roadmap-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; }
.roadmap-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.roadmap-card ul li {
  color: var(--text-muted); font-size: 0.88rem; padding-left: 18px; position: relative;
}
.roadmap-card ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 800;
}

/* ===== COMMUNITY ===== */
.community-section { background: var(--dark2); }
.community-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.comm-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  text-decoration: none; color: var(--text);
  transition: all 0.3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.comm-card:hover { transform: translateY(-6px); }
.twitter-card:hover { border-color: #1da1f2; box-shadow: 0 8px 32px rgba(29,161,242,0.15); }
.telegram-card:hover { border-color: #29aee6; box-shadow: 0 8px 32px rgba(41,174,230,0.15); }
.bscscan-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.comm-icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--text); }
.twitter-card .comm-icon { color: #1da1f2; }
.telegram-card .comm-icon { color: #29aee6; }
.comm-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.comm-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.comm-handle { font-size: 0.85rem; font-weight: 800; color: var(--orange); margin-bottom: 16px; display: block; }
.comm-arrow { font-size: 1.3rem; color: var(--text-muted); transition: transform 0.2s; }
.comm-card:hover .comm-arrow { transform: translateX(5px); color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: #070707; border-top: 1px solid rgba(255,107,0,0.1); padding: 48px 0 32px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.footer-name { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--orange); }
.footer-ticker { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-disclaimer { color: var(--text-muted); font-size: 0.8rem; max-width: 560px; line-height: 1.6; }
.footer-copy { color: rgba(255,255,255,0.2); font-size: 0.78rem; white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-socials { display: none; }
  .nav-toggle { display: flex; }
  .hero { flex-direction: column; text-align: center; padding-top: 90px; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .ca-row { justify-content: center; }
  .hero-mascot { max-width: 280px; }
  .mascot-img { max-width: 260px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 20px 50px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contract-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contract-key { min-width: unset; }
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
