:root{
  --bg:#070707;
  --bg2:#0b0b0b;
  --neon:#ff8a00; /* neon orange */
  --text:#f3f3f3;
  --muted:rgba(255,255,255,.7);
  --border:rgba(255,138,0,.22);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255,138,0,.18), transparent 55%),
    radial-gradient(900px 600px at 80% 30%, rgba(255,138,0,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 45%, var(--bg) 100%);
}

a{ color:inherit; }

.container{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:28px 16px;
}

.wrap{
  width:100%;
  max-width:980px;
}

/* ===== HERO ===== */
.hero{
  text-align:center;
  padding: 18px 0 10px;
  margin-bottom: 12px;
  position: relative;
}

/* Badge COMMUNITY - selalu center */
.badge{
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,138,0,.45);
  background:rgba(0,0,0,.35);
  color:var(--neon);
  letter-spacing:1px;
  font-size:12px;
  box-shadow:0 0 18px rgba(255,138,0,.12);
}

/* ===== TITLE GOLD ===== */
.heroTitle{
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 0.92;
  margin: 36px 0 10px;
  text-transform: uppercase;
  font-size: clamp(44px, 7vw, 92px);

  background: linear-gradient(
    180deg,
    #fff2c7 0%,
    #f6d98b 18%,
    #d9a441 45%,
    #b07a1b 65%,
    #ffd98f 82%,
    #fff2c7 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 2px 0 rgba(0,0,0,0.35),
    0 0 10px rgba(255,200,90,0.35),
    0 0 28px rgba(255,160,0,0.22),
    0 0 70px rgba(255,140,0,0.16);
}

.heroSub{
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* ===== MARQUEE ===== */
.marquee{
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35);
  border-radius: 14px;
  margin: 14px auto 0;
  max-width: 740px;
  width: min(740px, 92vw);
}

.marquee::before,
.marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 60px;
  pointer-events:none;
  z-index: 2;
}
.marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), transparent);
}
.marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(0,0,0,0.9), transparent);
}

.marqueeTrack{
  display:flex;
  gap: 28px;
  padding: 10px 0;
  white-space: nowrap;
  will-change: transform;
  animation: scrollLeft 10s linear infinite;
}

.marqueeItem{
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marqueeItem b{
  color: var(--neon);
  text-shadow: 0 0 16px rgba(255,138,0,0.25);
}

@keyframes scrollLeft{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== MENU CARDS ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
  margin-top: 18px;
}

.card{
  grid-column:span 6;
  text-decoration:none;
  border-radius:18px;
  border:1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,138,0,.10) 0%, rgba(0,0,0,.45) 65%),
    radial-gradient(650px 240px at 30% 10%, rgba(255,138,0,.15), transparent 60%);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.55), 0 0 22px rgba(255,138,0,.10);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
  position: relative;
  overflow: hidden;
  outline: none;
}

/* Spotlight layer */
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  opacity: 0;
  transition: opacity .18s ease;

  background:
    radial-gradient(560px 280px at 20% 15%, rgba(255,138,0,.00), transparent 60%),
    radial-gradient(460px 260px at 92% 18%, rgba(255,210,120,.00), transparent 68%),
    linear-gradient(180deg, rgba(255,138,0,.00), rgba(0,0,0,0));
}

/* Hover + Focus + Active => lebih terang */
.card:hover::before,
.card:focus::before,
.card:focus-visible::before,
.card:active::before{
  opacity: 1;
  background:
    radial-gradient(560px 280px at 20% 15%, rgba(255,138,0,.42), transparent 60%),
    radial-gradient(460px 260px at 92% 18%, rgba(255,210,120,.22), transparent 68%),
    linear-gradient(180deg, rgba(255,138,0,.14), rgba(0,0,0,0));
}

/* Hover/focus lebih glow */
.card:hover,
.card:focus,
.card:focus-visible{
  transform: translateY(-2px);
  border-color: rgba(255,138,0,.60);
  box-shadow:
    0 16px 40px rgba(0,0,0,.62),
    0 0 34px rgba(255,138,0,.25);
}

/* Active tap */
.card:active{
  transform: translateY(0px) scale(0.995);
  border-color: rgba(255,138,0,.70);
  box-shadow:
    0 12px 34px rgba(0,0,0,.62),
    0 0 38px rgba(255,138,0,.30);
}

/* teks ikut terang */
.card:hover .cardDesc,
.card:focus .cardDesc,
.card:focus-visible .cardDesc{
  color: rgba(255,255,255,.86);
}

.cardTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,138,0,.25);
  font-size:20px;
}

/* ===== ROTATE ARROW ===== */
.arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,138,0,.55);
  background: rgba(0,0,0,.35);
  box-shadow: 0 0 18px rgba(255,138,0,.22);
}

.arrow svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--neon);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255,138,0,.42));
  animation: spin 1.6s linear infinite;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}

.card:hover .arrow{
  border-color: rgba(255,138,0,.85);
  box-shadow: 0 0 28px rgba(255,138,0,.32);
}

.cardTitle{
  font-size:18px;
  font-weight:800;
  margin-bottom:6px;
}

.cardDesc{
  font-size:13px;
  line-height:1.4;
  color:rgba(255,255,255,.72);
}

/* ===== FOOTER ===== */
.footer{
  margin-top:18px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:12px;
  color:rgba(255,255,255,.45);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.btnSmall{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:20px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,138,0,.25);
  background:rgba(0,0,0,.35);
  text-decoration:none;
  color:rgba(255,255,255,.85);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

.btnSmall:hover{
  border-color:rgba(255,138,0,.5);
}
.btnSmall:active{
  background: rgba(0,140,255,.22);          /* biru */
  border-color: rgba(0,140,255,.75);
  box-shadow: 0 0 26px rgba(0,140,255,.28);
  transform: translateY(1px);
}
.btnSmall:focus,
.btnSmall:focus-visible{
  outline: none;
  background: rgba(0,140,255,.18);
  border-color: rgba(0,140,255,.65);
  box-shadow: 0 0 22px rgba(0,140,255,.22);
}

/* ===== MOBILE ===== */
@media (max-width: 520px){
  .container{
    padding: 18px 14px;
    place-items: start;
  }
  .hero{
    padding: 10px 0 8px;
    margin-bottom: 8px;
  }
  .badge{
    top: 0px;
    padding: 5px 10px;
    font-size: 11px;
  }
  .heroTitle{
    margin-top: 28px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 0.95;
    font-size: clamp(34px, 10vw, 54px);
  }
  .heroSub{ font-size: 12px; }
  .marquee{ margin-top: 10px; border-radius: 12px; }
  .marqueeTrack{ padding: 8px 0; gap: 18px; animation-duration: 12s; }
  .marqueeItem{ font-size: 12px; letter-spacing: 4px; }

  .grid{ margin-top: 14px; gap: 12px; }
  .card{ grid-column: span 12; padding: 14px; border-radius: 16px; }
  .icon{ width: 38px; height: 38px; border-radius: 13px; font-size: 18px; }

  .footer{ margin-top: 14px; padding-top: 10px; gap: 10px; }
  .btnSmall{ width: 100%; justify-content: center; }
  
}

@media (max-width:700px){
  .card{ grid-column:span 12; }
}
