/* =============================================
   DOGE SHIBA — Retro Web3 Meme Landing Page CSS
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow:     #FFD700;
  --yellow-hot: #FFBB00;
  --orange:     #FF6B00;
  --orange-hot: #FF4500;
  --purple:     #7B2FBE;
  --purple-deep:#4A0E8F;
  --blue:       #0066FF;
  --blue-cyber: #00C3FF;
  --cream:      #FFFBEE;
  --white:      #FFFFFF;
  --dark:       #1A0A2E;
  --text-dark:  #1A0A2E;
  --glow-yellow: 0 0 20px #FFD700, 0 0 40px #FFBB0088;
  --glow-purple: 0 0 20px #7B2FBE, 0 0 40px #4A0E8F88;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', cursive;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Comic Sans MS', 'Comic Sans', 'Chalkboard SE', cursive;
  line-height: 1.2;
}

p, li, span, a, button {
  font-family: 'Nunito', 'Comic Sans MS', cursive, sans-serif;
}

/* ---- Noise/texture overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.4;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: var(--glow-yellow);
}

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

.nav-logo-dog {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  object-fit: cover;
  animation: spin-slow 12s linear infinite;
}

.nav-logo-text {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--orange), var(--glow-yellow);
  letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--yellow);
  transform: rotate(-3deg) scale(1.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark) !important;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-weight: 900 !important;
  box-shadow: 0 3px 0 var(--orange-hot);
  transition: transform 0.15s, box-shadow 0.15s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 0 var(--orange-hot) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--yellow);
  border-radius: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 10, 46, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--yellow);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-burger {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../public/assets/hero-1-shiba-inu-doge-hd-wallpaper-full.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,46,0.85) 0%,
    rgba(74,14,143,0.6) 40%,
    rgba(255,107,0,0.25) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,215,0,0.15);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
  color: var(--yellow);
  width: fit-content;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 8px rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.8); }
}

.hero-h1 {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 4px 4px 0 var(--orange), 6px 6px 20px rgba(255,107,0,0.5);
  animation: title-wobble 4s ease-in-out infinite;
}

.hero-h1 .yellow { color: var(--yellow); }
.hero-h1 .orange { color: var(--orange); }

@keyframes title-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-0.5deg); }
  75% { transform: rotate(0.5deg); }
}

.hero-tagline {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.9);
  background: rgba(123,47,190,0.4);
  border-left: 4px solid var(--purple);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange-hot));
  color: var(--dark);
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--orange-hot), 0 0 30px rgba(255,215,0,0.5);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 7px 0 var(--orange-hot), 0 0 50px rgba(255,215,0,0.7);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 var(--orange-hot);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border: 2px solid var(--purple);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  transform: translateY(-3px) rotate(1deg);
  border-color: var(--blue-cyber);
  background: rgba(0,195,255,0.1);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--orange);
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dog-img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 40px rgba(255,215,0,0.4), 0 0 80px rgba(123,47,190,0.3);
  animation: float 4s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 16/11;
}

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

.hero-coin-img {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  max-width: 220px;
  border-radius: 16px;
  border: 2px solid var(--orange);
  box-shadow: 0 0 30px rgba(255,107,0,0.4);
  animation: float 5s ease-in-out infinite 1s;
  object-fit: cover;
}

/* Floating meme words */
.meme-float {
  position: absolute;
  font-family: 'Comic Sans MS', cursive;
  font-weight: 900;
  pointer-events: none;
  z-index: 5;
  user-select: none;
  opacity: 0;
  animation: meme-appear 8s ease-in-out infinite;
}

.meme-float:nth-child(1) { font-size: 1.8rem; color: var(--yellow); top: 15%; left: 5%; animation-delay: 0s; text-shadow: 2px 2px 0 var(--orange); }
.meme-float:nth-child(2) { font-size: 1.2rem; color: var(--blue-cyber); top: 70%; left: 3%; animation-delay: 1.5s; }
.meme-float:nth-child(3) { font-size: 2rem; color: var(--orange); top: 25%; right: 8%; animation-delay: 3s; text-shadow: 2px 2px 0 var(--yellow); }
.meme-float:nth-child(4) { font-size: 1rem; color: rgba(255,255,255,0.5); top: 80%; right: 10%; animation-delay: 4.5s; }
.meme-float:nth-child(5) { font-size: 1.4rem; color: var(--purple); top: 45%; left: 1%; animation-delay: 2s; }
.meme-float:nth-child(6) { font-size: 1.6rem; color: var(--yellow-hot); bottom: 15%; left: 50%; animation-delay: 6s; }

@keyframes meme-appear {
  0%   { opacity: 0; transform: translateY(10px) rotate(-5deg); }
  15%  { opacity: 0.7; transform: translateY(0) rotate(0deg); }
  85%  { opacity: 0.5; transform: translateY(-8px) rotate(3deg); }
  100% { opacity: 0; transform: translateY(-15px) rotate(5deg); }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-coin-img { display: none; }
  .hero-h1 { font-size: 2rem; }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-title {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: rgba(26,10,46,0.65);
  font-family: 'Comic Sans MS', cursive;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   WHY DOGE SHIBA SECTION
   ============================================ */
.why-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, #F0E6FF 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--dark);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.why-title {
  color: var(--purple-deep);
  text-shadow: 3px 3px 0 var(--yellow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(123,47,190,0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.03);
  box-shadow: 0 16px 40px rgba(123,47,190,0.25), 0 0 30px rgba(255,215,0,0.2);
}

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

.why-card:nth-child(2) { transform-origin: center; }
.why-card:nth-child(2):hover { transform: translateY(-8px) rotate(1.5deg) scale(1.03); }
.why-card:nth-child(3):hover { transform: translateY(-8px) rotate(-1deg) scale(1.03); }
.why-card:nth-child(4):hover { transform: translateY(-8px) rotate(2deg) scale(1.03); }

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.why-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
  animation: bounce-emoji 2s ease-in-out infinite;
}

@keyframes bounce-emoji {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.why-card h3 {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 0 rgba(255,215,0,0.5);
}

.why-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.why-card .tag {
  display: inline-block;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}

/* ============================================
   COMMUNITY SPOTLIGHT
   ============================================ */
.gallery-section {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,47,190,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,102,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-title {
  color: var(--white);
  text-shadow: 3px 3px 0 var(--purple), 0 0 30px rgba(255,215,0,0.4);
}

.gallery-sub {
  color: rgba(255,255,255,0.6) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,215,0,0.3);
  cursor: pointer;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.07) rotate(2deg);
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(255,215,0,0.5);
  z-index: 5;
}

.gallery-item:nth-child(2):hover { transform: scale(1.07) rotate(-2deg); }
.gallery-item:nth-child(3):hover { transform: scale(1.07) rotate(1.5deg); }
.gallery-item:nth-child(4):hover { transform: scale(1.07) rotate(-1.5deg); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,46,0.85), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 1px 1px 0 var(--orange);
}

.gallery-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ============================================
   HOW TO GET IN
   ============================================ */
.steps-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F0E6FF 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.steps-title {
  color: var(--orange-hot);
  text-shadow: 3px 3px 0 var(--purple);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

/* connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--purple), var(--blue-cyber));
  border-radius: 3px;
  z-index: 0;
}

.step-card {
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 20px;
  padding: 2rem 1.25rem 1.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 50px rgba(255,107,0,0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 0 var(--orange-hot), var(--glow-yellow);
  position: relative;
  z-index: 2;
}

.step-card h3 {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange-hot);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.step-meme {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
  color: var(--purple);
  font-style: italic;
}

@media (max-width: 768px) {
  .steps-grid::before { display: none; }
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  overflow: hidden;
  padding: 0.6rem 0;
  position: relative;
  z-index: 10;
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker-scroll 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--dark);
  padding: 0 2rem;
  border-right: 2px solid rgba(26,10,46,0.2);
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--yellow);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(123,47,190,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-title {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 var(--orange);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
  font-family: 'Comic Sans MS', cursive;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(4px) rotate(-1deg);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-btn.twitter { background: #1DA1F2; color: #fff; }
.social-btn.discord { background: #5865F2; color: #fff; }
.social-btn.telegram { background: #0088CC; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  font-family: 'Comic Sans MS', cursive;
}

.footer-legal {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-family: 'Comic Sans MS', cursive;
  max-width: 500px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-legal { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   PARTICLES (CSS-only dots)
   ============================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
  opacity: 0.6;
}

@keyframes particle-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-yellow  { color: var(--yellow); }
.text-orange  { color: var(--orange); }
.text-purple  { color: var(--purple); }
.text-cyber   { color: var(--blue-cyber); }

.glow-text {
  text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

/* doge paw cursor easter egg */
.paw-cursor {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='18' font-size='18'%3E%F0%9F%90%BE%3C/text%3E%3C/svg%3E") 0 0, auto;
}
