* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

/* Ticker */
.ticker {
  background: linear-gradient(90deg, #ff007a, #00ffea);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-content {
  display: inline-block;
  animation: scroll 25s linear infinite;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at center, #1a0033, #000);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 8px solid #ff007a;
  margin-bottom: 30px;
  transition: transform 0.5s;
}

.hero-img:hover {
  transform: scale(1.1) rotate(5deg);
}

h1 {
  font-family: 'Orbitron', monospace;
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.gradient {
  background: linear-gradient(90deg, #ff007a, #00ffea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.8rem;
  margin: 20px 0;
  opacity: 0.9;
}

.buttons {
  margin: 40px 0;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  margin: 10px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn.primary {
  background: linear-gradient(45deg, #ff007a, #ff00c8);
  color: white;
}

.btn.secondary {
  border: 2px solid #00ffea;
  color: #00ffea;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255,0,122,0.4);
}

.ca {
  margin-top: 40px 0;
  font-family: monospace;
  font-size: 1.1rem;
}

.copy-btn {
  background: none;
  border: 1px solid #444;
  color: #fff;
  padding: 5px 10px;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 4px;
}

/* Sections */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.video-section {
  padding: 50px 20px;
}

.video-wrapper {
  max-width: 800px;        /* ← change this number to make it smaller or bigger */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #00ffea, #ff007a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.meme-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255,0,122,0.5);
}

.about-text p {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 20px;
  text-align: left;
}

.highlight {
  font-size: 2rem !important;
  color: #ff007a;
  font-weight: bold;
  text-align: center !important;
}

/* Tokenomics */
.tokenomics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.token-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #333;
}

.big {
  font-size: 2rem;
  color: #00ffea;
  margin-top: 10px;
}

/* How to buy */
.steps {
  max-width: 800px;
  margin: 0 auto 50px;
}

.step {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  margin: 20px 0;
  border-radius: 15px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #ff007a;
  margin-right: 30px;
  min-width: 80px;
}

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.phase {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #444;
}

.phase.done {
  border-left-color: #00ff00;
}

.phase.current {
  border-left-color: #ff007a;
  box-shadow: 0 0 20px rgba(255,0,122,0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 80px 20px;
  background: #111;
}

.socials a {
  color: #fff;
  font-size: 2rem;
  margin: 0 20px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 3rem; }
  .hero-img { width: 200px; height: 200px; }
}

.socials a {
  margin: 0 20px;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.socials a:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.15);
  filter: drop-shadow(0 0 15px currentColor);
}

.btn.donate {
  background: linear-gradient(135deg, #ff0066, #ff3399);
  animation: glowRed 3s infinite alternate;
  box-shadow: 0 0 30px rgba(255,0,102,0.6);
  font-weight: 900;
  font-size: 1.1rem;
}
.btn.donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(255,0,102,0.9);
}
@keyframes glowRed {
  from { box-shadow: 0 0 20px #ff0066; }
  to { box-shadow: 0 0 50px #ff3399, 0 0 80px #ff0066; }
}
