\
/* Windows-ish 2006–2008 vibes (Vista/XP mashup) */
:root{
  --bg1:#1f6fbf;
  --bg2:#0a3d7a;
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.12);
  --border: rgba(0,0,0,.45);
  --inset: rgba(255,255,255,.35);
  --text: #0b0b0b;
  --muted: rgba(0,0,0,.62);
  --panel:#ece9d8;
  --panel2:#f6f4ea;
  --btn:#e6e6e6;
  --btn2:#f7f7f7;
  --blue:#2a7bd6;
  --blue2:#4ea2ff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 10px;
  --font: Tahoma, Verdana, "MS Sans Serif", "Segoe UI", sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 900px at 15% 15%, #66b4ff 0%, transparent 55%),
              radial-gradient(900px 600px at 85% 25%, #ffd7ff 0%, transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
}

.desktop{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px 18px 64px;
  position: relative;
}

.window{
  width: min(1080px, 98vw);
  min-height: 640px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.07));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  overflow:hidden;
}

.titlebar{
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.10));
  border-bottom: 1px solid rgba(0,0,0,.25);
}

.title{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(0,0,0,.78);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.title-icon{
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.35));
}

.win-controls{
  display:flex;
  gap: 6px;
}
.win-btn{
  width: 34px;
  height: 22px;
  display:grid;
  place-items:center;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.12));
  border: 1px solid rgba(0,0,0,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
  font-size: 12px;
  color: rgba(0,0,0,.75);
}
.win-btn.close{
  background: linear-gradient(180deg, rgba(255,120,120,.85), rgba(255,90,90,.55));
  border-color: rgba(0,0,0,.28);
}

.toolbar{
  padding: 10px;
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.toolbar-group{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.30);
}
.label{
  font-weight: 700;
  color: rgba(0,0,0,.72);
}
.radio{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 6px;
}
.radio input{ accent-color: #2a7bd6; }

.btn{
  border: 1px solid rgba(0,0,0,.35);
  background: linear-gradient(180deg, var(--btn2), var(--btn));
  border-radius: 8px;
  padding: 9px 12px;
  font-family: var(--font);
  font-weight: 700;
  cursor:pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.btn:hover{ filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }
.btn:disabled{ opacity: .6; cursor:not-allowed; }
.btn.primary{
  background: linear-gradient(180deg, var(--blue2), var(--blue));
  color: white;
  border-color: rgba(0,0,0,.45);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

.content{
  padding: 12px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.hint{
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.30));
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.hint-title{ font-size: 15px; margin-bottom: 6px; }
.hint-text{ color: rgba(0,0,0,.80); margin-bottom: 6px; }
.hint-sub{ color: rgba(0,0,0,.62); font-size: 12px; }

.result{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  align-items: start;
}
@media (max-width: 920px){
  .result{ grid-template-columns: 1fr; }
}

.image-frame{
  position: relative;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.15));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.40);
  padding: 10px;
  min-height: 420px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.image-frame img{
  width: 100%;
  height: min(68vh, 560px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.20);
}
.open-img{
  display:inline-block;
  color: rgba(0,0,0,.75);
  font-size: 12px;
  text-decoration: none;
}
.open-img:hover{ text-decoration: underline; }

.meta{
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  padding: 12px;
}

.tag{
  display:inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.15);
  color: rgba(0,0,0,.75);
  font-weight: 800;
  letter-spacing: .2px;
  margin-bottom: 8px;
}

.look-title{
  margin: 4px 0 6px;
  font-size: 20px;
}
.look-desc{
  margin: 0 0 10px;
  color: rgba(0,0,0,.78);
  line-height: 1.35;
}

.quote-box{
  border: 1px dashed rgba(0,0,0,.32);
  border-radius: 10px;
  background: rgba(255,255,120,.25);
  padding: 10px 12px;
}
.quote-title{
  font-weight: 800;
  color: rgba(0,0,0,.70);
  margin-bottom: 6px;
  font-size: 13px;
}
blockquote{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: rgba(0,0,0,.82);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

.credits{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(0,0,0,.65);
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
}
.credits a{ color: rgba(0,0,0,.75); text-decoration:none; }
.credits a:hover{ text-decoration: underline; }
.sep{ opacity: .7; }

.statusbar{
  height: 34px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 0 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
  border-top: 1px solid rgba(0,0,0,.18);
  color: rgba(0,0,0,.72);
  font-size: 12px;
}
.status-right{ display:flex; align-items:center; gap: 8px; }

.taskbar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 44px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 10px;
  background: linear-gradient(180deg, rgba(30,30,30,.72), rgba(10,10,10,.82));
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  user-select: none;
}
.start{
  background: linear-gradient(180deg, rgba(90,190,110,.95), rgba(30,140,60,.95));
  border: 1px solid rgba(0,0,0,.55);
  border-radius: 10px;
  padding: 7px 12px;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
.task{
  flex: 1;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 7px 10px;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.tray{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 0 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  height: 30px;
}
.tray-ic{ filter: drop-shadow(0 1px 0 rgba(0,0,0,.25)); }

.hidden{ display:none !important; }
