:root {
  --bg: #0a0a0a;
  --nav: rgba(10,10,10,0.95);
  --surface: #111;
  --border: #222;
  --accent: #fff;
  --muted: #555;
  --muted2: #333;
  --text: #e8e8e8;
  --red: #cc2200;
  --green: #22cc66;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--muted2); }

nav {
  position: fixed; top:0; left:0; right:0; z-index:500;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 2.5rem; height: 52px;
  background: var(--nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-left { display:flex; gap:2rem; align-items:center; }
.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--muted); text-decoration: none;
  text-transform: uppercase; cursor: pointer;
  transition: color 0.2s; background: none; border: none;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-right { display:flex; align-items:center; gap:0.8rem; }

#e-dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  display:none;
  flex-shrink:0;
}
#e-dot.on { display:block; }

#site-title-input {
  background: transparent; border: none;
  color: var(--muted); font-family: 'Space Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-align: right; outline: none; width: 200px;
  cursor: default; pointer-events: none;
}
body.edit-enabled #site-title-input { cursor:text; pointer-events:all; }
body.edit-enabled #site-title-input:hover { color: var(--accent); }

.page { display:none; min-height:100vh; }
#page-works { padding-top:0; }
#page-about { padding-top:52px; }
.page.active { display:block; }

#hero {
  position: relative; width: 100%; height: 58vh;
  min-height: 370px; overflow: hidden; display: flex;
  align-items: center; justify-content: center; margin-top: 52px;
}
#hero-spacer { height: 48px; background: var(--bg); position: relative; }
#hero-spacer::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 92%; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border) 15%, rgba(255,255,255,0.18) 50%, var(--border) 85%, transparent 100%);
}

.hero-rows { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 0; }
.hero-strip { height: var(--hero-rh, 110px); flex-shrink: 0; display: flex; gap: 12px; align-items: stretch; will-change: transform; }
.hero-strip.row1 { animation: hScrollL var(--hero-sp, 96s) linear infinite; }
.hero-strip.row2 { animation: hScrollR var(--hero-sp, 96s) linear infinite; }
.hero-strip.row3 { animation: hScrollL var(--hero-sp, 96s) linear infinite; }

@keyframes hScrollL { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes hScrollR { from{transform:translateX(-50%)} to{transform:translateX(0)} }

.hero-thumb {
  flex-shrink: 0; height: 100%; aspect-ratio: 16/9; object-fit: cover;
  opacity: var(--hero-op, 0.4); 
  filter: saturate(0.75) brightness(0.55) blur(1.5px); border-radius: 8px;
}

#hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
  pointer-events: none; z-index: 1;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.7) 0%, transparent 15%, transparent 85%, rgba(10,10,10,0.7) 100%),
              radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.45) 100%);
  pointer-events: none; z-index: 1;
}

.hero-center {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 0; text-align: center; animation: heroFadeIn 1.4s ease both;
}
@keyframes heroFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.hero-title {
  font-family: 'Doto', monospace; font-weight: 480; font-variation-settings: 'wght' 480;
  font-size: var(--hero-fs, clamp(3.2rem, 7.5vw, 7rem)); letter-spacing: 0.06em;
  color: #fff; line-height: 1;
  text-shadow: 0 0 40px rgba(255,255,255,0.18), 0 0 80px rgba(255,255,255,0.07), 0 2px 30px rgba(0,0,0,0.9);
  white-space: nowrap; outline: none; cursor: default;
}
.hero-subtitle {
  font-family: 'Josefin Slab', serif; font-weight: 250; font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1.25rem); letter-spacing: 0.22em; color: rgba(255,255,255,0.55);
  text-transform: lowercase; margin-top: 0.6rem; text-shadow: 0 1px 12px rgba(0,0,0,0.8);
  white-space: nowrap; outline: none; cursor: default;
}

body.edit-enabled .hero-title, body.edit-enabled .hero-subtitle { cursor: text; pointer-events: all; }
body.edit-enabled .hero-title:hover, body.edit-enabled .hero-subtitle:hover { outline: 1px dashed rgba(255,255,255,0.25); outline-offset: 6px; }
body.edit-enabled .hero-title:focus, body.edit-enabled .hero-subtitle:focus { outline: 1px solid rgba(255,255,255,0.5); outline-offset: 6px; }
.hero-title, .hero-subtitle { pointer-events: none; }

.hero-scroll-hint {
  font-family: 'Space Mono', monospace; font-size: 0.52rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.28); margin-top: 2rem; animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:0.25; } 50% { opacity:0.65; } }

.filter-bar {
  position: sticky; top: 52px; z-index: 100; background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display:flex; gap:0.5rem; align-items:center; flex-wrap:wrap; padding:0.85rem 1.5rem;
}
.filter-tag {
  padding:0.25rem 0.75rem; border:1px solid var(--border); background:transparent;
  color:var(--muted); font-family:'Space Mono',monospace; font-size:0.62rem; letter-spacing:0.1em;
  cursor:pointer; transition:all 0.15s; border-radius:2px;
}
.filter-tag:hover, .filter-tag.active { border-color:var(--accent); color:var(--accent); }
.filter-sep { width:1px; height:20px; background:var(--border); margin:0 0.25rem; }

.grid-wrap { padding:2px; }
.masonry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.grid-item { position:relative; overflow:hidden; cursor:pointer; background:var(--surface); display:block; aspect-ratio: 16 / 9; }
.grid-item img { width:100%; height:100%; display:block; object-fit: cover; transition:transform 0.4s ease, filter 0.3s ease; filter:brightness(0.92); }
.grid-item:hover img { transform:scale(1.04); filter:brightness(1); }
.grid-item-overlay {
  position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  opacity:0; transition:opacity 0.3s; display:flex; flex-direction:column; justify-content:flex-end; padding:1rem;
}
.grid-item:hover .grid-item-overlay { opacity:1; }
.item-title { font-family:'Noto Sans JP',sans-serif; font-size:0.78rem; font-weight:500; color:#fff; line-height:1.4; margin-bottom:0.25rem; }
.item-tags { display:flex; gap:0.3rem; flex-wrap:wrap; }
.item-tag { font-family:'Space Mono',monospace; font-size:0.55rem; letter-spacing:0.1em; color:rgba(255,255,255,0.6); background:rgba(255,255,255,0.1); padding:0.15rem 0.4rem; border-radius:2px; }
.play-icon {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%) scale(0);
  width:44px; height:44px; background:rgba(255,255,255,0.15); backdrop-filter:blur(4px);
  border-radius:50%; display:flex; align-items:center; justify-content:center; transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.play-icon svg { width:16px; height:16px; fill:#fff; margin-left:2px; }
.grid-item:hover .play-icon { transform:translate(-50%,-50%) scale(1); }

body.edit-enabled .masonry-grid { cursor: default; }
body.edit-enabled .grid-item { cursor: grab; transition: box-shadow 0.2s, transform 0.2s, opacity 0.2s; }
body.edit-enabled .grid-item:active { cursor: grabbing; }
.drag-handle {
  display: none; position: absolute; top:6px; left:6px; z-index:3; width:22px; height:22px;
  background:rgba(0,0,0,0.72); border:1px solid rgba(255,255,255,0.15); border-radius:3px;
  align-items:center; justify-content:center; cursor:grab; color:rgba(255,255,255,0.55);
  font-size:0.7rem; line-height:1; user-select:none;
}
body.edit-enabled .drag-handle { display:flex; }
.sortable-ghost { opacity: 0.25; outline: 2px dashed rgba(255,255,255,0.3); }
.sortable-chosen { box-shadow: 0 0 0 2px rgba(255,255,255,0.6), 0 8px 32px rgba(0,0,0,0.7) !important; transform: scale(1.02) !important; z-index: 50; }
.sortable-drag { opacity: 1 !important; }

#save-order-btn {
  display: none; position: fixed; bottom: 6rem; right: 2rem; z-index: 400; padding: 0.55rem 1.1rem;
  background: var(--green); color: #000; border: none; border-radius: 3px; font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(34,204,102,0.3);
  animation: fadeIn 0.2s ease;
}
#save-order-btn.visible { display: block; }
#save-order-btn:hover { background: #1db86e; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

#reorder-banner {
  display: none; position: sticky; top: 52px; z-index: 110; padding: 0.5rem 1.5rem;
  background: rgba(34,204,102,0.1); border-bottom: 1px solid rgba(34,204,102,0.25);
  font-family: 'Space Mono', monospace; font-size: 0.62rem; color: var(--green);
  letter-spacing: 0.12em; align-items: center; justify-content: space-between;
}
#reorder-banner.on { display: flex; }
#reorder-banner span { opacity: 0.6; }

.item-edit-badge {
  display:none; position:absolute; top:6px; right:6px; background:rgba(0,0,0,0.75);
  border:1px solid var(--muted2); color:var(--muted); font-family:'Space Mono',monospace;
  font-size:0.5rem; letter-spacing:0.1em; padding:0.15rem 0.45rem; border-radius:2px; z-index:2;
}
body.edit-enabled .item-edit-badge { display:block; }

#edit-fab {
  display:none; position:fixed; bottom:2rem; right:2rem; z-index:400; width:52px; height:52px;
  background:var(--accent); color:#000; border:none; border-radius:50%; cursor:pointer;
  align-items:center; justify-content:center; font-size:1.5rem; font-weight:300; box-shadow:0 4px 24px rgba(255,255,255,0.12);
  transition:transform 0.2s;
}
body.edit-enabled #edit-fab { display:flex; }
#edit-fab:hover { transform:scale(1.08) rotate(45deg); }

.modal-bg { display:none; position:fixed; inset:0; z-index:600; background:rgba(0,0,0,0.88); backdrop-filter:blur(6px); align-items:center; justify-content:center; }
.modal-bg.open { display:flex; }
.modal { background:var(--surface); border:1px solid var(--border); width:min(520px,94vw); padding:2rem; position:relative; animation:slideUp 0.22s ease; }
@keyframes slideUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.modal-title { font-family:'Bebas Neue',sans-serif; font-size:1.4rem; letter-spacing:0.12em; margin-bottom:1.5rem; }
.modal-close { position:absolute; top:1rem; right:1rem; background:none; border:none; color:var(--muted); font-size:1.2rem; cursor:pointer; line-height:1; transition:color 0.2s; }
.modal-close:hover { color:var(--accent); }
.form-group { margin-bottom:1rem; }
.form-label { display:block; font-family:'Space Mono',monospace; font-size:0.62rem; letter-spacing:0.12em; color:var(--muted); margin-bottom:0.4rem; text-transform:uppercase; }
.form-input { width:100%; background:var(--bg); border:1px solid var(--border); color:var(--text); font-family:'Noto Sans JP',sans-serif; font-size:0.85rem; padding:0.6rem 0.8rem; outline:none; transition:border-color 0.2s; border-radius:2px; }
.form-input:focus { border-color:var(--muted); }
.form-hint { font-size:0.62rem; color:var(--muted); margin-top:0.3rem; font-family:'Space Mono',monospace; }
.thumb-preview { width:100%; aspect-ratio:16/9; object-fit:cover; background:var(--bg); border:1px solid var(--border); margin-top:0.5rem; display:none; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.modal-actions { display:flex; gap:0.75rem; margin-top:1.5rem; justify-content:flex-end; }
.btn { padding:0.6rem 1.3rem; font-family:'Space Mono',monospace; font-size:0.7rem; letter-spacing:0.08em; cursor:pointer; border:none; border-radius:2px; transition:all 0.18s; }
.btn-ghost { background:transparent; border:1px solid var(--border); color:var(--muted); }
.btn-ghost:hover { border-color:var(--muted); color:var(--accent); }
.btn-primary { background:var(--accent); color:#000; font-weight:700; }
.btn-primary:hover { background:#ccc; }
.btn-danger { background:transparent; border:1px solid #440; color:#a00; }
.btn-danger:hover { border-color:var(--red); color:var(--red); }

#fm-bg { display:none; position:fixed; inset:0; z-index:700; background:rgba(0,0,0,0.93); backdrop-filter:blur(12px); align-items:center; justify-content:center; }
#fm-bg.open { display:flex; }
.pw-box { background:var(--surface); border:1px solid var(--border); width:min(360px,90vw); padding:2rem; animation:slideUp 0.2s ease; position:relative; }
.pw-title { font-family:'Bebas Neue',sans-serif; font-size:1.3rem; letter-spacing:0.15em; margin-bottom:0.3rem; }
.pw-sub { font-family:'Space Mono',monospace; font-size:0.57rem; color:var(--muted); letter-spacing:0.13em; margin-bottom:1.4rem; }
.pw-wrap { position:relative; }

#pw-input, #email-input {
  width:100%; background:var(--bg); border:1px solid var(--border);
  color:var(--text); font-family:'Space Mono',monospace;
  font-size:0.9rem; padding:0.7rem 2.6rem 0.7rem 0.9rem;
  outline:none; border-radius:2px; letter-spacing:0.1em;
  transition:border-color 0.2s;
}
#email-input { padding-right: 0.9rem; }
#pw-input:focus, #email-input:focus { border-color:var(--muted); }
#pw-input.err, #email-input.err { border-color:var(--red); animation:shake 0.28s ease; }

@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.pw-eye { position:absolute; right:0.7rem; top:50%; transform:translateY(-50%); background:none; border:none; color:var(--muted); cursor:pointer; font-size:0.85rem; }
#pw-err { font-family:'Space Mono',monospace; font-size:0.58rem; color:var(--red); letter-spacing:0.1em; margin-top:0.45rem; min-height:1em; }
.pw-actions { display:flex; gap:0.6rem; margin-top:1rem; }

#lightbox-bg { display:none; position:fixed; inset:0; z-index:600; background:rgba(0,0,0,0.96); align-items:center; justify-content:center; flex-direction:column; }
#lightbox-bg.open { display:flex; }
.lb-close { position:absolute; top:1.2rem; right:1.5rem; background:none; border:none; color:var(--muted); font-size:1.8rem; cursor:pointer; line-height:1; transition:color 0.2s; }
.lb-close:hover { color:#fff; }
.lb-frame { width:min(900px,92vw); aspect-ratio:16/9; }
.lb-frame iframe { width:100%; height:100%; border:none; }
.lb-meta { margin-top:1rem; text-align:center; }
.lb-meta h2 { font-family:'Noto Sans JP',sans-serif; font-weight:400; font-size:1rem; color:#fff; margin-bottom:0.25rem; }
.lb-meta .lb-sub { font-family:'Space Mono',monospace; font-size:0.62rem; color:var(--muted); letter-spacing:0.1em; }
.lb-actions { display:flex; gap:0.75rem; margin-top:1rem; }
#lb-edit-btn { display:none; }
body.edit-enabled #lb-edit-btn { display:inline-flex; }

#ctx-menu { display:none; position:fixed; z-index:800; background:var(--surface); border:1px solid var(--border); min-width:145px; padding:0.3rem 0; box-shadow:0 8px 24px rgba(0,0,0,0.6); }
#ctx-menu.open { display:block; }
.ctx-item { display:block; width:100%; background:none; border:none; padding:0.55rem 1rem; font-family:'Space Mono',monospace; font-size:0.64rem; letter-spacing:0.1em; color:var(--muted); cursor:pointer; text-align:left; transition:background 0.15s; }
.ctx-item:hover { background:var(--bg); color:var(--accent); }
.ctx-item.danger:hover { color:var(--red); }
.ctx-adm { display:none; }
body.edit-enabled .ctx-adm { display:block; }

#page-about { max-width:700px; margin:0 auto; padding:4rem 2rem; }
#about-name { font-family:'Bebas Neue',sans-serif; font-size:3rem; letter-spacing:0.1em; margin-bottom:0.3rem; outline:none; }
#about-role { font-family:'Space Mono',monospace; font-size:0.7rem; color:var(--muted); letter-spacing:0.15em; margin-bottom:2rem; text-transform:uppercase; outline:none; }
#about-body { font-size:0.9rem; line-height:1.8; color:#aaa; white-space:pre-wrap; outline:none; min-height:80px; }
#about-name, #about-role, #about-body { pointer-events:none; user-select:text; }
body.edit-enabled #about-name, body.edit-enabled #about-role, body.edit-enabled #about-body { pointer-events:all; }
body.edit-enabled #about-name:hover, body.edit-enabled #about-role:hover, body.edit-enabled #about-body:hover { outline:1px dashed var(--muted2); outline-offset:4px; }
body.edit-enabled #about-name:focus, body.edit-enabled #about-role:focus, body.edit-enabled #about-body:focus { color:var(--text); outline:1px solid var(--muted); outline-offset:4px; }
.about-hint { font-family:'Space Mono',monospace; font-size:0.58rem; color:var(--muted2); margin-top:1.2rem; letter-spacing:0.1em; display:none; }
body.edit-enabled .about-hint { display:block; }

.empty-state { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:60vh; gap:1rem; color:var(--muted); text-align:center; }
.empty-icon { font-size:3rem; opacity:0.3; }
.empty-text { font-family:'Space Mono',monospace; font-size:0.7rem; letter-spacing:0.15em; }
.loader { display:flex; align-items:center; justify-content:center; min-height:60vh; }
.dot { width:6px; height:6px; background:var(--muted); border-radius:50%; margin:0 3px; animation:bonce 1.2s infinite; }
.dot:nth-child(2){ animation-delay:.2s; } .dot:nth-child(3){ animation-delay:.4s; }
@keyframes bonce { 0%,80%,100%{transform:translateY(0);opacity:.4} 40%{transform:translateY(-8px);opacity:1} }
#toast { position:fixed; bottom:2.5rem; left:50%; transform:translateX(-50%); background:var(--surface); border:1px solid var(--border); color:var(--text); font-family:'Space Mono',monospace; font-size:0.68rem; letter-spacing:0.1em; padding:0.6rem 1.4rem; border-radius:2px; z-index:900; opacity:0; transition:opacity 0.2s; pointer-events:none; }
#toast.on { opacity:1; }

@media(max-width:1100px){ .masonry-grid { grid-template-columns: repeat(3, 1fr); } }

/* PERBAIKAN LOGO NIGHTMARE TEMBUS DI MOBILE (HP) */
@media(max-width:768px){ 
  nav { padding:0 1.2rem; } 
  .filter-bar { padding:.75rem 1rem; } 
  .masonry-grid { grid-template-columns: repeat(2, 1fr); } 
  
  /* Ukuran Font otomatis mengecil di HP agar tidak tembus/overflow */
  .hero-title { 
    font-size: min(var(--hero-fs, 7rem), 12vw) !important; 
    white-space: normal !important; 
    word-break: break-word; 
  }
  .hero-subtitle { 
    font-size: clamp(0.75rem, 3.5vw, 1.25rem) !important; 
    white-space: normal !important; 
  }
}

@media(max-width:480px){ .masonry-grid { grid-template-columns: repeat(2, 1fr); } }

#cp-toggle-btn { display: none; background: transparent; border: 1px solid var(--border); color: var(--muted); font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; padding: 0.3rem 0.7rem; cursor: pointer; border-radius: 2px; transition: all 0.18s; white-space: nowrap; }
body.edit-enabled #cp-toggle-btn { display: inline-flex; align-items: center; gap: 0.4rem; }
#cp-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }
#cp-toggle-btn.active { border-color: var(--green); color: var(--green); }
#color-panel { display: none; position: fixed; top: 62px; right: 16px; z-index: 450; background: #0e0e0e; border: 1px solid #2a2a2a; border-radius: 6px; width: 240px; padding: 1.2rem; box-shadow: 0 8px 32px rgba(0,0,0,0.7); animation: slideIn 0.18s ease; max-height: calc(100vh - 80px); overflow-y: auto; }
#color-panel::-webkit-scrollbar { width: 2px; }
#color-panel::-webkit-scrollbar-thumb { background: #333; }
@keyframes slideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
#color-panel.open { display: block; }
.cp-title { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; }
.cp-title span { color: var(--green); }
.cp-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; gap: 0.6rem; }
.cp-label { font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.1em; color: var(--muted); flex: 1; text-transform: uppercase; }
.cp-swatch { width: 28px; height: 28px; border-radius: 3px; border: 1px solid var(--border); cursor: pointer; overflow: hidden; position: relative; flex-shrink: 0; }
.cp-swatch input[type="color"] { position: absolute; inset: -4px; width: calc(100% + 8px); height: calc(100% + 8px); border: none; outline: none; cursor: pointer; background: none; padding: 0; }
.cp-divider { height: 1px; background: var(--border); margin: 0.8rem 0; }
.cp-reset { width: 100%; background: transparent; border: 1px solid var(--border); color: var(--muted); font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; padding: 0.45rem; cursor: pointer; transition: all 0.18s; border-radius: 2px; text-transform: uppercase; }
.cp-reset:hover { border-color: var(--red); color: var(--red); }
.cp-save { width: 100%; background: var(--accent); border: none; color: #000; font-family: 'Space Mono', monospace; font-size: 0.58rem; letter-spacing: 0.12em; font-weight: 700; padding: 0.45rem; cursor: pointer; transition: all 0.18s; border-radius: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
.cp-save:hover { background: #ccc; }

/* ══════════════════════════════════════
   ICONS SOCIAL MEDIA DI HALAMAN ABOUT
══════════════════════════════════════ */
.about-links { 
  display: flex; 
  gap: 1.5rem; 
  margin-top: 2rem; 
}
.about-link-icon-svg { 
  width: 24px; 
  height: 24px; 
  /* Trik jitu: 'currentColor' akan memaksa ikon SVG mengambil warna font web kamu otomatis! */
  fill: currentColor; 
  transition: all 0.2s; 
  cursor: pointer; 
  opacity: 0.6;
}

/* Memperbaiki warna & ukuran gambar kustom untuk Sosmed jika dipakai dari Admin Panel */
.about-link-icon-img {
  width: 24px; 
  height: 24px; 
  object-fit: contain; 
  transition: all 0.2s; 
  cursor: pointer; 
  opacity: 0.6;
  /* Filter ajaib: Apapun warna gambar kustommu (hitam/biru dll), akan disulap otomatis jadi putih/abu-abu! */
  filter: brightness(0) invert(1);
}

/* Menghilangkan garis & warna biru bawaan dari <a> link HTML */
.about-links a { 
  text-decoration: none !important; 
  border: none; 
  outline: none;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--text) !important; /* Memaksa warna netral agar tidak biru di klik/kunjungi */
}
.about-links a:hover .about-link-icon-svg, 
.about-links a:hover .about-link-icon-img { 
  opacity: 1; 
  transform: scale(1.15); 
}

/* Kotak garis putus-putus saat mode Admin aktif */
body.edit-enabled .about-link-icon-svg,
body.edit-enabled .about-link-icon-img,
body.edit-enabled #icon-container-twitter,
body.edit-enabled #icon-container-vgen,
body.edit-enabled #icon-container-email { 
  outline: 1px dashed var(--muted2); 
  outline-offset: 8px; 
  border-radius: 2px; 
}
body.edit-enabled .about-links a:hover { 
  outline: 1px solid var(--accent); 
}
