/* ---------- GLOBAL RESET & TOKENS ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
h2,
h3,
.giant-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

/* ---------- COLOR ACCENTS ---------- */
.accent-pink {
  color: #d91582;
}

.accent-teal {
  color: #0cac9d;
}

.bg-pink {
  background-color: #d91582;
  color: #000;
}

.bg-teal {
  background-color: #0cac9d;
  color: #000;
}

.highlight-teal {
  background: #0cac9d;
  color: #000;
  padding: 0 0.4rem;
}

/* ---------- MARQUEE / TICKER ---------- */
.marquee {
  background: #d91582;
  color: #000;
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.4rem;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.marquee span {
  display: inline-block;
  padding-left: 0;
  animation: scroll 20s linear infinite;
}

.marquee-teal {
  background: #0cac9d;
  color: #000;
  margin: 2rem 0;
}

.marquee-white {
  background: #fff;
  color: #000;
  margin: 3rem 0 1rem;
}

.marquee-bottom {
  background: #000;
  color: #fff;
  border-color: #d91582;
  border-width: 2px 0;
}

.marquee-bottom span {
  color: #fff;
}

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

/* ---------- HERO SECTION ---------- */
.drag-area {
  margin: 1.5rem 0 2rem 0;
  border-bottom: 4px solid #fff;
  padding-bottom: 1rem;
}

.drag-text {
  font-family: "Righteous", "Inter", sans-serif;
  font-size: clamp(6rem, 25vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  color: #fff;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.sub-drag {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.age-badge {
  background: #d91582;
  padding: 0.5rem 1.2rem;
  color: #000;
}

/* ---------- TAGLINE SECTION ---------- */
.tagline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #fff;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tagline {
  font-size: 2.8rem;
  max-width: 70%;
  font-weight: 800;
}

.party-arrow {
  font-size: 1.8rem;
  font-weight: 700;
}

.intro-text {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: none;
  margin-bottom: 3rem;
  max-width: 80%;
  line-height: 1.3;
}

/* ---------- BADGES ---------- */
.badge-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge-pink {
  background: #d91582;
  color: #000;
}

.badge-teal {
  background: #0cac9d;
  color: #000;
}

/* ---------- GRID & CARDS ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin: 3rem 0;
}

.card {
  border: 3px solid #fff;
  padding: 1.8rem 1.5rem;
  background: #000;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateY(-5px);
}

.shooters-card {
  border-color: #0cac9d;
  background: linear-gradient(145deg, #0a0a0a, #000);
}

.card-title {
  font-size: 3rem;
  line-height: 0.9;
  margin-bottom: 1rem;
}

.card-meta {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.card-description {
  font-size: 1.2rem;
  text-transform: none;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.view-link {
  font-weight: 800;
  font-size: 1.5rem;
  color: #d91582;
}

.play-now {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0cac9d;
}

.house-badge {
  background: #d91582;
  color: #000;
  padding: 0.4rem 1rem;
  font-weight: 800;
}

.small-head {
  font-size: 1.2rem;
  color: #d91582;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 2px solid #fff;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.8rem;
}

.footer-responsibility {
  font-weight: 500;
  background: #d91582;
  color: #000;
  padding: 0.3rem 1rem;
}

.footer-copyright {
  font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 1rem;
  }

  .drag-text {
    font-size: clamp(4rem, 15vw, 8rem);
  }

  .tagline {
    font-size: 2rem;
    max-width: 100%;
  }

  .intro-text {
    font-size: 1.3rem;
    max-width: 100%;
  }

  .card-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .sub-drag {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
}
