/* Layout adapted from bull-the-leader.vercel.app — Elon Hood theme */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Fredoka", sans-serif;
  background-color: #12081f;
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.app {
  width: 100%;
  min-height: 100vh;
}

/* ── Social links ── */

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #ff2d9522;
  border: 2px solid #ff2d95;
  color: #ff2d95;
  font-size: 1.25rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  background: #ff2d9544;
}

@media (min-width: 768px) {
  .social-links a {
    width: 4rem;
    height: 4rem;
    font-size: 1.4rem;
  }
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  background: #1a0a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.25rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.hero-logo {
  width: min(90vw, 32rem);
  margin-bottom: 0.5rem;
}

.hero-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #ff2d95, #c026d3);
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  border-radius: 2rem;
  border: 2px solid #ff6ec7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px #ff2d9544;
}

.hero-buy:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 32px #ff2d9566;
}

.hero-socials {
  margin-top: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  max-width: 28rem;
}

.hero-contract {
  font-size: clamp(0.7rem, 2vw, 0.92rem);
  color: #fff;
  background: #12081fbf;
  padding: 0.6rem 1rem;
  border-radius: 0.35rem;
  border: 1px solid #ff2d9555;
  word-break: break-all;
  max-width: 100%;
  transition: background 0.2s ease;
}

.hero-contract:hover {
  background: #12081ff2;
}

.hero-contract.copied {
  background: #ff2d9533;
  border-color: #ff2d95;
}

.hero-changenow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: #ff2d95;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 600;
  border-radius: 2rem;
  border: 2px solid #ff2d95;
  margin-top: 0.25rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-changenow:hover {
  transform: scale(1.05);
  background: #ff2d951a;
}

@media (min-width: 768px) {
  .hero {
    padding: 3rem 2rem 4rem;
  }

  .hero-content {
    gap: 1.5rem;
  }
}

/* ── Marquee ── */

.marquee {
  width: 100%;
  overflow: hidden;
  background: #12081f;
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track img {
  height: 3.5rem;
  width: auto;
  flex-shrink: 0;
  margin-right: 2rem;
}

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

@media (min-width: 768px) {
  .marquee-track img {
    height: 4.5rem;
  }
}

/* ── About ── */

.about {
  background: #12081f;
}

.about-body {
  padding: 2rem 1.25rem 4rem;
  max-width: 75rem;
  margin: 0 auto;
}

.about-logo {
  width: min(90vw, 42rem);
  margin: 0 auto 2.5rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-side-bull {
  width: min(100%, 22rem);
  margin: 0 auto;
  border-radius: 0.5rem;
}

.about-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-text {
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  line-height: 1.5;
  text-align: center;
  color: #fff;
  max-width: 68rem;
}

.about-mascot {
  width: min(100%, 40rem);
}

.about-badge {
  width: min(100%, 26rem);
  margin: 0 auto;
  border-radius: 50%;
}

@media (min-width: 900px) {
  .about-body {
    padding: 3rem 2rem 5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 2fr;
    grid-template-areas:
      "side text"
      "badge mascot";
    gap: 2.5rem 3rem;
  }

  .about-side-bull {
    grid-area: side;
    margin: 0;
    justify-self: center;
  }

  .about-text-block {
    grid-area: text;
  }

  .about-mascot {
    grid-area: mascot;
    justify-self: end;
  }

  .about-badge {
    grid-area: badge;
    justify-self: start;
  }
}

@media (min-width: 1200px) {
  .about-grid {
    grid-template-columns: 0.8fr 1.5fr 0.8fr;
    grid-template-areas:
      "side text mascot"
      "badge text mascot";
  }

  .about-text-block {
    align-self: center;
  }
}

/* ── Landscape ── */

.landscape {
  position: relative;
  background: #12081f;
  overflow: hidden;
  min-height: 28rem;
}

.landscape-img {
  width: 100%;
  height: auto;
  min-height: 20rem;
  object-fit: cover;
  opacity: 0.9;
}

.landscape-bull {
  position: absolute;
  bottom: -2rem;
  right: 5%;
  width: min(45vw, 30rem);
  z-index: 2;
}

@media (max-width: 767px) {
  .landscape {
    min-height: auto;
    padding-bottom: 8rem;
  }

  .landscape-bull {
    right: 50%;
    transform: translateX(50%);
    width: min(70vw, 18rem);
    bottom: 0;
  }
}

/* ── Gallery ── */

.gallery {
  background: #12081f;
}

.gallery-body {
  padding: 2rem 1.25rem 4rem;
  max-width: 75rem;
  margin: 0 auto;
}

.gallery-title-img {
  width: min(95vw, 36rem);
  margin: 0 auto 2rem;
}

.gallery-title-text {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #ff2d95, #c026d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 2rem;
  max-width: 36rem;
  line-height: 1.2;
}

.gallery-text {
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  line-height: 1.5;
  text-align: center;
  color: #fff;
  max-width: 68rem;
  margin: 0 auto 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.35rem;
  border: 2px solid #ff2d9533;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  border-color: #ff2d95;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gallery-body {
    padding: 3rem 2rem 5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ── Footer ── */

.footer {
  position: relative;
  min-height: 26rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #12081f;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.25rem;
}

.footer-logo {
  width: min(85vw, 34rem);
}

.footer-socials {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer {
    min-height: 32rem;
  }

  .footer-content {
    gap: 2.5rem;
    padding: 4rem 2rem;
  }
}
