* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 80px;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.55)),
    url("assets/background1.png") center/cover no-repeat;
}

.hero-left {
  width: 45%;
  z-index: 2;
}

.hero-right {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: min(500px, 100%);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px #ff003c);
}

.tagline {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: 0 0 20px;
  color: white;
}

.tagline span {
  color: #ff003c;
  text-shadow: 0 0 15px #ff003c;
}

.hero-copy {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1rem;
}

.hero-character {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  filter:
    drop-shadow(0 0 25px #ff003c)
    drop-shadow(0 0 40px purple);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.button-row img {
  width: 150px;
  max-width: 45%;
  cursor: pointer;
  transition: 0.2s ease;
}

.button-row img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px white);
}

.urgency {
  color: #ff003c;
  font-weight: bold;
  margin-top: 18px;
}

.section {
  padding: 60px 20px;
  text-align: center;
  background: #050505;
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  color: #ff003c;
  text-shadow: 0 0 12px #ff003c;
}

.stats-grid,
#buys {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.stats-grid div,
#buys div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,0,60,0.45);
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 170px;
}

.twitter-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.buy-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.94);
  border-top: 2px solid #ff003c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  z-index: 999;
}

.buy-bar button {
  background: #ff003c;
  color: white;
  border: 0;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.activity-feed {
  position: fixed;
  right: 20px;
  bottom: 85px;
  width: 250px;
  z-index: 998;
}

.feed-item {
  background: #111;
  border: 1px solid #ff003c;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  animation: fadeIn 0.3s;
}

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

@media (max-width: 850px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .button-row {
    justify-content: center;
  }

  .hero-character {
    max-height: 520px;
  }

  .activity-feed {
    display: none;
  }
}