/* ============================================================
   HAMISH CURRIE PORTFOLIO — Windows XP Theme
   styles.css
   ============================================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- XP Color Variables ---- */
:root {
  /* Titlebar gradient — classic XP blue */
  --xp-tb-start:    #0A246A;
  --xp-tb-mid:      #3A6EA5;
  --xp-tb-end:      #0A246A;
  --xp-tb-inactive: #7A96DF;

  /* Window chrome */
  --xp-win-bg:      #ECE9D8;
  --xp-win-border:  #0A246A;
  --xp-win-inner:   #FFFFFF;
  --xp-shadow:      4px 4px 18px rgba(0,0,0,0.55), 1px 1px 0 rgba(255,255,255,0.5) inset;

  /* Desktop */
  --xp-desk:        #3A6EA5;

  /* Taskbar */
  --xp-tb-bar:       #245EDC;
  --xp-tb-bar-dark:  #1040A8;
  --xp-tb-bar-grad:  linear-gradient(180deg, #3A74D8 0%, #1A4ABF 60%, #1A3FAA 100%);

  /* Start button */
  --xp-start-grad:   linear-gradient(180deg, #5BCC5B 0%, #34B234 50%, #1C8C1C 100%);
  --xp-start-hover:  linear-gradient(180deg, #72DD72 0%, #44C244 50%, #2C9C2C 100%);

  /* General UI */
  --xp-text:         #000000;
  --xp-link:         #0000EE;
  --xp-title-text:   #FFFFFF;
  --xp-radius:       0px;

  /* Button */
  --xp-btn-bg:       #ECE9D8;
  --xp-btn-border:   #003C74;
  --xp-btn-hover:    #D4D0C8;
  --xp-btn-active:   #C0BDB0;

  /* Explorer sidebar */
  --xp-sidebar-bg:   #EFF3FF;
  --xp-sidebar-hdr:  #0A246A;
  --xp-sidebar-link: #0000CC;

  /* Fonts */
  --font-ui:         Tahoma, 'Segoe UI', Arial, sans-serif;
  --font-title:      Tahoma, 'Segoe UI', Arial, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--xp-text);
  background: var(--xp-desk);
  user-select: none;
}

/* ============================================================
   DESKTOP
   ============================================================ */
#desktop {
  position: fixed;
  inset: 0 0 40px 0; /* leave 40px for taskbar */
  /* Authentic Bliss — muted sky + soft rolling-hill greens */
  background: url('assets/img/green-hills.jpg') no-repeat center center fixed;
  overflow: hidden;
}

/* ============================================================
   DESKTOP ICONS
   ============================================================ */
.desktop-icons {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
  padding: 6px 4px;
  cursor: default;
  border-radius: 2px;
  border: 1px solid transparent;
  outline: none;
}

.desktop-icon .icon-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.5));
}

.desktop-icon .icon-img svg { width: 100%; height: 100%; }

.desktop-icon span {
  font-size: 11px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  text-shadow: 1px 1px 2px #000, -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000;
  word-break: break-word;
  max-width: 68px;
}

.desktop-icon:hover,
.desktop-icon.selected {
  background: rgba(49, 106, 197, 0.5);
  border-color: rgba(255,255,255,0.6);
  outline: 1px dotted rgba(255,255,255,0.8);
}

/* ============================================================
   XP WINDOWS
   ============================================================ */
.xp-window {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 200px;
  width: 700px;
  max-width: calc(100vw - 16px);
  max-height: calc(100vh - 60px);
  background: var(--xp-win-bg);
  /* Luna blue frame — matches titlebar, square at bottom like real XP */
  border: 3px solid #9DB4D8;
  border-radius: 6px 6px 0 0;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(180,195,220,0.25);
  overflow: hidden;
  z-index: 100;
}

.xp-window.active {
  border-color: #1A4AA5;
  box-shadow: 6px 8px 26px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(140,185,240,0.30);
}

.xp-window.maximized {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  max-width: 100% !important;
  max-height: calc(100vh - 40px) !important;
}

/* ---- Titlebar ---- */
.win-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 5px;
  background: linear-gradient(180deg, var(--xp-tb-mid) 0%, var(--xp-tb-start) 100%);
  cursor: default;
  flex-shrink: 0;
  border-radius: 3px 3px 0 0;
  min-height: 28px;
  position: relative;
  overflow: hidden;
}

.xp-window.active .win-titlebar {
  background: linear-gradient(
    180deg,
    #74AADF 0%,
    #4D8ECE 10%,
    #2E6BC0 38%,
    #1852B2 68%,
    #0C40A0 100%
  );
}

/* XP Luna signature gloss — semi-transparent white sheen on top half */
.xp-window.active .win-titlebar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 52%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.12) 55%,
    rgba(255,255,255,0.00) 100%);
  pointer-events: none;
  z-index: 2;
}

.xp-window:not(.active) .win-titlebar {
  background: linear-gradient(180deg, #B0C2D8 0%, #8EA4C8 100%);
}

.xp-window:not(.active) .win-titlebar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 2;
}

.xp-window:not(.active) .win-title-emoji,
.xp-window:not(.active) .win-title {
  opacity: 0.8;
}

.win-title-ico {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  flex-shrink: 0;
  object-fit: cover;
}

.win-title-emoji {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.win-title {
  flex: 1;
  font-size: 12px;
  font-weight: bold;
  color: var(--xp-title-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}

/* ---- Window Control Buttons ---- */
.win-controls {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
  margin-left: auto;
}

.win-btn {
  width: 21px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: rgba(255,255,255,0.45);
  border-left-color: rgba(255,255,255,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  background: linear-gradient(180deg,
    #5C94D8 0%,
    #3A72BE 40%,
    #2456A8 75%,
    #1A3E90 100%);
  transition: background 0.1s;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}

.win-btn svg { width: 100%; height: 100%; }

.win-btn:hover {
  background: linear-gradient(180deg, #72AAEE 0%, #5088D4 40%, #3468BA 75%, #2252A8 100%);
}

.win-btn.win-close {
  width: 22px;
  background: linear-gradient(180deg,
    #E85C5C 0%,
    #CC2828 35%,
    #AE0A0A 70%,
    #980000 100%);
  border-color: rgba(0,0,0,0.5);
  border-top-color: rgba(255,160,160,0.5);
  margin-left: 3px;
}

.win-btn.win-close:hover {
  background: linear-gradient(180deg, #FF7070 0%, #E03C3C 35%, #C41818 70%, #AA0000 100%);
}

/* Bold X on close button */
.win-btn.win-close svg line { stroke-width: 2.5; }

.xp-window:not(.active) .win-btn {
  background: linear-gradient(180deg,
    #9AB0C8 0%,
    #829AB5 40%,
    #6A84A0 75%,
    #5A7490 100%);
  border-top-color: rgba(255,255,255,0.25);
  border-left-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.xp-window:not(.active) .win-btn:hover {
  background: linear-gradient(180deg, #A8C0D8 0%, #90A8C4 40%, #7898B4 75%, #6888A4 100%);
}

.xp-window:not(.active) .win-btn.win-close {
  background: linear-gradient(180deg,
    #C09090 0%,
    #A87070 35%,
    #905858 70%,
    #804848 100%);
  border-top-color: rgba(255,180,180,0.3);
}

.xp-window:not(.active) .win-btn.win-close:hover {
  background: linear-gradient(180deg, #D0A0A0 0%, #B88080 35%, #A06868 70%, #905858 100%);
}

.xp-window:not(.active) .win-btn:active {
  transform: translateY(1px);
}

.win-btn:active {
  transform: translateY(1px);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

/* ---- Menu Bar ---- */
.win-menubar {
  display: flex;
  gap: 0;
  padding: 1px 4px;
  background: var(--xp-win-bg);
  border-bottom: 1px solid #ACA899;
  flex-shrink: 0;
}

.menu-item {
  padding: 2px 8px;
  font-size: 12px;
  font-family: var(--font-ui);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  color: var(--xp-text);
}

.menu-item:hover { background: #316AC5; color: #fff; }

/* ---- Toolbar (Explorer) ---- */
.win-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  background: var(--xp-win-bg);
  border-bottom: 1px solid #ACA899;
  flex-shrink: 0;
}

.toolbar-btn {
  padding: 2px 10px;
  font-size: 12px;
  font-family: var(--font-ui);
  background: var(--xp-btn-bg);
  border: 1px solid var(--xp-btn-border);
  cursor: pointer;
  border-radius: 2px;
  color: var(--xp-text);
}

.toolbar-btn:hover { background: var(--xp-btn-hover); }

.address-bar {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 6px;
  background: #fff;
  border: 1px solid #7F9DB9;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 2px;
  min-width: 0;
}

.addr-label { color: #666; font-size: 11px; flex-shrink: 0; }
.addr-path  { color: var(--xp-text); font-family: var(--font-ui); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- Window Body ---- */
.win-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--xp-win-inner);
}

.win-body::-webkit-scrollbar { width: 17px; }
.win-body::-webkit-scrollbar-track { background: #F0EDE4; border-left: 1px solid #ACA899; }
.win-body::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #D4D0C8 0%, #BDB8B0 50%, #C8C4BC 100%);
  border: 1px solid #888;
}
.win-body::-webkit-scrollbar-thumb:hover { background: linear-gradient(90deg, #CCCCC0 0%, #AAAAAA 50%, #BBBBBB 100%); }

/* ---- Status Bar ---- */
.win-statusbar {
  display: flex;
  align-items: center;
  border-top: 1px solid #ACA899;
  background: var(--xp-win-bg);
  flex-shrink: 0;
  height: 22px;
}

.sbar-item {
  padding: 0 8px;
  font-size: 11px;
  color: #444;
  border-right: 1px solid #ACA899;
  height: 100%;
  display: flex;
  align-items: center;
}

/* ============================================================
   ABOUT WINDOW
   ============================================================ */
.about-body { padding: 0; }

.about-layout {
  display: flex;
  min-height: 360px;
}

.about-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ECE9D8 0%, #D8D4C0 100%);
  border-right: 1px solid #ACA899;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #0A246A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  overflow: hidden;
  flex-shrink: 0;
}

.about-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #fff;
  border: 1px solid #ACA899;
  padding: 4px 6px;
  border-radius: 2px;
}

.stat-label {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-val {
  font-size: 12px;
  font-weight: bold;
  color: var(--xp-text);
}

.about-content {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.about-name {
  font-size: 22px;
  font-weight: bold;
  color: #0A246A;
  font-family: var(--font-title);
}

.about-role {
  font-size: 13px;
  color: #555;
  font-style: italic;
  margin-top: -8px;
}

.about-bio {
  font-size: 13px;
  line-height: 1.65;
  color: #222;
}

.about-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   XP BUTTONS
   ============================================================ */
.xp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  font-size: 12px;
  font-family: var(--font-ui);
  background: linear-gradient(180deg, #F8F6F0 0%, #E8E4D8 50%, #D8D4C8 100%);
  border: 1px solid #7F9DB9;
  border-top-color: #ACA899;
  border-left-color: #ACA899;
  cursor: pointer;
  color: var(--xp-text);
  border-radius: 3px;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.9), 1px 1px 2px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.1s;
}

.xp-btn:hover {
  background: linear-gradient(180deg, #EEF2FF 0%, #CCDEFF 50%, #AACCEE 100%);
  border-color: #316AC5;
}

.xp-btn:active {
  background: linear-gradient(180deg, #C8D8EE 0%, #AABCDC 100%);
  box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

.xp-btn.primary {
  background: linear-gradient(180deg, #5EB4FF 0%, #3A90F0 50%, #1A6CD8 100%);
  border-color: #0A3CA0;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}

.xp-btn.primary:hover {
  background: linear-gradient(180deg, #7ECCFF 0%, #5AACFF 50%, #3A8AEE 100%);
}

.xp-btn.small {
  padding: 3px 10px;
  font-size: 11px;
}

/* ============================================================
   FILMS / EXPLORER WINDOW
   ============================================================ */
.explorer-layout {
  display: flex !important;
  height: 100%;
  overflow: hidden;
}

.explorer-sidebar {
  width: 160px;
  flex-shrink: 0;
  background: var(--xp-sidebar-bg);
  border-right: 1px solid #C2CADF;
  overflow-y: auto;
  padding: 8px 0;
}

.sidebar-group { margin-bottom: 4px; }

.sidebar-hdr {
  font-size: 11px;
  font-weight: bold;
  color: var(--xp-sidebar-hdr);
  background: linear-gradient(90deg, #BCCFEF 0%, #EFF3FF 100%);
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-group ul { list-style: none; padding: 4px 0; }

.sidebar-group ul li a {
  display: block;
  padding: 3px 14px;
  font-size: 12px;
  color: var(--xp-sidebar-link);
  text-decoration: none;
}

.sidebar-group ul li a:hover { text-decoration: underline; background: #DDE8FF; }

.sidebar-detail { padding: 6px 10px; font-size: 11px; color: #444; line-height: 1.5; }

.explorer-content {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Film Cards ---- */
.film-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #C8C4BC;
  border-radius: 2px;
  padding: 10px;
  transition: background 0.1s, border-color 0.1s;
  cursor: default;
}

.film-card:hover { background: #EEF4FF; border-color: #316AC5; }

.film-thumb {
  width: 128px;
  height: 72px;
  flex-shrink: 0;
  background: #D0D0D0;
  border: 1px solid #ACA899;
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.film-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb-ph { font-size: 28px; opacity: 0.5; }

.film-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.film-title {
  font-size: 13px;
  font-weight: bold;
  color: #0A246A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.film-meta { font-size: 11px; color: #666; }

.film-desc {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.film-actions { display: flex; gap: 6px; margin-top: 2px; }

/* ============================================================
   CONTENT / SOCIALS WINDOW
   ============================================================ */
.content-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  user-select: text;
}

.content-intro { font-size: 13px; color: #444; }

.platform-grid { display: flex; flex-direction: column; gap: 6px; }

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #C8C4BC;
  border-radius: 2px;
  text-decoration: none;
  color: var(--xp-text);
  transition: background 0.1s, border-color 0.1s;
  cursor: pointer;
}

.platform-card:hover { background: #EEF4FF; border-color: #316AC5; }

.plat-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.plat-icon-wrap svg { width: 18px; height: 18px; }

.platform-card.yt       .plat-icon-wrap { background: #FF0000; }
.platform-card.tt       .plat-icon-wrap { background: #000; }
.platform-card.ig       .plat-icon-wrap { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-card.twitch   .plat-icon-wrap { background: #9146FF; }
.platform-card.xtwit    .plat-icon-wrap { background: #111; }
.platform-card.sp       .plat-icon-wrap { background: #1DB954; }
.platform-card.linkedin .plat-icon-wrap { background: #0A66C2; }
.platform-card.behance  .plat-icon-wrap { background: #1769FF; }

.plat-text { display: flex; flex-direction: column; flex: 1; gap: 1px; min-width: 0; }
.plat-name { font-size: 13px; font-weight: bold; color: #0A246A; }
.plat-handle { font-size: 11px; color: #666; }
.plat-arr { font-size: 18px; color: #999; flex-shrink: 0; }
.platform-card:hover .plat-arr { color: #316AC5; }

/* ============================================================
   CONTACT WINDOW
   ============================================================ */
.contact-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  user-select: text;
}

.contact-heading { font-size: 18px; font-weight: bold; color: #0A246A; }
.contact-sub { font-size: 12px; color: #555; margin-top: -8px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #C8C4BC;
  border-radius: 2px;
}

.contact-lbl { font-size: 12px; color: #666; font-weight: bold; white-space: nowrap; min-width: 130px; }
.contact-link { font-size: 12px; color: var(--xp-link); text-decoration: none; word-break: break-all; }
.contact-link:hover { text-decoration: underline; }
.contact-hr { border: none; border-top: 1px solid #C8C4BC; }
.contact-sub-hdr { font-size: 13px; font-weight: bold; color: #444; }

.contact-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.contact-chip {
  padding: 4px 12px;
  background: linear-gradient(180deg, #F8F6F0 0%, #E8E4D8 100%);
  border: 1px solid #7F9DB9;
  border-radius: 3px;
  font-size: 12px;
  color: var(--xp-link);
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,0.8);
}

.contact-chip:hover { background: linear-gradient(180deg, #EEF2FF 0%, #CCDEFF 100%); border-color: #316AC5; }
.contact-copy { font-size: 11px; color: #888; margin-top: 4px; }

/* ============================================================
   TASKBAR
   ============================================================ */
#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  /* Authentic XP Luna taskbar — medium royal blue with subtle gradient */
  background: linear-gradient(180deg,
    #2464D4 0%,
    #1A52C4 20%,
    #1448B8 60%,
    #1040AC 100%);
  border-top: 2px solid #4A80E0;
  display: flex;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.12) inset, 0 -3px 8px rgba(0,0,0,0.4);
}

/* ---- Start Button ---- */
#start-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px 0 5px;
  height: 34px;
  margin: 0 3px;
  /* Authentic XP green — olive-green at outer, vivid mid, darker at bottom */
  background: linear-gradient(180deg,
    #4EC34E 0%,
    #35B035 30%,
    #1C9A1C 60%,
    #0E7A0E 100%);
  border: 1px solid #0A580A;
  border-top-color: #6ADA6A;
  border-radius: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  font-family: Trebuchet MS, var(--font-ui);
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,50,0,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 2px 5px rgba(0,0,0,0.45);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  font-style: italic;
  transition: background 0.12s;
}

#start-btn:hover {
  background: linear-gradient(180deg, #60D460 0%, #44C244 30%, #28AA28 60%, #188018 100%);
}
#start-btn:active {
  background: linear-gradient(180deg, #2E982E 0%, #1C7C1C 50%, #0A5C0A 100%);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
}

.start-logo { width: 22px; height: 22px; flex-shrink: 0; }

.tb-sep {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.30) 40%,
    rgba(255,255,255,0.30) 60%,
    rgba(255,255,255,0.05) 100%);
  margin: 0 3px;
  flex-shrink: 0;
}

/* ---- Quick Launch ---- */
.quick-launch {
  display: flex;
  align-items: center;
  padding: 0 4px;
  flex-shrink: 0;
}

.ql-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
  padding: 0;
}

.ql-btn:hover  { background: rgba(255,255,255,0.2); }
.ql-btn:active { background: rgba(255,255,255,0.1); }

/* ---- Taskbar Windows ---- */
#taskbar-wins {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 4px;
  overflow: hidden;
  min-width: 0;
}

.tb-win-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  min-width: 100px;
  max-width: 160px;
  padding: 0 8px;
  background: linear-gradient(180deg,
    #4A80D4 0%,
    #3068BE 35%,
    #1E50A8 70%,
    #163C94 100%);
  border: 1px solid rgba(0,0,0,0.35);
  border-top-color: rgba(255,255,255,0.40);
  border-radius: 2px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-ui);
  text-align: left;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.tb-win-btn.is-active {
  background: linear-gradient(180deg, #1E3E88 0%, #142E70 50%, #0C2058 100%);
  border-color: rgba(0,0,0,0.5);
  border-top-color: rgba(255,255,255,0.15);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.tb-win-btn.is-min { opacity: 0.7; }
.twb-ico { font-size: 13px; flex-shrink: 0; }
.twb-lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- System Tray ---- */
#system-tray {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  height: 100%;
  background: linear-gradient(180deg, #163EA8 0%, #0E2E88 100%);
  border-left: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.tray-ico { font-size: 13px; cursor: default; opacity: 0.85; }
.tray-ico:hover { opacity: 1; }

#clock {
  font-size: 11px;
  font-family: var(--font-ui);
  color: #fff;
  white-space: nowrap;
  padding: 0 2px;
  min-width: 36px;
  text-align: center;
  cursor: pointer;
  transition: color 0.15s, text-shadow 0.15s;
}

#clock:hover {
  color: #B2EBF2;
  text-shadow: 0 0 6px rgba(100,220,255,0.5);
}

/* ============================================================
   START MENU
   ============================================================ */
#start-menu {
  position: fixed;
  bottom: 40px;
  left: 0;
  width: 380px;
  background: #fff;
  border: 2px solid #0A246A;
  border-radius: 6px 6px 0 0;
  box-shadow: 4px 0 16px rgba(0,0,0,0.6), 0 -4px 16px rgba(0,0,0,0.4);
  z-index: 99999;
  display: flex;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

#start-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.sm-left {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid #C8C4BC;
}

.sm-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #3A6ED8 0%, #1A4EBF 100%);
  min-height: 56px;
}

.sm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  object-fit: cover;
  flex-shrink: 0;
}

.sm-username {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.sm-hsep {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ACA899, transparent);
  margin: 2px 0;
}

.sm-apps { list-style: none; flex: 1; padding: 4px 0; }

.sm-app {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}

.sm-app:hover { background: #316AC5; }
.sm-app:hover .sm-app-name { color: #fff; }
.sm-app:hover .sm-app-sub  { color: rgba(255,255,255,0.8); }

.sm-icon     { font-size: 20px; flex-shrink: 0; line-height: 1; }
.sm-app-name { font-size: 12px; font-weight: bold; color: #000; }
.sm-app-sub  { font-size: 10px; color: #666; }

.sm-right {
  flex: 1;
  background: linear-gradient(180deg, #EFF3FF 0%, #C8D8F8 100%);
  display: flex;
  flex-direction: column;
}

.sm-places { list-style: none; padding: 4px 0; flex: 1; }

.sm-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #ACA899, transparent);
  margin: 4px 8px;
}

.sm-place {
  display: block;
  width: 100%;
  padding: 6px 12px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  color: #0A246A;
  transition: background 0.1s;
}

.sm-place:hover { background: #316AC5; color: #fff; }

.sm-bot-sep { height: 1px; background: #ACA899; margin: 4px 0; }

.sm-bottom {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #BCCBEF 0%, #9CABD8 100%);
}

.sm-power-btn {
  flex: 1;
  padding: 5px 8px;
  font-size: 11px;
  font-family: var(--font-ui);
  background: linear-gradient(180deg, #F0EDE4 0%, #D8D4C8 100%);
  border: 1px solid #7F9DB9;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.sm-power-btn:hover { background: linear-gradient(180deg, #EEF2FF 0%, #CCDEFF 100%); border-color: #316AC5; }

/* ============================================================
   XP BALLOON TOOLTIP (Network notification)
   ============================================================ */
.xp-balloon {
  position: fixed;
  bottom: 52px;
  right: 20px;
  width: 310px;
  background: #FFFFE1;
  border: 2px solid #7F9DB9;
  border-radius: 4px;
  box-shadow: 3px 4px 12px rgba(0,0,0,0.4), inset 0 0 0 1px #FFFFF8;
  z-index: 99998;
  font-family: Tahoma, 'Segoe UI', Arial, sans-serif;
  cursor: default;
  /* Hidden by default, shown via JS */
}

/* Tail / pointer — points down toward the tray icon */
.xp-balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 16px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFFFE1;
  z-index: 1;
}

/* Outer tail border to match the balloon border */
.xp-balloon::before {
  content: '';
  position: absolute;
  bottom: -13px;
  right: 14px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #7F9DB9;
  z-index: 0;
}

/* ---- Title bar ---- */
.xp-balloon-title {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 5px 10px;
  background: linear-gradient(180deg, #4D8ECE 0%, #1852B2 100%);
  border-radius: 2px 2px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}

.xp-balloon-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.xp-balloon-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Close button (X) */
.xp-balloon-close {
  width: 18px;
  height: 18px;
  background: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.1s;
}

.xp-balloon-close:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

/* ---- Body ---- */
.xp-balloon-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 10px 14px 14px;
}

.xp-balloon-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.xp-balloon-msg {
  font-size: 12px;
  font-weight: bold;
  color: #1A3A6A;
  line-height: 1.4;
}

.xp-balloon-sub {
  font-size: 11px;
  color: #555;
  line-height: 1.4;
}

.xp-balloon-icon-side {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

/* ---- Show/hide animation ---- */
.xp-balloon.show {
  display: block !important;
  animation: balloonIn 0.25s ease-out;
}

.xp-balloon.hide {
  animation: balloonOut 0.2s ease-in forwards;
}

@keyframes balloonIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes balloonOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
}

/* ============================================================
   PROJECT INFO MODAL
   ============================================================ */
.project-info-body {
  padding: 0;
  background: #fff;
}

.pi-layout {
  display: flex;
  min-height: 300px;
  gap: 0;
}

.pi-poster {
  width: 200px;
  min-height: 280px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ACA899;
  overflow: hidden;
}

.pi-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pi-poster-placeholder {
  font-size: 72px;
  opacity: 0.8;
  text-align: center;
  line-height: 1;
}

.pi-details {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.pi-title {
  font-size: 18px;
  font-weight: bold;
  color: #0A246A;
  font-family: var(--font-title);
  line-height: 1.3;
}

.pi-meta {
  font-size: 12px;
  color: #777;
  margin-top: -4px;
}

.pi-desc {
  font-size: 12px;
  color: #333;
  line-height: 1.6;
  flex: 1;
}

.pi-credits {
  display: block;
  padding: 8px 0;
  border-top: 1px solid #E0DDD0;
  border-bottom: 1px solid #E0DDD0;
  margin: 4px 0;
}

.pi-credits-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pi-credit-row {
  font-size: 12px;
  line-height: 1.6;
}

.pi-credit-label {
  color: #888;
  width: 130px;
  font-weight: bold;
  vertical-align: top;
  padding: 1px 8px 1px 0;
}

.pi-credit-value {
  color: #222;
  vertical-align: top;
  padding: 1px 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.pi-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* ============================================================
   STORY OF SERENITY VARIANTS MODAL
   ============================================================ */
.story-variants-body {
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-variants-intro {
  font-size: 12px;
  color: #1e3c72;
  font-weight: bold;
}

.story-variants-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
}

.story-variant-card {
  text-decoration: none;
  color: #000;
  background: linear-gradient(180deg, #fefefe 0%, #f1f4fb 100%);
  border: 1px solid #9db4d8;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.story-variant-card:hover {
  border-color: #5a7fb8;
  background: linear-gradient(180deg, #ffffff 0%, #e7eefb 100%);
}

.story-variant-card:active {
  transform: translateY(1px);
}

.story-variant-thumb {
  height: 110px;
  border: 1px solid #aca899;
  background: linear-gradient(180deg, #2a2f45 0%, #1a1f32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-variant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-variant-ph {
  font-size: 30px;
  opacity: 0.75;
}

.story-variant-title {
  font-size: 12px;
  font-weight: bold;
  color: #0a246a;
  text-align: center;
}

/* Responsive */
@media (max-width: 500px) {
  .pi-layout {
    flex-direction: column;
  }
  .pi-poster {
    width: 100%;
    min-height: 140px;
    border-right: none;
    border-bottom: 1px solid #ACA899;
  }
  .pi-poster-placeholder {
    font-size: 48px;
  }

  .story-variants-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 360px) {
  .story-variants-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TIME VORTEX EASTER EGG (Doctor Who)
   ============================================================ */
#time-vortex {
  position: fixed;
  inset: 0;
  z-index: 99999;
  cursor: pointer;
  background: transparent;
}

#time-vortex.active {
  display: block !important;
}

#vortex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- TARDIS ---- */
#tardis-fly {
  position: absolute;
  width: 80px;
  height: 120px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: none;
}

#tardis-fly.show {
  opacity: 1;
}

.tardis-body {
  width: 100%;
  height: 100%;
}

.tardis-body svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================================
   WINDOWS MEDIA PLAYER
   ============================================================ */
.wmp-window {
  min-width: 480px !important;
}

.wmp-video-container {
  flex: 1;
  background: #000;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

#wmp-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 2;
}

#wmp-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wmp-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.wmp-placeholder {
  text-align: center;
  color: #555;
  pointer-events: none;
}

.wmp-placeholder-icon {
  font-size: 64px;
  margin-bottom: 8px;
  opacity: 0.4;
}

.wmp-placeholder-text {
  font-size: 18px;
  font-weight: bold;
  color: #888;
}

.wmp-placeholder-sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* ---- Controls Bar ---- */
.wmp-controls {
  flex-shrink: 0;
  background: linear-gradient(180deg, #3A3F4B 0%, #2D323E 50%, #252A36 100%);
  border-top: 1px solid #4A4F5B;
  padding: 6px 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  user-select: none;
}

/* Progress / Seek row */
.wmp-progress-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wmp-time {
  font-family: 'Lucida Console', 'Courier New', monospace;
  font-size: 11px;
  color: #B0B4C0;
  min-width: 38px;
  text-align: center;
  flex-shrink: 0;
}

.wmp-seekbar {
  flex: 1;
  height: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.wmp-seek-track {
  width: 100%;
  height: 6px;
  background: #1A1E28;
  border-radius: 3px;
  position: relative;
  border: 1px solid #0C0E14;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
  overflow: visible;
}

.wmp-seek-fill {
  height: 100%;
  background: linear-gradient(180deg, #6DB8F0 0%, #3A8ED8 50%, #2A7AC8 100%);
  border-radius: 2px;
  position: relative;
  transition: width 0.05s linear;
}

.wmp-seek-thumb {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #D0D4E0 0%, #A8ACB8 50%, #8C90A0 100%);
  border: 1px solid #6A6E7A;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* Buttons row */
.wmp-btn-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.wmp-btn {
  width: 26px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #4A4F5B 0%, #3A3F4B 50%, #323745 100%);
  border: 1px solid #1A1E28;
  border-top-color: #5A5F6B;
  border-left-color: #4A4F5B;
  border-radius: 2px;
  cursor: pointer;
  font-size: 11px;
  color: #C8CCD8;
  padding: 0;
  line-height: 1;
  transition: background 0.08s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.wmp-btn:hover {
  background: linear-gradient(180deg, #5A5F6B 0%, #4A4F5B 50%, #3A3F4B 100%);
  border-top-color: #7A7F8B;
  color: #fff;
}

.wmp-btn:active {
  background: linear-gradient(180deg, #2A2E38 0%, #323745 100%);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  border-top-color: #1A1E28;
}

.wmp-play-btn {
  width: 30px;
  font-size: 13px;
}

.wmp-mute-btn {
  font-size: 13px;
}

.wmp-spacer {
  flex: 1;
}

/* Volume slider */
.wmp-volume-wrap {
  width: 60px;
  height: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin-right: 2px;
}

.wmp-volume-track {
  width: 100%;
  height: 6px;
  background: #1A1E28;
  border-radius: 3px;
  position: relative;
  border: 1px solid #0C0E14;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
  overflow: visible;
}

.wmp-volume-fill {
  height: 100%;
  background: linear-gradient(180deg, #72C870 0%, #4AB848 50%, #3AA038 100%);
  border-radius: 2px;
  position: relative;
}

.wmp-volume-thumb {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: linear-gradient(180deg, #D0D4E0 0%, #A8ACB8 50%, #8C90A0 100%);
  border: 1px solid #6A6E7A;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* WMP status bar tweaks */
.wmp-window .win-statusbar .sbar-item {
  color: #B0B4C0;
}

/* ============================================================
   YEAR SECTIONS (Browse by Year)
   ============================================================ */
.year-section {
  margin-bottom: 8px;
  border: 1px solid #C8C4BC;
  border-radius: 2px;
  background: #fff;
}

.year-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #F0EDE4 0%, #E0DCD0 100%);
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #C8C4BC;
}

.year-header:hover {
  background: linear-gradient(180deg, #E8E4D8 0%, #D8D4C4 100%);
}

.year-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.year-label {
  font-size: 13px;
  font-weight: bold;
  color: #0A246A;
  flex: 1;
}

.year-count {
  font-size: 11px;
  color: #888;
  background: #ECE9D8;
  padding: 1px 8px;
  border-radius: 8px;
  border: 1px solid #C8C4BC;
}

.year-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.year-collapsed .year-body {
  display: none;
}

.year-collapsed .year-header {
  border-bottom: none;
}

/* ============================================================
   AWARDS & RECOGNITION VIEW
   ============================================================ */
.awards-intro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #0A246A;
  padding: 8px 4px;
  border-bottom: 1px solid #C8C4BC;
  margin-bottom: 8px;
}

.awards-intro-icon {
  font-size: 22px;
}

.awards-empty {
  padding: 24px;
  text-align: center;
  color: #888;
  font-size: 13px;
}

/* Award Card */
.award-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  background: #fff;
  border: 1px solid #C8C4BC;
  border-radius: 2px;
  padding: 12px;
  transition: background 0.1s, border-color 0.1s;
}

.award-card:hover {
  background: #EEF4FF;
  border-color: #316AC5;
}

.award-card-left {
  display: flex;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.award-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  color: #7A3B00;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
  border: 1px solid #CC8800;
}

.award-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.award-card-title {
  font-size: 13px;
  font-weight: bold;
  color: #0A246A;
}

.award-card-meta {
  font-size: 11px;
  color: #666;
}

.award-list {
  list-style: none;
  padding: 4px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.award-item {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  padding-left: 0;
}

.award-bullet {
  display: inline-block;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.award-won {
  color: #FFD700;
}

.award-nom {
  color: #888;
}

.award-other {
  color: #C8A040;
}

.award-card-actions {
  flex-shrink: 0;
  padding-left: 12px;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

/* ============================================================
   SIDEBAR ACTIVE LINK
   ============================================================ */
.explorer-sidebar .sidebar-group ul li a.active {
  background: #316AC5;
  color: #fff !important;
  text-decoration: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
  .xp-window {
    width: calc(100vw - 8px) !important;
    left: 4px !important;
  }

  .about-layout { flex-direction: column; }
  .about-sidebar {
    width: 100%;
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #ACA899;
    padding: 12px;
  }
  .about-stats { flex-direction: row; flex-wrap: wrap; gap: 6px; }

  .explorer-layout { flex-direction: column; }
  .explorer-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #C2CADF;
    max-height: 100px;
  }

  #start-menu { width: 100%; }
  .sm-left { width: 55%; }
}
