/* ─── INDEX.CSS ─────────────────────────────── */

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg-star {
  position: absolute;
  font-size: 28vw;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.star-1 {
  color: rgba(249,81,162,0.04);
  top: -8%;
  right: -8%;
  animation: floatA 12s ease-in-out infinite;
}
.star-2 {
  color: rgba(96,175,255,0.04);
  bottom: -10%;
  left: -10%;
  font-size: 32vw;
  animation: floatB 15s ease-in-out infinite;
}
.star-3 {
  color: rgba(185,239,37,0.06);
  top: 40%;
  right: 15%;
  font-size: 18vw;
  animation: floatA 18s ease-in-out infinite reverse;
}

@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-24px) rotate(8deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(20px) rotate(-6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 6px 14px;
  border: 1px solid rgba(185,239,37,0.3);
  border-radius: 20px;
  width: fit-content;
}

.dot-pink { color: var(--pink); font-size: 0.6rem; }

.hero-heading {
  font-size: clamp(3.2rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.line-pink  { color: var(--pink); }
.line-blue  { color: var(--blue); }
.line-green { color: var(--green); }
.line-white { color: var(--white); }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO BADGE */
.hero-badge {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  z-index: 2;
}

.badge-ring {
  position: absolute;
  inset: 0;
  animation: spin-slow 12s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-ring span {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.badge-ring span:nth-child(1) { transform: rotate(0deg) translateY(-100px); }
.badge-ring span:nth-child(2) { transform: rotate(45deg) translateY(-100px); }
.badge-ring span:nth-child(3) { transform: rotate(90deg) translateY(-100px); }
.badge-ring span:nth-child(4) { transform: rotate(135deg) translateY(-100px); }
.badge-ring span:nth-child(5) { transform: rotate(180deg) translateY(-100px); }
.badge-ring span:nth-child(6) { transform: rotate(225deg) translateY(-100px); }
.badge-ring span:nth-child(7) { transform: rotate(270deg) translateY(-100px); }
.badge-ring span:nth-child(8) { transform: rotate(315deg) translateY(-100px); }

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

.badge-center {
  position: absolute;
  inset: 30px;
  border: 2px solid rgba(249,81,162,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,17,17,0.8);
  animation: pulse-glow 3s ease-in-out infinite;
}

.badge-center img {
  width: 100px;
  height: auto;
}

/* BANNER SECTION */
.banner-section {
  padding: 56px 24px;
}

.banner-placeholder {
  position: relative;
  background: rgba(249,81,162,0.06);
  border: 2px dashed rgba(249,81,162,0.3);
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.banner-placeholder > span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  display: none;
}

.banner-gif {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.banner-placeholder p {
  color: var(--gray);
  font-size: 0.85rem;
  display: none;
}

/* Show placeholder text if no gif */
.banner-placeholder:not(:has(img[style*="display: none"])) > span { display: block; }

/* ABOUT SECTION */
.about-section {
  padding: 60px 24px;
}

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

.about-subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 18px;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,245,240,0.78);
  margin-bottom: 14px;
}

.deco-star-big {
  font-size: 14rem;
  color: var(--green);
  line-height: 1;
  animation: floatA 10s ease-in-out infinite;
  opacity: 0.8;
}

/* RECENT SECTION */
.recent-section {
  padding: 60px 24px 80px;
}

.video-wrapper {
  max-width: 760px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(249,81,162,0.25);
  box-shadow: 0 0 60px rgba(249,81,162,0.15);
}

.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 40px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero-badge {
    width: 160px;
    height: 160px;
    align-self: center;
  }

  .badge-ring span:nth-child(1) { transform: rotate(0deg) translateY(-70px); }
  .badge-ring span:nth-child(2) { transform: rotate(45deg) translateY(-70px); }
  .badge-ring span:nth-child(3) { transform: rotate(90deg) translateY(-70px); }
  .badge-ring span:nth-child(4) { transform: rotate(135deg) translateY(-70px); }
  .badge-ring span:nth-child(5) { transform: rotate(180deg) translateY(-70px); }
  .badge-ring span:nth-child(6) { transform: rotate(225deg) translateY(-70px); }
  .badge-ring span:nth-child(7) { transform: rotate(270deg) translateY(-70px); }
  .badge-ring span:nth-child(8) { transform: rotate(315deg) translateY(-70px); }

  .badge-center { inset: 20px; }
  .badge-center img { width: 70px; }

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

  .deco-star-big {
    font-size: 8rem;
    text-align: center;
  }
}
