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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-buy-btn {
  background: linear-gradient(135deg, #e63946, #2563eb);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  transition: opacity 0.2s !important;
}

.nav-buy-btn:hover {
  opacity: 0.85;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, #1a0a2e 0%, #0d0d0d 60%, #0a0a0a 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(230, 57, 70, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
}

.hero-mascot {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
  animation: float 3s ease-in-out infinite;
}

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

.hero-content h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #ffffff, #e63946, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  max-width: 500px;
}

.hero-ca {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
}

.hero-ca button {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.hero-ca button:hover {
  background: rgba(255,255,255,0.25);
}

.buy-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e63946, #2563eb);
  color: #fff;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.4);
}

.buy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== ABOUT ===== */
.about {
  padding: 60px 40px;
  background: #0d0d0d;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  object-fit: cover;
  filter: drop-shadow(0 16px 48px rgba(230, 57, 70, 0.2));
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #e63946, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-banner {
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 40px;
  background: #0d0d0d;
  text-align: center;
}

.gallery h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #e63946, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.2s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.gallery-fb {
  margin-top: 24px;
}

.fb-link {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.2s;
}

.fb-link:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== TOKENOMICS ===== */
.tokenomics {
  padding: 100px 40px;
  background: #080808;
  text-align: center;
}

.tokenomics h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #e63946, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.token-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.token-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.4);
}

.token-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.token-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.token-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-name {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  max-width: 480px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:not(.nav-buy-btn) {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image {
    display: flex;
    justify-content: center;
  }

  .token-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .token-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    gap: 16px;
  }
}
