@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --gold: #f5c518;
  --gold-dark: #c9991a;
  --gold-light: #ffe066;
  --blue-deep: #061a40;
  --blue-mid: #0b2d6b;
  --blue-bright: #1565ff;
  --white: #ffffff;
  --text-dim: #a0b0cc;
  --card-bg: rgba(6, 26, 64, 0.85);
  --border-glow: rgba(245, 197, 24, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: #020d1f;
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(21, 101, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(245, 197, 24, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(2, 13, 31, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-buy-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 900 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(245, 197, 24, 0.6);
  color: #000 !important;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
}

.hero-banner {
  width: 100%;
  max-width: 900px;
  border-radius: 1rem;
  border: 2px solid rgba(245, 197, 24, 0.3);
  box-shadow: 0 0 60px rgba(21, 101, 255, 0.3), 0 0 120px rgba(245, 197, 24, 0.1);
  margin-bottom: 2rem;
  object-fit: cover;
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  font-weight: 600;
}

.hero-ca {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: border-color 0.2s;
  word-break: break-all;
  text-align: left;
}

.hero-ca:hover { border-color: var(--gold); }

.copy-feedback { font-size: 0.7rem; color: #4cff8f; display: none; }

.hero-socials {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
}

.social-btn:hover { transform: translateY(-2px); }
.social-btn img { width: 20px; height: 20px; object-fit: contain; border-radius: 4px; }

.btn-pumpfun { background: #000; border-color: rgba(255,255,255,0.15); color: #fff; }
.btn-pumpfun:hover { box-shadow: 0 0 16px rgba(255,255,255,0.2); }
.btn-dex { background: #0d1117; border-color: rgba(0,255,150,0.25); color: #00ff96; }
.btn-dex:hover { box-shadow: 0 0 16px rgba(0,255,150,0.3); }
.btn-x { background: #000; border-color: rgba(255,255,255,0.2); color: #fff; }
.btn-x:hover { box-shadow: 0 0 16px rgba(255,255,255,0.15); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.68rem; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; }

/* ===== SECTIONS ===== */
.section-inner { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  border-top: 1px solid rgba(245,197,24,0.1);
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--gold); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text p {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.about-features { display: flex; flex-direction: column; gap: 1rem; }

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover { border-color: var(--gold); transform: translateX(4px); }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.feature-title { font-weight: 800; font-size: 0.88rem; margin-bottom: 0.2rem; }
.feature-desc { font-size: 0.76rem; color: var(--text-dim); line-height: 1.4; }

/* ===== GALLERY ===== */
.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
}

.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }

.gallery-card {
  flex: 0 0 auto;
  width: 175px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1.5px solid rgba(245,197,24,0.2);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(245, 197, 24, 0.3);
}

.gallery-card img { width: 100%; height: 175px; object-fit: cover; display: block; }
.gallery-card-label { background: rgba(6,26,64,0.95); padding: 0.5rem; font-size: 0.7rem; font-weight: 800; text-align: center; color: var(--gold-light); letter-spacing: 0.5px; }

/* ===== GENERATOR ===== */
.gen-tabs {
  display: flex;
  margin: 1.5rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 0.75rem;
  overflow: hidden;
  max-width: 380px;
}

.gen-tab {
  flex: 1;
  padding: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.83rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}

.gen-tab.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; }

.gen-panel { display: none; }
.gen-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.gen-form { display: flex; flex-direction: column; gap: 1rem; }

.gen-form label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
  display: block;
}

.gen-form input, .gen-form select {
  width: 100%;
  background: rgba(11, 45, 107, 0.4);
  border: 1.5px solid rgba(245,197,24,0.25);
  border-radius: 0.5rem;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.gen-form input:focus, .gen-form select:focus { border-color: var(--gold); }
.gen-form select option { background: #061a40; }

.gen-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
}

.gen-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4); }
.gen-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.upload-area {
  border: 2px dashed rgba(245,197,24,0.35);
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(11,45,107,0.2);
}

.upload-area:hover, .upload-area.drag-over { border-color: var(--gold); background: rgba(245,197,24,0.05); }
.upload-area input[type="file"] { display: none; }
.upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.upload-text { font-size: 0.78rem; color: var(--text-dim); line-height: 1.5; }
.upload-preview { margin-top: 0.75rem; border-radius: 0.5rem; max-height: 150px; max-width: 100%; object-fit: contain; display: none; border: 1.5px solid var(--border-glow); }

.gen-output {
  background: var(--card-bg);
  border: 1.5px solid var(--border-glow);
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.gen-output-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
}

.gen-placeholder { text-align: center; color: var(--text-dim); padding: 2rem; }
.gen-placeholder .placeholder-ball { font-size: 3rem; display: block; margin-bottom: 0.75rem; animation: pulse 2s infinite; }
.gen-placeholder p { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }

@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.gen-loading { display: none; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem; }

.gen-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(245,197,24,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.gen-loading-text { font-size: 0.76rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; font-weight: 800; }
.gen-result-img { width: 100%; height: 100%; object-fit: cover; display: none; }

.gen-output-footer {
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glow);
  background: rgba(6,26,64,0.5);
}

.gen-disclaimer { font-size: 0.66rem; color: var(--text-dim); }

.gen-download-btn {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  display: none;
}

.gen-download-btn:hover { background: var(--gold); color: #000; }
.gen-error { color: #ff6b6b; font-size: 0.76rem; text-align: center; padding: 0.4rem; display: none; }

/* ===== COMMUNITY ===== */
.community-inner { text-align: center; }
.community-desc { color: var(--text-dim); max-width: 480px; margin: 0.75rem auto 2.5rem; font-size: 0.9rem; line-height: 1.65; }

.community-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.community-btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; box-shadow: 0 4px 20px rgba(245,197,24,0.3); }
.btn-primary:hover { box-shadow: 0 8px 32px rgba(245,197,24,0.5); }
.btn-secondary { background: transparent; border: 2px solid rgba(245,197,24,0.4); color: var(--gold-light); }
.btn-secondary:hover { border-color: var(--gold); box-shadow: 0 0 20px rgba(245,197,24,0.2); }

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo img { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--gold); object-fit: cover; }
.footer-logo span { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; color: var(--gold); letter-spacing: 1px; }
.footer-disclaimer { font-size: 0.68rem; color: rgba(160,176,204,0.5); max-width: 480px; margin: 0 auto 1rem; line-height: 1.5; }
.footer-copy { font-size: 0.68rem; color: rgba(160,176,204,0.3); letter-spacing: 1px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in-d1 { animation-delay: 0.1s; }
.fade-in-d2 { animation-delay: 0.2s; }
.fade-in-d3 { animation-delay: 0.3s; }
.fade-in-d4 { animation-delay: 0.4s; }
.fade-in-d5 { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(2,13,31,0.98); padding: 1rem 0; border-bottom: 1px solid rgba(245,197,24,0.2); }
  .nav-links.open li { padding: 0.6rem 2rem; }
  .hamburger { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gen-panel.active { grid-template-columns: 1fr; gap: 1.5rem; }
  .gen-tabs { max-width: 100%; }
  section { padding: 3.5rem 0; }
  .gallery-card { width: 145px; }
  .gallery-card img { height: 145px; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-socials { gap: 0.5rem; }
  .social-btn { padding: 0.5rem 0.85rem; font-size: 0.76rem; }
  .hero-ca { font-size: 0.62rem; }
}
