:root{
  --bg:#ffffff;
  --text:#0c0c0c;
  --muted:rgba(12,12,12,.62);
  --line:rgba(12,12,12,.08);
  --radius:18px;
  --accent:#ff7a1a;
  --maxw:420px;
  color-scheme: light;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(255,122,26,.14), transparent 60%),
    radial-gradient(1000px 500px at 90% 20%, rgba(255,176,122,.18), transparent 60%),
    var(--bg);
  color:var(--text);
}

.shell{
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: 18px 14px 110px;
}

.top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:14px;
  padding: 14px 6px;
}

.quoteTitle{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -.2px;
}
.quoteTitle span{
  color: var(--accent);
  font-weight: 600;
}

.avatar{
  width:56px;
  height:56px;
  border-radius: 999px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.9), transparent 60%),
    linear-gradient(135deg, rgba(255,122,26,.85), rgba(255,176,122,.85));
  border:2px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  flex: 0 0 auto;
}

.section{ margin-top: 12px; }

.grid{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.cardLink{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  text-decoration:none;
  color: inherit;
  padding: 12px 12px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(12,12,12,.07);
}
.cardLink:active{ transform: scale(.99); }

.cardLeft{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,122,26,.12);
  border:1px solid rgba(255,122,26,.22);
  flex: 0 0 auto;
}
.icon i{ font-size:18px; }

.cardText{ min-width:0; }
.cardTitle{ margin:0; font-size: 13.5px; line-height: 1.2; }
.cardDesc{
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 320px;
}

.chev{ opacity:.55; flex: 0 0 auto; }

.foot{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}
.fineprint{
  margin:0;
  font-size: 12px;
  color: var(--muted);
}

/* Bottom social dock */
.dock{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 360px);
  z-index: 100;
}

.dockInner{
  display:flex;
  align-items:center;
  justify-content: space-around;
  padding: 10px 14px;
  gap: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe3b8, #ffd6ea);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.dockItem{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color: #3a3a3a;
  text-decoration:none;
}
.dockItem i{ font-size:20px; }

.dockItem.isActive{
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  width: auto;
  padding: 0 14px;
  display:flex;
  gap: 8px;
  align-items:center;
  font-size: 13px;
  font-weight: 600;
}

.dockLabel{
  color:#333;
  font-size:13px;
}
.avatar{
  width:56px;
  height:56px;
  border-radius:999px;
  overflow:hidden;           /* ini yang nge-cut biar ga melebar */
  flex:0 0 auto;
  border:2px solid #fff;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  background:none;
}

.avatar img{
  width:100%;               /* ini yang nge-lock gambar */
  height:100%;
  object-fit:cover;         /* biar rapi kepotong */
  display:block;
}

