/* ── Hero ────────────────────────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--red);
  background: rgba(232,50,10,0.12);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.88;
  letter-spacing: 4px;
  margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.line-yellow { color: var(--yellow); }
.line-white  { color: var(--white); }
.hero-desc { font-size: 16px; color: var(--gray-300); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-desc strong { color: var(--white); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 0; }
.hero-stat { text-align: center; }
.hero-stat-n {
  display: block; font-family: var(--font-display);
  font-size: 32px; letter-spacing: 1px; color: var(--yellow); line-height: 1;
}
.hero-stat span { font-size: 12px; color: var(--gray-500); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.hero-stat-sep { width: 1px; height: 40px; background: var(--gray-700); margin: 0 24px; }

/* Radio Widget */
.radio-widget {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
}
.radio-widget::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 50px solid rgba(245,196,0,0.04);
  pointer-events: none;
}
.radio-widget-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.live-pill {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: 1px;
  background: rgba(232,50,10,0.12);
  padding: 4px 10px; border-radius: 100px;
}
.now-playing-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; background: var(--gray-800);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.np-art {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gray-700); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.np-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.np-title { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.5px; color: var(--yellow); margin-bottom: 2px; }
.np-show  { font-size: 12px; color: var(--gray-400); }

.waveform { display: flex; align-items: center; gap: 2.5px; height: 36px; margin-bottom: 20px; }
.wave-bar {
  flex: 1; border-radius: 2px;
  background: var(--yellow); opacity: 0.6;
  animation: wave-anim 0.8s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes wave-anim { 0%,100%{transform:scaleY(0.25)} 50%{transform:scaleY(1)} }

.radio-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.play-btn {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.play-btn:hover { background: var(--red); color: white; transform: scale(1.05); }
.play-btn:active { transform: scale(0.95); }
.volume-row { display: flex; align-items: center; gap: 8px; }
.volume-slider { flex: 1; accent-color: var(--yellow); }
.radio-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--gray-700);
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  animation: reveal-up 0.7s var(--ease-out) forwards;
}
@keyframes reveal-up { to { opacity:1; transform:none; } }

/* Lomba cards */
.lomba-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
}
.lomba-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.lomba-card-img {
  height: 180px; background: var(--gray-800);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.lomba-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lomba-card-img .lomba-placeholder {
  font-family: var(--font-display); font-size: 48px;
  color: var(--gray-700); letter-spacing: 2px;
}
.lomba-card-status {
  position: absolute; top: 12px; left: 12px;
}
.lomba-card-body { padding: 20px; }
.lomba-card-cat { margin-bottom: 8px; }
.lomba-card-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.5px; margin-bottom: 8px; line-height: 1.15; }
.lomba-card-meta { font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.lomba-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: space-between;
}
.lomba-hadiah { font-family: var(--font-display); font-size: 15px; color: var(--yellow); }
.lomba-countdown { font-family: var(--font-mono); font-size: 11px; color: var(--red); text-transform: uppercase; }

/* Galeri masonry */
.galeri-masonry {
  columns: 4; column-gap: 16px;
}
.galeri-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--gray-800);
}
.galeri-item img { width: 100%; display: block; transition: transform 0.3s; }
.galeri-item:hover img { transform: scale(1.03); }
.galeri-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.25s;
  display: flex; align-items: flex-end; padding: 14px;
}
.galeri-item:hover .galeri-item-overlay { opacity: 1; }
.galeri-item-title { font-size: 13px; font-weight: 500; color: white; }

/* Forum list */
.forum-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--black);
  transition: background 0.15s;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-700);
}
.forum-item:last-child { border-bottom: none; }
.forum-item:hover { background: var(--gray-900); }
.forum-item.pinned { background: rgba(245,196,0,0.03); }
.forum-item-pin { color: var(--yellow); font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.forum-item-body { flex: 1; min-width: 0; }
.forum-item-title {
  font-family: var(--font-display); font-size: 17px;
  letter-spacing: 0.3px; margin-bottom: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.forum-item:hover .forum-item-title { color: var(--yellow); }
.forum-item-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.forum-item-stat { display: flex; align-items: center; gap: 4px; font-family: var(--font-mono); font-size: 11px; color: var(--gray-500); }

/* Founder section */
.founder-section {
  display: grid; grid-template-columns: 380px 1fr;
  border-top: 1px solid var(--gray-700);
  border-bottom: 1px solid var(--gray-700);
}
.founder-yellow {
  background: var(--yellow); padding: 80px 48px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 400px;
}
.founder-initial {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px;
  color: var(--yellow); margin-bottom: 24px;
}
.founder-name { font-family: var(--font-display); font-size: 40px; letter-spacing: 2px; color: var(--black); line-height: 1; margin-bottom: 8px; }
.founder-content { padding: 80px 64px; }
.founder-quote {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 1px; line-height: 1.15;
  color: var(--white); margin-bottom: 24px;
  border-left: 3px solid var(--yellow); padding-left: 24px;
}

/* Leaderboard */
.lb-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--black); border: 1px solid var(--gray-700);
  border-radius: var(--radius-md);
  transition: all 0.15s; cursor: pointer;
}
.lb-item:hover { background: var(--gray-900); border-color: var(--gray-500); }
.lb-rank {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 1px; min-width: 36px; text-align: center;
}
.lb-rank.gold   { color: var(--yellow); }
.lb-rank.silver { color: var(--gray-300); }
.lb-rank.bronze { color: #CD7F32; }
.lb-rank.other  { color: var(--gray-600); font-size: 16px; }
.lb-info { flex: 1; }
.lb-name { font-weight: 500; font-size: 15px; margin-bottom: 2px; }
.lb-meta { font-size: 12px; color: var(--gray-500); }
.lb-poin { font-family: var(--font-display); font-size: 20px; color: var(--yellow); letter-spacing: 1px; }

/* CTA section */
.cta-section {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
  padding: 100px 0;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 4px; margin-bottom: 20px;
}
.cta-form {
  display: flex; gap: 0; max-width: 500px;
  margin: 0 auto;
  border: 1.5px solid var(--gray-600);
  border-radius: var(--radius-md); overflow: hidden;
}
.cta-form:focus-within { border-color: var(--yellow); }
.cta-form input { border: none; border-radius: 0; background: var(--gray-800); }
.cta-form .btn  { border-radius: 0; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .radio-widget { max-width: 480px; }
  .galeri-masonry { columns: 3; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-yellow { min-height: 200px; padding: 40px; }
  .founder-content { padding: 48px 32px; }
}
@media (max-width: 640px) {
  .galeri-masonry { columns: 2; }
}
