/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --lime: #7FFF00;
  --lime-dark: #5CB800;
  --lime-glow: #AAFF44;
  --brown: #8B4513;
  --brown-dark: #5C2D0E;
  --brown-light: #A0522D;
  --bg-dark: #0A0A0F;
  --bg-card: rgba(20, 20, 30, 0.7);
  --bg-glass: rgba(127, 255, 0, 0.05);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border-glass: rgba(127, 255, 0, 0.15);
  --gradient-hero: linear-gradient(135deg, #0A0A0F 0%, #111118 40%, #0D1A05 100%);
  --gradient-lime: linear-gradient(135deg, #7FFF00, #AAFF44);
  --gradient-card: linear-gradient(135deg, rgba(127,255,0,0.08), rgba(139,69,19,0.08));
  --shadow-glow: 0 0 60px rgba(127, 255, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--lime-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lime);
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(127, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--lime);
  top: -100px;
  right: -100px;
  opacity: 0.08;
}

.bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--brown);
  bottom: 20%;
  left: -100px;
  opacity: 0.06;
  animation-delay: -3s;
}

.bg-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--lime-glow);
  top: 50%;
  right: 20%;
  opacity: 0.05;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* ===== PARTICLES ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise 6s ease-in infinite;
}

@keyframes particleRise {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===== CA TOPBAR ===== */
.ca-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #0D1A05, #1a2a0a, #0D1A05);
  border-bottom: 1px solid rgba(127, 255, 0, 0.2);
  padding: 10px 0;
  animation: caBarGlow 3s ease-in-out infinite alternate;
}

@keyframes caBarGlow {
  0% { box-shadow: 0 2px 20px rgba(127, 255, 0, 0.05); }
  100% { box-shadow: 0 2px 30px rgba(127, 255, 0, 0.15); }
}

.ca-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition);
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.ca-topbar__inner:hover {
  background: rgba(127, 255, 0, 0.08);
}

.ca-topbar__label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.ca-topbar__address {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 500px;
}

.ca-topbar__copy {
  background: var(--gradient-lime);
  color: var(--bg-dark);
  border: none;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.ca-topbar__copy:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(127, 255, 0, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 20px rgba(127, 255, 0, 0.3);
  transition: var(--transition);
}

.navbar__logo:hover img {
  box-shadow: 0 0 30px rgba(127, 255, 0, 0.5);
  transform: scale(1.05);
}

.navbar__logo span {
  background: var(--gradient-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-lime);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar__links a:hover {
  color: var(--lime);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-lime);
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(127, 255, 0, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(127, 255, 0, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid var(--lime);
}

.btn--outline:hover {
  background: rgba(127, 255, 0, 0.1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(127, 255, 0, 0.08);
  color: var(--lime);
  border: 1px solid rgba(127, 255, 0, 0.15);
}

.btn--ghost:hover {
  background: rgba(127, 255, 0, 0.15);
  border-color: rgba(127, 255, 0, 0.3);
}

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

/* Mobile menu */
.navbar__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(127, 255, 0, 0.08);
  border: 1px solid rgba(127, 255, 0, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section__badge .dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section__title .highlight {
  background: var(--gradient-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section--center {
  text-align: center;
}

.section--center .section__subtitle {
  margin: 0 auto;
}

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

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: fadeInUp 1s ease-out;
}

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(127, 255, 0, 0.06);
  border: 1px solid rgba(127, 255, 0, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero__ticker .live-dot {
  width: 8px;
  height: 8px;
  background: #FF4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero__ticker span {
  color: var(--lime);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero__title .lime {
  color: var(--lime);
  text-shadow: 0 0 40px rgba(127, 255, 0, 0.3);
}

.hero__title .brown {
  color: var(--brown-light);
}

.hero__desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}

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

/* Hero Image */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero__image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--lime), transparent, var(--brown), transparent, var(--lime));
  animation: spin 8s linear infinite;
  opacity: 0.4;
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--bg-dark);
  z-index: 1;
}

.hero__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--lime);
  box-shadow:
    0 0 60px rgba(127, 255, 0, 0.2),
    0 0 120px rgba(127, 255, 0, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.3);
  animation: heroFloat 4s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(127, 255, 0, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}

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

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== MARQUEE ===== */
.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
  background: rgba(127, 255, 0, 0.03);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.marquee {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee__item .sep {
  color: var(--lime);
  font-size: 1rem;
}

.marquee__item .lime-text {
  color: var(--lime);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(13, 26, 5, 0.3) 50%, var(--bg-dark) 100%);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about__image {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-glass);
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.about__image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 80px rgba(127, 255, 0, 0.2);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.about__feature:hover {
  background: rgba(127, 255, 0, 0.1);
  border-color: rgba(127, 255, 0, 0.3);
  transform: translateY(-2px);
}

.about__feature-icon {
  font-size: 1.3rem;
}

/* ===== TOKENOMICS ===== */
.tokenomics {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 12, 5, 0.4) 50%, var(--bg-dark) 100%);
}

.tokenomics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.tokenomics__card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  overflow: hidden;
}

.tokenomics__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-lime);
  opacity: 0;
  transition: var(--transition);
}

.tokenomics__card:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 255, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.tokenomics__card:hover::before {
  opacity: 1;
}

.tokenomics__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 255, 0, 0.08);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tokenomics__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tokenomics__card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 8px;
}

.tokenomics__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Supply Bar */
.tokenomics__supply {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.tokenomics__supply-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.tokenomics__bar {
  display: flex;
  height: 24px;
  border-radius: var(--radius-full);
  overflow: hidden;
  gap: 3px;
}

.tokenomics__bar-segment {
  height: 100%;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.tokenomics__bar-segment:hover {
  filter: brightness(1.2);
  transform: scaleY(1.2);
}

.tokenomics__bar-segment--liquidity {
  width: 40%;
  background: var(--gradient-lime);
}

.tokenomics__bar-segment--community {
  width: 30%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.tokenomics__bar-segment--marketing {
  width: 15%;
  background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

.tokenomics__bar-segment--team {
  width: 15%;
  background: linear-gradient(135deg, #7B68EE, #6C5CE7);
}

.tokenomics__legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tokenomics__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.tokenomics__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(5, 15, 5, 0.3) 50%, var(--bg-dark) 100%);
}

.howtobuy__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.howtobuy__step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: var(--transition);
}

.howtobuy__step:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 255, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.howtobuy__step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-lime);
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin: 0 auto 20px;
}

.howtobuy__step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.howtobuy__step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== COMMUNITY ===== */
.community {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 10, 15, 1) 100%);
}

.community__wrapper {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.community__wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(127, 255, 0, 0.05) 0%, transparent 50%);
  animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.community__content {
  position: relative;
  z-index: 1;
}

.community__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.community__title .highlight {
  background: var(--gradient-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community__desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.social-btn--twitter {
  background: rgba(29, 161, 242, 0.1);
  color: #1DA1F2;
  border-color: rgba(29, 161, 242, 0.2);
}

.social-btn--twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(29, 161, 242, 0.2);
}

.social-btn--telegram {
  background: rgba(0, 136, 204, 0.1);
  color: #0088CC;
  border-color: rgba(0, 136, 204, 0.2);
}

.social-btn--telegram:hover {
  background: rgba(0, 136, 204, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
}

.social-btn--discord {
  background: rgba(88, 101, 242, 0.1);
  color: #5865F2;
  border-color: rgba(88, 101, 242, 0.2);
}

.social-btn--discord:hover {
  background: rgba(88, 101, 242, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.2);
}

/* ===== CONTRACT ADDRESS ===== */
.contract {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(127, 255, 0, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: var(--transition);
}

.contract:hover {
  background: rgba(127, 255, 0, 0.1);
  border-color: rgba(127, 255, 0, 0.3);
}

.contract__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.contract__address {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.contract__copy {
  background: none;
  border: none;
  color: var(--lime);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 4px;
}

.contract__copy:hover {
  transform: scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  background: rgba(10, 10, 15, 0.9);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--lime);
}

.footer__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient-lime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 400px;
  text-align: center;
  line-height: 1.5;
}

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

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== COPY TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--lime);
  color: var(--bg-dark);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(127, 255, 0, 0.4);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__desc {
    margin: 0 auto 40px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__image-wrapper {
    width: 320px;
    height: 320px;
  }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__image {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .about__features {
    max-width: 500px;
    margin: 32px auto 0;
  }

  .section__subtitle {
    margin: 0 auto;
  }

  .tokenomics__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 768px) {
  .ca-topbar__address {
    max-width: 200px;
    font-size: 0.75rem;
  }

  .ca-topbar__label {
    font-size: 0.8rem;
  }

  .navbar__links {
    display: none;
  }

  .navbar__mobile-toggle {
    display: block;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 2.2rem;
  }

  .community__title {
    font-size: 2.2rem;
  }

  .howtobuy__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .tokenomics__legend {
    gap: 16px;
  }

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

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ca-topbar__inner {
    gap: 8px;
    padding: 4px 10px;
  }

  .ca-topbar__address {
    max-width: 140px;
    font-size: 0.7rem;
  }

  .ca-topbar__copy {
    padding: 4px 10px;
    font-size: 0.65rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__image-wrapper {
    width: 250px;
    height: 250px;
  }

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