/* =========================================================================
   HE3X — retro band profile (MySpace / Friendster era)
   ========================================================================= */

:root {
  --bg: #b9bcc6;
  --panel: #0e1430;
  --panel-2: #131a3d;
  --panel-border: #2b3766;
  --ink: #0a0e1c;
  --text: #cfd7ee;
  --muted: #8590b6;
  --dim: #5d6890;
  --link: #84b4ff;
  --link-hover: #ff7d7d;

  --blue1: #3a6fc4;  --blue2: #173a86;
  --red1: #d23b34;   --red2: #7c1212;
  --gold1: #ecc64f;  --gold2: #9a7410;
  --green: #38ff7a;

  --f-term: "VT323", "Courier New", monospace;
  --f-body: Tahoma, Verdana, Geneva, sans-serif;
  --f-logo: "Anton", Impact, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(135deg, rgba(0,0,0,.03) 0 2px, transparent 2px 7px),
    linear-gradient(180deg, #aeb2bd, #c4c7d0);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.5;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
img { max-width: 100%; display: block; }
button, input, textarea { font-family: inherit; }
::selection { background: var(--red1); color: #fff; }

.icon { flex: none; vertical-align: middle; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- Marquee ticker ---- */
.ticker {
  background: linear-gradient(180deg, #9a1f1f, #470c0c);
  border-top: 1px solid #d24a4a; border-bottom: 2px solid #000;
  overflow: hidden; white-space: nowrap; position: relative;
}
.ticker__track {
  display: inline-block; padding: 5px 0;
  font-family: var(--f-term); font-size: 19px; letter-spacing: .03em; color: #ffd9d9;
  animation: ticker 34s linear infinite; will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { padding: 0 8px; }
.ticker__item b { color: #ffe7a3; }
.ticker__sep { color: #ff7a7a; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Top navigation ---- */
.nav { background: linear-gradient(180deg, #2f60ad, #122f72); border-bottom: 2px solid #08183f; box-shadow: 0 2px 0 rgba(0,0,0,.35); position: sticky; top: 0; z-index: 40; }
.nav__inner { max-width: 968px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 0 8px; min-height: 44px; }
.nav__logo { font-family: var(--f-logo); font-size: 27px; color: #fff; letter-spacing: .05em; text-shadow: 2px 2px 0 #08183f; margin-right: 8px; }
.nav__logo .x { color: #ff6a6a; }
.nav__menu { display: flex; flex-wrap: wrap; list-style: none; margin: 0 0 0 auto; padding: 0; gap: 1px; }
.nav__menu li { list-style: none; }
.nav__menu a { display: block; padding: 6px 11px; font-family: var(--f-term); font-size: 20px; line-height: 1; color: #dce7ff; text-decoration: none; border-radius: 3px; letter-spacing: .03em; }
.nav__menu a:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }
.nav__menu .current-menu-item > a, .nav__menu .current_page_item > a, .nav__menu a[aria-current] { background: rgba(0,0,0,.28); color: #ffe7a3; }
.nav__toggle { display: none; margin-left: auto; width: 40px; height: 34px; background: rgba(0,0,0,.25); border: 1px solid #0a1f4d; color: #fff; font-family: var(--f-term); font-size: 20px; border-radius: 3px; }

/* ---- Layout ---- */
.container { max-width: 968px; margin: 0 auto; padding: 12px 8px 48px; }
.profile { display: grid; grid-template-columns: 250px 1fr; gap: 12px; align-items: start; }
.col-side { display: flex; flex-direction: column; }

/* ---- Panels ---- */
.panel { background: var(--panel); border: 1px solid var(--panel-border); margin-bottom: 12px; box-shadow: 0 2px 0 rgba(0,0,0,.4); }
.panel__bar {
  display: flex; align-items: center; gap: 7px; height: 27px; padding: 0 9px;
  font-family: var(--f-term); font-size: 18px; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(0,0,0,.55); text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
.panel__bar .icon { color: currentColor; }
.panel__title { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.panel__tools { display: flex; gap: 3px; }
.panel__tools i { width: 13px; height: 11px; border: 1px solid rgba(255,255,255,.55); font-style: normal; }
.panel__body { padding: 11px; }
.panel__more { display: block; text-align: right; padding: 6px 10px; border-top: 1px solid var(--panel-border); font-family: var(--f-term); font-size: 17px; letter-spacing: .04em; background: rgba(0,0,0,.2); }
.panel__bar.is-blue { background: linear-gradient(180deg, var(--blue1), var(--blue2)); }
.panel__bar.is-red  { background: linear-gradient(180deg, var(--red1), var(--red2)); }
.panel__bar.is-gold { background: linear-gradient(180deg, var(--gold1), var(--gold2)); color: #2c1f00; text-shadow: 1px 1px 0 rgba(255,255,255,.25); }
.panel__bar.is-dark { background: linear-gradient(180deg, #2a3050, #0e1120); }
.panel__bar.is-gold .icon { color: #2c1f00; }

/* terminal/label text helpers */
.term { font-family: var(--f-term); font-size: 19px; letter-spacing: .02em; }
.label { font-family: var(--f-term); font-size: 16px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }

/* =========================================================================
   Sidebar
   ========================================================================= */
.pcard__img { aspect-ratio: 1; background: linear-gradient(150deg, #3a6fc4, #1a2a6c); display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--panel-border); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; }
.pcard__mark { font-family: var(--f-logo); font-size: 46px; color: rgba(255,255,255,.85); letter-spacing: .06em; text-shadow: 2px 2px 0 rgba(0,0,0,.3); }
.pcard__name { font-family: var(--f-logo); font-size: 30px; color: #fff; text-align: center; padding: 6px; letter-spacing: .05em; }
.pcard__name .x { color: var(--red1); }

.quote { font-style: italic; color: #b9c2e0; padding: 9px 11px; border-bottom: 1px solid var(--panel-border); font-size: 12px; }
.details { padding: 9px 11px; }
.drow { display: flex; gap: 8px; padding: 3px 0; border-bottom: 1px dotted #232c52; font-family: var(--f-term); font-size: 18px; line-height: 1.25; }
.drow:last-child { border-bottom: 0; }
.drow dt { color: #6fd0ff; text-transform: uppercase; letter-spacing: .05em; flex: none; min-width: 78px; }
.drow dd { margin: 0; color: var(--text); }
.online { color: var(--green); }
.online::before { content: "●"; margin-right: 5px; text-shadow: 0 0 6px var(--green); }

.contact-list { list-style: none; margin: 0; padding: 4px; }
.contact-list li { list-style: none; }
.contact-list a { display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-family: var(--f-term); font-size: 18px; border-bottom: 1px dotted #232c52; }
.contact-list a:hover { background: rgba(255,255,255,.05); text-decoration: none; }
.contact-list .icon { color: var(--red1); }

.interests { padding: 0; margin: 0; }
.interests .drow dt { color: var(--gold1); min-width: 70px; }

.promo { display: block; padding: 12px; margin-bottom: 9px; border: 2px solid; text-align: center; text-decoration: none; }
.promo:hover { text-decoration: none; filter: brightness(1.12); }
.promo__title { font-family: var(--f-term); font-size: 22px; letter-spacing: .05em; text-transform: uppercase; }
.promo__sub { font-family: var(--f-term); font-size: 15px; letter-spacing: .06em; opacity: .85; margin-top: 2px; }
.promo--red { background: linear-gradient(180deg, #2a0d10, #15080a); border-color: var(--red1); }
.promo--red .promo__title { color: var(--red1); }
.promo--blue { background: linear-gradient(180deg, #0c1838, #070d22); border-color: var(--blue1); }
.promo--blue .promo__title { color: #6fa8ff; }
.promo--gold { background: linear-gradient(180deg, #241c05, #120d02); border-color: var(--gold1); }
.promo--gold .promo__title { color: var(--gold1); }

/* =========================================================================
   Winamp-style media player
   ========================================================================= */
.winamp { background: #1b1f2a; border: 1px solid #000; box-shadow: inset 0 0 0 1px #3a3f4f; font-family: var(--f-term); }
.winamp__bar { display: flex; align-items: center; height: 20px; padding: 0 6px; background: linear-gradient(180deg, #4a5066, #23283a); color: #cdd3e6; font-size: 15px; letter-spacing: .08em; border-bottom: 1px solid #000; }
.winamp__bar b { color: #fff; }
.winamp__btns { margin-left: auto; display: flex; gap: 3px; color: #aab; }
.winamp__btns i { width: 12px; height: 10px; border: 1px solid #6a7088; text-align: center; font-style: normal; font-size: 9px; line-height: 9px; }
.lcd { background: #04140a; border: 1px solid #000; margin: 6px; padding: 7px 9px; box-shadow: inset 0 0 14px rgba(0,0,0,.8); position: relative; overflow: hidden; }
.lcd::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px); pointer-events: none; }
.lcd__row { display: flex; align-items: center; gap: 12px; }
.lcd__time { font-size: 34px; line-height: .9; color: var(--green); text-shadow: 0 0 8px rgba(56,255,122,.6); font-variant-numeric: tabular-nums; }
.lcd__info { font-size: 14px; color: #1f9a4e; letter-spacing: .12em; }
.lcd__scroll { white-space: nowrap; overflow: hidden; color: var(--green); font-size: 16px; letter-spacing: .12em; margin-top: 6px; text-shadow: 0 0 6px rgba(56,255,122,.5); }
.viz { display: flex; align-items: flex-end; gap: 2px; height: 26px; margin-left: auto; }
.viz i { width: 3px; background: var(--green); box-shadow: 0 0 5px rgba(56,255,122,.6); animation: viz 900ms ease-in-out infinite; }
.viz i:nth-child(2){animation-delay:.1s} .viz i:nth-child(3){animation-delay:.25s} .viz i:nth-child(4){animation-delay:.4s}
.viz i:nth-child(5){animation-delay:.15s} .viz i:nth-child(6){animation-delay:.32s} .viz i:nth-child(7){animation-delay:.05s}
.viz i:nth-child(8){animation-delay:.22s} .viz i:nth-child(9){animation-delay:.38s} .viz i:nth-child(10){animation-delay:.12s}
@keyframes viz { 0%,100% { height: 5px; } 50% { height: 24px; } }
.winamp.is-paused .viz i { animation-play-state: paused; height: 5px; }
.wprogress { height: 9px; margin: 0 6px 6px; background: #06200f; border: 1px solid #000; cursor: pointer; position: relative; }
.wprogress span { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(180deg, #7dffb0, #1f9a4e); }
.wcontrols { display: flex; gap: 4px; padding: 0 6px 8px; }
.wbtn { flex: 1; padding: 6px 0; background: linear-gradient(180deg, #4a5066, #262b3c); border: 1px solid #000; box-shadow: inset 0 1px 0 rgba(255,255,255,.15); color: #e7ebf7; font-family: var(--f-term); font-size: 16px; letter-spacing: .06em; cursor: pointer; }
.wbtn:hover { filter: brightness(1.15); }
.wbtn--main { flex: 1.6; color: var(--green); }
.wplaylist { list-style: none; margin: 0; padding: 0; background: #06090f; border-top: 1px solid #000; max-height: 230px; overflow: auto; }
.wtrack { display: flex; align-items: center; gap: 8px; padding: 4px 9px; font-family: var(--f-term); font-size: 18px; cursor: pointer; border-bottom: 1px solid #11151f; color: #9fb0d8; }
.wtrack:hover { background: #0d1426; }
.wtrack.is-active { background: #10204a; color: var(--green); }
.wtrack__i { color: var(--dim); width: 20px; }
.wtrack.is-active .wtrack__i { color: var(--green); }
.wtrack__t { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wtrack__len { color: var(--dim); font-variant-numeric: tabular-nums; }

/* =========================================================================
   Video
   ========================================================================= */
.video-frame { position: relative; aspect-ratio: 16/9; background: #000; border: 1px solid #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { font-family: var(--f-term); font-size: 17px; letter-spacing: .05em; color: var(--muted); padding: 7px 2px 0; text-transform: uppercase; }
.video-grid { display: grid; gap: 14px; }

/* =========================================================================
   Blog entries
   ========================================================================= */
.blog-list { display: flex; flex-direction: column; }
.blog-entry { padding: 10px 0; border-bottom: 1px solid #1b2347; }
.blog-entry:last-child { border-bottom: 0; }
.blog-entry__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag { font-family: var(--f-term); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; padding: 1px 7px; border: 1px solid; color: #fff; }
.tag--story { background: #15347d; border-color: #3a6fc4; }
.tag--lyrics { background: #7c1212; border-color: #d23b34; }
.tag--update { background: #5a4a0a; border-color: var(--gold1); color: var(--gold1); }
.blog-entry__title { font-family: var(--f-term); font-size: 23px; letter-spacing: .02em; margin: 0; }
.blog-entry__title a { color: #e9eefc; }
.blog-entry__title a:hover { color: var(--link-hover); }
.blog-entry__meta { font-family: var(--f-term); font-size: 15px; color: var(--dim); margin: 2px 0 5px; letter-spacing: .04em; }
.blog-entry__excerpt { color: #b6c0df; font-size: 12.5px; margin: 0 0 6px; }
.read-more { font-family: var(--f-term); font-size: 16px; letter-spacing: .05em; }

/* =========================================================================
   Shows table
   ========================================================================= */
.shows-table { width: 100%; border-collapse: collapse; font-family: var(--f-term); }
.shows-table th { text-align: left; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: #2c1f00; background: linear-gradient(180deg, var(--gold1), var(--gold2)); padding: 5px 9px; border: 1px solid #000; }
.shows-table td { font-size: 18px; padding: 7px 9px; border: 1px solid #1b2347; color: #c6d0ee; vertical-align: middle; }
.shows-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.show-date b { color: #fff; } .show-date span { color: var(--dim); font-size: 15px; }
.show--past td { opacity: .5; }
.rbtn { display: inline-block; font-family: var(--f-term); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; padding: 3px 11px; border: 1px solid #000; cursor: pointer; text-decoration: none; }
.rbtn:hover { filter: brightness(1.15); text-decoration: none; }
.rbtn--red { background: linear-gradient(180deg, var(--red1), var(--red2)); color: #fff; }
.rbtn--gold { background: linear-gradient(180deg, var(--gold1), var(--gold2)); color: #2c1f00; }
.rbtn--blue { background: linear-gradient(180deg, var(--blue1), var(--blue2)); color: #fff; }
.rbtn--ghost { background: #1a2244; color: var(--muted); }

/* =========================================================================
   Merch
   ========================================================================= */
.he3x-merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.he3x-merch-card { background: #0a0f22; border: 1px solid var(--panel-border); display: flex; flex-direction: column; }
.he3x-merch-card__media { position: relative; aspect-ratio: 1; background: linear-gradient(150deg, #182250, #0b1024); display: grid; place-items: center; overflow: hidden; }
.he3x-merch-card__media img { width: 100%; height: 100%; object-fit: cover; }
.he3x-merch-card__mark { font-family: var(--f-logo); font-size: 22px; color: rgba(255,255,255,.14); text-transform: uppercase; text-align: center; padding: 8px; }
.he3x-merch-card__badge { position: absolute; top: 6px; left: 6px; font-family: var(--f-term); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; padding: 1px 6px; background: var(--red1); color: #fff; border: 1px solid #000; }
.he3x-merch-card__body { padding: 8px; display: flex; flex-direction: column; gap: 3px; flex: 1; text-align: center; }
.he3x-merch-card__title { font-family: var(--f-term); font-size: 18px; letter-spacing: .03em; text-transform: uppercase; margin: 0; color: var(--red1); }
.he3x-merch-card__price { font-family: var(--f-term); font-size: 18px; color: var(--gold1); }
.he3x-merch-card__desc { font-size: 11px; color: var(--muted); }
.he3x-merch-card__buy { display: flex; gap: 5px; margin-top: auto; padding-top: 8px; }
.he3x-merch-card__buy .btn { flex: 1; display: block; text-align: center; font-family: var(--f-term); font-size: 15px; letter-spacing: .05em; text-transform: uppercase; padding: 5px 2px; border: 1px solid #000; text-decoration: none; color: #fff; }
.he3x-merch-card__buy .btn:hover { filter: brightness(1.15); text-decoration: none; }
.he3x-merch-card__buy .btn--tokopedia { background: linear-gradient(180deg, #5ec85f, #2e8b3a); }
.he3x-merch-card__buy .btn--shopee { background: linear-gradient(180deg, #ff6a3d, #d23f17); }
.he3x-merch-card__buy .btn--ghost { background: #1a2244; color: var(--muted); }
.he3x-merch-card--sold { opacity: .55; }
.he3x-merch__empty { font-family: var(--f-term); font-size: 18px; color: var(--muted); text-align: center; padding: 20px; border: 1px dashed var(--panel-border); }

/* =========================================================================
   Friends / Top friends
   ========================================================================= */
.friends-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.fbox { text-align: center; }
.fbox__avatar { aspect-ratio: 1; border: 2px solid; display: grid; place-items: center; font-family: var(--f-logo); font-size: 28px; overflow: hidden; }
.fbox__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fbox__name { display: block; font-family: var(--f-term); font-size: 16px; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fbox__role { font-family: var(--f-term); font-size: 13px; color: var(--dim); }
.fa0 { border-color: #d23b34; color: #ff6a6a; background: #1d0c0e; }
.fa1 { border-color: #3a6fc4; color: #6fa8ff; background: #0b1430; }
.fa2 { border-color: #2ea043; color: #57e06f; background: #0a1d10; }
.fa3 { border-color: var(--gold1); color: var(--gold1); background: #1d1705; }
.fa4 { border-color: #a855f7; color: #c89bff; background: #160a26; }
.fa5 { border-color: #22b8cf; color: #5fe0ef; background: #07191d; }
.friend-count { font-family: var(--f-term); font-size: 18px; color: var(--muted); margin-bottom: 9px; }
.friend-count a { color: var(--link); }

/* =========================================================================
   Guestbook / comments
   ========================================================================= */
.gb-form { margin-bottom: 14px; }
.field { margin-bottom: 8px; }
.field label { display: block; font-family: var(--f-term); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); margin-bottom: 3px; }
.input, .textarea { width: 100%; padding: 8px 9px; background: #060a18; border: 1px solid var(--panel-border); color: var(--text); font-family: var(--f-body); font-size: 13px; }
.input:focus, .textarea:focus { outline: none; border-color: var(--blue1); }
.input[type="file"] { font-family: var(--f-term); font-size: 16px; }
.field--hp { position: absolute; left: -9999px; }
.form-note { font-family: var(--f-term); font-size: 17px; min-height: 20px; margin: 6px 0 0; }
.form-note.is-ok { color: var(--green); }
.form-note.is-err { color: var(--link-hover); }

.gb-list { list-style: none; margin: 0; padding: 0; }
.gb-item { display: grid; grid-template-columns: 48px 1fr; gap: 9px; padding: 9px 0; border-bottom: 1px solid #1b2347; }
.gb-item:last-child { border-bottom: 0; }
.gb-avatar { width: 48px; height: 48px; border: 2px solid var(--panel-border); display: grid; place-items: center; font-family: var(--f-logo); font-size: 20px; }
.gb-meta { font-family: var(--f-term); font-size: 16px; color: var(--dim); margin-bottom: 2px; }
.gb-meta a { color: var(--link); font-size: 18px; }
.gb-msg { font-size: 12.5px; color: #c2cbe8; margin: 0; }

/* ---- subscribe avatars row ---- */
.sub-avatars { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.sub-avatars .fbox__avatar { width: 38px; aspect-ratio: 1; font-size: 16px; }

/* =========================================================================
   Long-form (blog single / about)
   ========================================================================= */
.prose { font-size: 13px; line-height: 1.7; color: #c4cce6; }
.prose p { margin: 0 0 1em; }
.prose h2, .prose h3 { font-family: var(--f-term); letter-spacing: .03em; color: #fff; }
.prose a { text-decoration: underline; }
.entry-hero { margin-bottom: 12px; border: 1px solid var(--panel-border); }
.entry-meta { font-family: var(--f-term); font-size: 17px; color: var(--dim); margin-bottom: 10px; letter-spacing: .04em; }
.lyrics { white-space: pre-line; font-family: var(--f-term); font-size: 18px; line-height: 1.45; color: #b9c6ea; background: #060a18; border: 1px solid var(--panel-border); padding: 10px; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 16px; font-family: var(--f-term); font-size: 18px; }
.pagination .page-numbers { padding: 3px 11px; border: 1px solid var(--panel-border); background: var(--panel); color: var(--muted); }
.pagination .current { background: var(--blue1); color: #fff; border-color: #000; }

/* ---- generic ---- */
.stack > * + * { margin-top: 10px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.hr { height: 1px; background: var(--panel-border); margin: 10px 0; border: 0; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: linear-gradient(180deg, #0c1430, #070b1c); border-top: 2px solid #000; padding: 18px 8px; text-align: center; font-family: var(--f-term); }
.site-footer__logo { font-family: var(--f-logo); font-size: 26px; color: #fff; letter-spacing: .05em; }
.site-footer__logo .x { color: var(--red1); }
.site-footer__links { margin: 6px 0; font-size: 18px; }
.site-footer__links a { margin: 0 6px; }
.site-footer small { color: var(--dim); font-size: 15px; letter-spacing: .05em; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 820px) {
  .profile { grid-template-columns: 1fr; }
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__menu { display: flex; flex-direction: column; width: 100%; gap: 0; margin: 6px 0 8px; }
  .nav.is-open .nav__menu a { padding: 9px 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .he3x-merch-grid { grid-template-columns: repeat(3, 1fr); }
  .friends-row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .he3x-merch-grid { grid-template-columns: repeat(2, 1fr); }
  .friends-row { grid-template-columns: repeat(3, 1fr); }
  .gb-item { grid-template-columns: 40px 1fr; }
}

/* =========================================================================
   Product detail
   ========================================================================= */
.product { display: grid; grid-template-columns: 300px 1fr; gap: 18px; }
.product__media { position: relative; aspect-ratio: 1; background: linear-gradient(150deg, #182250, #0b1024); display: grid; place-items: center; border: 1px solid var(--panel-border); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-family: var(--f-term); font-size: 30px; margin: 0 0 4px; color: #fff; letter-spacing: .02em; }
.product__price { font-family: var(--f-term); font-size: 26px; color: var(--gold1); margin-bottom: 10px; }
.product__buy { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0; }
.product__buy .btn { font-family: var(--f-term); font-size: 18px; letter-spacing: .05em; text-transform: uppercase; padding: 10px 16px; border: 1px solid #000; color: #fff; text-decoration: none; transition: filter .15s ease, transform .12s ease; }
.product__buy .btn--tokopedia { background: linear-gradient(180deg, #5ec85f, #2e8b3a); }
.product__buy .btn--shopee { background: linear-gradient(180deg, #ff6a3d, #d23f17); }
.product__buy .btn:hover { filter: brightness(1.12); text-decoration: none; transform: translateY(-1px); }
.product__buy .btn:active { transform: translateY(1px); }
@media (max-width: 600px) { .product { grid-template-columns: 1fr; } }

.he3x-merch-card__media { display: block; }
.he3x-merch-card__title a { color: inherit; }
.he3x-merch-card__title a:hover { color: var(--link-hover); }

/* =========================================================================
   Coming soon (member zone)
   ========================================================================= */
.coming-soon { text-align: center; padding: 30px 16px; }
.cs-badge { display: inline-block; font-family: var(--f-term); font-size: 18px; letter-spacing: .18em; color: #fff; background: linear-gradient(180deg, var(--red1), var(--red2)); border: 1px solid #000; padding: 4px 14px; animation: csPulse 1.8s ease-in-out infinite; }
@keyframes csPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(210,59,52,.45); } 50% { box-shadow: 0 0 20px 2px rgba(210,59,52,.5); } }
.cs-title { font-family: var(--f-logo); font-size: clamp(28px, 5vw, 46px); color: #fff; margin: 16px 0 8px; letter-spacing: .03em; }
.cs-title .x { color: var(--red1); }
.cs-text { max-width: 48ch; margin: 0 auto 16px; font-size: 13px; }
.cs-feats { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cs-feat { font-family: var(--f-term); font-size: 17px; color: var(--text); background: var(--panel-2); border: 1px solid var(--panel-border); padding: 6px 12px; display: inline-flex; align-items: center; gap: 6px; }
.cs-feat .icon { color: var(--gold1); }
.cs-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 18px; padding: 10px 18px; }

/* =========================================================================
   Modern motion
   ========================================================================= */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 60; background: linear-gradient(90deg, var(--blue1), var(--red1), var(--gold1)); box-shadow: 0 0 8px rgba(210,59,52,.6); transition: width .08s linear; }

.panel { transition: box-shadow .25s ease; }
.panel:hover { box-shadow: 0 3px 0 rgba(0,0,0,.45), 0 0 26px rgba(58,111,196,.13); }
.rbtn, .wbtn { transition: filter .15s ease, transform .1s ease; }
.rbtn:hover { transform: translateY(-1px); }
.rbtn:active, .wbtn:active { transform: translateY(1px); }
.he3x-merch-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.he3x-merch-card:hover { transform: translateY(-3px); border-color: var(--blue1); box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.he3x-merch-card__media img { transition: transform .4s ease; }
.he3x-merch-card:hover .he3x-merch-card__media img { transform: scale(1.07); }
.fbox__avatar { transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.fbox:hover .fbox__avatar { transform: translateY(-3px) scale(1.05) rotate(-1deg); box-shadow: 0 8px 16px rgba(0,0,0,.45); filter: brightness(1.1); }
.contact-list a, .promo, .read-more, .nav__menu a, .nav__logo { transition: all .15s ease; }
.nav__logo:hover { filter: brightness(1.15); }
.promo:hover { transform: translateY(-2px); }
.wtrack { transition: background .12s ease, padding-left .12s ease; }
.wtrack:hover { padding-left: 14px; }
.online::before { animation: onlinePulse 1.6s ease-in-out infinite; }
@keyframes onlinePulse { 0%, 100% { text-shadow: 0 0 4px var(--green); } 50% { text-shadow: 0 0 12px var(--green), 0 0 4px var(--green); } }

@media (prefers-reduced-motion: no-preference) {
  .js .panel { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease; }
  .js .panel.is-in { opacity: 1; transform: none; }
  .js .panel .friends-row .fbox,
  .js .panel .he3x-merch-grid .he3x-merch-card,
  .js .panel .gb-list .gb-item,
  .js .panel .blog-list .blog-entry { opacity: 0; }
  .js .panel.is-in .friends-row .fbox,
  .js .panel.is-in .he3x-merch-grid .he3x-merch-card,
  .js .panel.is-in .gb-list .gb-item,
  .js .panel.is-in .blog-list .blog-entry { animation: he3xRise .5s ease both; }
  .friends-row .fbox:nth-child(2) { animation-delay: .05s; }
  .friends-row .fbox:nth-child(3) { animation-delay: .1s; }
  .friends-row .fbox:nth-child(4) { animation-delay: .15s; }
  .friends-row .fbox:nth-child(5) { animation-delay: .2s; }
  .he3x-merch-grid .he3x-merch-card:nth-child(2) { animation-delay: .07s; }
  .he3x-merch-grid .he3x-merch-card:nth-child(3) { animation-delay: .14s; }
  .he3x-merch-grid .he3x-merch-card:nth-child(4) { animation-delay: .21s; }
  .col-main { animation: he3xFadeIn .5s ease; }
}
@keyframes he3xRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes he3xFadeIn { from { opacity: 0; } to { opacity: 1; } }
