:root {
  color-scheme: light;
  --page-max: 1260px;
  --sidebar-width: 298px;
  --ink: #062f4f;
  --ink-strong: #011b33;
  --ink-soft: #315f76;
  --aero-blue: #087fd3;
  --aero-blue-dark: #034f91;
  --aero-cyan: #28c8f4;
  --aero-green: #38b95e;
  --aero-lime: #a6dc55;
  --aero-gold: #ffc857;
  --aero-red: #df4f45;
  --glass: rgba(235, 250, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-solid: #f4fcff;
  --edge: rgba(255, 255, 255, 0.92);
  --edge-blue: rgba(29, 137, 214, 0.58);
  --shadow: 0 24px 70px rgba(7, 61, 112, 0.32), 0 8px 20px rgba(0, 39, 76, 0.17);
  --inner: inset 0 1px 0 rgba(255, 255, 255, 0.96), inset 0 -1px 0 rgba(7, 91, 150, 0.22);
  --focus: 0 0 0 3px rgba(255, 255, 255, 0.96), 0 0 0 5px rgba(2, 117, 204, 0.78);
  --radius-window: 16px;
  --radius-card: 10px;
  --radius-button: 8px;
  --speed: 170ms;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #74d2ff;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Segoe UI", "Trebuchet MS", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.52;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.92) 0 2.2rem, rgba(255, 255, 255, 0.4) 2.3rem 6.8rem, transparent 7rem),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72) 0 3rem, transparent 8rem),
    radial-gradient(circle at 77% 13%, rgba(255, 255, 255, 0.9) 0 2.4rem, rgba(255, 255, 255, 0.36) 2.5rem 7rem, transparent 7.4rem),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.64) 0 3rem, transparent 8rem),
    radial-gradient(circle at 62% 2%, rgba(255, 255, 255, 0.8) 0 0.55rem, transparent 1rem),
    linear-gradient(117deg, transparent 0 37%, rgba(255, 255, 255, 0.24) 38%, transparent 58%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.38) 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.46) 0 8%, transparent 38%),
    linear-gradient(to bottom, #36b6ff 0%, #9ce7ff 34%, #e6fbff 54%, #9cd96f 72%, #39ae62 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.72) 0 0.28rem, transparent 0.34rem),
    radial-gradient(circle at 84% 37%, rgba(255, 255, 255, 0.66) 0 0.22rem, transparent 0.3rem),
    radial-gradient(circle at 73% 62%, rgba(255, 255, 255, 0.58) 0 0.34rem, transparent 0.42rem),
    radial-gradient(circle at 10% 64%, rgba(255, 255, 255, 0.46) 0 0.22rem, transparent 0.3rem),
    radial-gradient(ellipse at 33% 83%, rgba(86, 179, 67, 0.74) 0 11rem, transparent 11.4rem),
    radial-gradient(ellipse at 66% 82%, rgba(53, 168, 82, 0.68) 0 12rem, transparent 12.5rem),
    radial-gradient(ellipse at 50% 98%, rgba(8, 109, 88, 0.32) 0 18rem, transparent 24rem),
    repeating-linear-gradient(168deg, transparent 0 72px, rgba(255, 255, 255, 0.22) 73px 74px, transparent 75px 144px);
  opacity: 0.88;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(106deg, transparent 0 19%, rgba(255, 255, 255, 0.32) 20%, transparent 31%),
    linear-gradient(71deg, transparent 0 61%, rgba(91, 217, 255, 0.19) 62%, transparent 73%),
    radial-gradient(ellipse at 48% 75%, rgba(255, 255, 255, 0.4), transparent 17rem),
    linear-gradient(to bottom, transparent 0 60%, rgba(255, 255, 255, 0.38) 61%, rgba(95, 214, 243, 0.22) 68%, rgba(255, 255, 255, 0.18) 69%, transparent 78%);
}

img,
svg {
  max-width: 100%;
}

a {
  color: #075e9b;
  text-decoration: none;
}

a:hover {
  color: #003f6d;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

p {
  margin: 0;
}

.site-shell {
  width: min(var(--page-max), calc(100% - 30px));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.aero-window,
.portal-window,
.gadget,
.site-footer,
.aero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--edge);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.28) 44%, rgba(174, 231, 252, 0.58) 45%, rgba(154, 216, 241, 0.42)),
    var(--glass);
  box-shadow: var(--shadow), var(--inner);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.aero-window,
.portal-window {
  border-color: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-window);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.48) 38%, rgba(22, 146, 215, 0.62) 39%, rgba(2, 71, 135, 0.72) 100%),
    rgba(203, 244, 255, 0.68);
}

.site-header::before,
.portal-window::before,
.gadget::before,
.aero-card::before,
.site-footer::before {
  position: absolute;
  inset: 1px 1px auto;
  height: 44%;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.06));
  pointer-events: none;
  content: "";
}

.title-bar {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 14px;
  padding: 13px 15px 12px;
  color: var(--ink-strong);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 13px;
  color: var(--ink-strong);
}

.brand:hover {
  color: #004f86;
}

.brand-orb {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 23%, rgba(255, 255, 255, 0.98) 0 0.42rem, transparent 0.95rem),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2) 45%, rgba(39, 183, 241, 0.72) 46%, rgba(4, 109, 184, 0.78)),
    rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 24px rgba(46, 205, 246, 0.58), 0 8px 18px rgba(4, 80, 146, 0.24);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: cover;
}

.brand-title {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink-strong);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.96), 0 0 14px rgba(255, 255, 255, 0.9);
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: #0a638f;
  font-size: 12px;
  font-weight: 600;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 0 16px rgba(255, 255, 255, 0.28);
}

.window-controls span {
  display: block;
  width: 20px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 5px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 48%, rgba(61, 168, 219, 0.78) 49%, rgba(8, 84, 149, 0.9));
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 6px rgba(0, 61, 118, 0.25);
}

.window-controls span:last-child {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22) 48%, rgba(239, 91, 81, 0.84) 49%, rgba(173, 42, 38, 0.92));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-button);
  cursor: pointer;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.18) 45%, rgba(28, 142, 211, 0.82) 46%, rgba(3, 80, 139, 0.94));
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 7px rgba(0, 60, 110, 0.24);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 50, 95, 0.5);
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.site-nav {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 8px;
  margin: 0 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 11px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12) 43%, rgba(4, 89, 151, 0.44) 44%, rgba(0, 48, 98, 0.48)),
    rgba(9, 120, 194, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 0 20px rgba(39, 183, 241, 0.16);
}

.nav-link,
.aero-button,
.music-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-button);
  color: #ffffff;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.86) 0, rgba(255, 255, 255, 0.22) 43%, rgba(25, 142, 213, 0.84) 44%, rgba(3, 82, 146, 0.98) 100%);
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 8px rgba(0, 61, 116, 0.22);
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 55, 105, 0.8);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease;
}

.nav-link::before,
.aero-button::before,
.music-button::before {
  position: absolute;
  inset: 2px 4px auto;
  height: 38%;
  border-radius: 6px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.04));
  pointer-events: none;
  content: "";
}

.nav-link::after,
.aero-button::after,
.shortcut-tile::after {
  position: absolute;
  top: -40%;
  bottom: -30%;
  left: -55%;
  width: 38%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  content: "";
}

.nav-link:hover::after,
.aero-button:hover::after,
.shortcut-tile:hover::after {
  left: 115%;
  opacity: 1;
  transition: left 520ms ease, opacity 140ms ease;
}

.nav-link {
  flex: 1 1 106px;
  gap: 7px;
  white-space: nowrap;
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.nav-link:hover,
.aero-button:hover,
.music-button:hover {
  color: #ffffff;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0.3) 43%, rgba(48, 193, 239, 0.9) 44%, rgba(3, 102, 172, 1) 100%);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 20px rgba(36, 201, 242, 0.5), 0 2px 9px rgba(0, 61, 116, 0.28);
  transform: translateY(-1px);
}

.nav-link:active,
.aero-button:active,
.music-button:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 54, 96, 0.38);
}

.nav-link[aria-current="page"] {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0.38) 43%, rgba(117, 216, 255, 0.95) 44%, rgba(5, 124, 204, 1) 100%);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 22px rgba(255, 255, 255, 0.82), 0 0 17px rgba(36, 201, 242, 0.62);
}

.page-main {
  padding-top: 18px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: 18px;
  align-items: start;
}

.portal-window {
  min-width: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22) 3.4rem, rgba(31, 149, 216, 0.38) 3.45rem, rgba(210, 244, 255, 0.58) 4.8rem, rgba(255, 255, 255, 0.72) 4.85rem),
    rgba(224, 247, 255, 0.62);
}

.portal-titlebar {
  position: relative;
  min-height: 52px;
  padding: 14px 18px;
  color: var(--ink-strong);
  font-weight: 700;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.95), transparent 8rem),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.24) 48%, rgba(68, 182, 232, 0.36) 49%, rgba(9, 104, 180, 0.24));
  box-shadow: inset 0 1px 0 #ffffff, 0 12px 24px rgba(38, 162, 222, 0.12);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.88);
}

.portal-titlebar .title-note {
  display: block;
  margin-top: 2px;
  color: #0b6f9f;
  font-size: 12px;
  font-weight: 600;
}

.portal-content {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(211, 246, 255, 0.58) 54%, rgba(229, 255, 228, 0.42));
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 262px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background:
    radial-gradient(circle at 13% 10%, rgba(255, 255, 255, 0.94), transparent 6rem),
    radial-gradient(circle at 85% 14%, rgba(126, 221, 255, 0.46), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(214, 249, 255, 0.58) 48%, rgba(175, 237, 215, 0.52)),
    rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 #ffffff, 0 12px 28px rgba(15, 103, 162, 0.16);
}

.page-hero::after {
  position: absolute;
  right: -4rem;
  bottom: -2rem;
  width: 18rem;
  height: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.36), rgba(60, 190, 236, 0.12));
  transform: rotate(-14deg);
  content: "";
}

.portrait-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 166px;
  height: 166px;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.24) 45%, rgba(95, 204, 244, 0.28) 46%, rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 28px rgba(46, 205, 246, 0.42), 0 12px 26px rgba(5, 78, 135, 0.2);
}

.profile-image {
  width: 132px;
  height: 132px;
  border-radius: 10px;
  object-fit: cover;
}

.page-kicker {
  margin: 0 0 6px;
  color: #096fa6;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: 40px;
  line-height: 1.04;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.94), 0 0 18px rgba(255, 255, 255, 0.9);
}

.page-lead {
  max-width: 820px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 17px;
}

.actions,
.card-actions,
.footer-links,
.tag-list,
.software-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.actions {
  margin-top: 17px;
}

.aero-button,
.music-button {
  cursor: pointer;
}

.aero-button.secondary,
.music-button.secondary {
  color: #073252;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.38) 44%, rgba(211, 243, 252, 0.86) 45%, rgba(129, 205, 237, 0.72) 100%);
}

.aero-button.download {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.24) 44%, rgba(36, 193, 94, 0.9) 45%, rgba(9, 122, 55, 1) 100%);
}

.aero-button.github {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.76) 0, rgba(255, 255, 255, 0.18) 44%, rgba(70, 84, 103, 0.9) 45%, rgba(26, 37, 54, 1) 100%);
}

.aero-button.website {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.24) 44%, rgba(36, 201, 242, 0.9) 45%, rgba(4, 111, 162, 1) 100%);
}

.aero-button.beta {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.25) 44%, rgba(255, 198, 82, 0.94) 45%, rgba(184, 111, 4, 1) 100%);
}

.tag-list {
  margin-top: 14px;
}

.profile-tags {
  align-items: stretch;
  flex-direction: column;
}

.profile-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.profile-tag-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  color: #06416d;
  font-size: 12px;
  font-weight: 800;
}

.aero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: #06416d;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.94), rgba(216, 247, 255, 0.6));
  box-shadow: inset 0 1px 0 #ffffff, 0 2px 8px rgba(36, 146, 201, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.profile-tag-wide {
  max-width: 100%;
  white-space: normal;
}

.curve-divider {
  height: 44px;
  margin: 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  border-left: 0;
  border-right: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(39, 190, 237, 0.22), transparent 63%),
    linear-gradient(to right, transparent, rgba(255, 255, 255, 0.56), transparent);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--ink-strong);
  font-size: 22px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.section-heading::before {
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, #ffffff 0 0.28rem, transparent 0.62rem),
    linear-gradient(to bottom, #79dcff, #087ed3);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 15px rgba(40, 200, 244, 0.4);
  content: "";
}

.content-grid {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.soft-panel {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 #ffffff;
}

.featured-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shortcut-tile {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.9), transparent 4.6rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22) 42%, rgba(58, 190, 239, 0.32)),
    rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 #ffffff, 0 12px 26px rgba(9, 91, 150, 0.16);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease;
}

.shortcut-tile:hover {
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 #ffffff, 0 18px 36px rgba(9, 91, 150, 0.24), 0 0 24px rgba(40, 200, 244, 0.34);
}

.shortcut-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  color: #ffffff;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 44%, rgba(23, 139, 210, 0.86) 45%, rgba(3, 82, 146, 0.96));
  box-shadow: inset 0 1px 0 #ffffff, 0 0 18px rgba(36, 201, 242, 0.34);
  font-size: 17px;
  font-weight: 800;
  text-shadow: 0 -1px 0 rgba(0, 55, 105, 0.78);
}

.shortcut-tile.games .shortcut-icon {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 44%, rgba(54, 196, 95, 0.88) 45%, rgba(15, 126, 60, 0.96));
}

.shortcut-tile.socials .shortcut-icon {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 44%, rgba(255, 197, 74, 0.9) 45%, rgba(184, 111, 4, 0.98));
}

.shortcut-tile h3,
.aero-card h3 {
  margin: 0 0 7px;
  color: var(--ink-strong);
  font-size: 19px;
  line-height: 1.18;
}

.shortcut-tile p,
.aero-card p,
.soft-panel p {
  color: var(--ink-soft);
}

.quick-dock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.25)),
    rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 #ffffff;
}

.gadget-column {
  display: grid;
  gap: 14px;
}

.gadget {
  border-radius: 13px;
}

.gadget-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 11px;
  color: var(--ink-strong);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26) 50%, rgba(103, 206, 244, 0.32) 51%, rgba(20, 127, 198, 0.22));
  box-shadow: inset 0 1px 0 #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.gadget-icon {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: #ffffff;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.12) 45%, rgba(21, 146, 215, 0.86) 46%, rgba(3, 82, 146, 0.96));
  box-shadow: inset 0 1px 0 #ffffff;
  font-size: 10px;
  text-shadow: 0 -1px 0 rgba(0, 55, 105, 0.78);
}

.gadget-body {
  position: relative;
  padding: 12px;
}

.gadget-links {
  display: grid;
  gap: 7px;
}

.gadget-links a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.gadget-links a:hover {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.52);
}

.status-orb {
  width: 82px;
  height: 82px;
  margin: 2px auto 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 1) 0 0.5rem, transparent 1.2rem),
    radial-gradient(circle at 50% 57%, rgba(255, 255, 255, 0.3), transparent 2.8rem),
    linear-gradient(to bottom, #85eaff, #0b8fce 54%, #33bd68);
  box-shadow: inset 0 1px 0 #ffffff, 0 0 28px rgba(40, 200, 244, 0.38);
}

.music-meta {
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
}

.music-track {
  color: var(--ink-strong);
  font-weight: 800;
}

.music-artist,
.music-source,
.progress-time {
  color: var(--ink-soft);
  font-size: 12px;
}

.music-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  align-items: center;
  margin: 8px 0;
}

.music-button {
  min-height: 30px;
  padding: 5px 7px;
}

.volume-slider {
  width: 100%;
  accent-color: var(--aero-blue);
}

.progress-shell {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 1px 2px rgba(4, 75, 128, 0.16);
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.72), transparent 40%),
    linear-gradient(to right, #22c1f2, #35bd66);
}

.visualizer {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 28px;
  margin-top: 9px;
}

.visualizer span {
  display: block;
  width: 100%;
  height: 9px;
  border-radius: 999px 999px 3px 3px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(to bottom, #6de9ff, #0b89d2);
  opacity: 0.55;
}

.visualizer.is-playing span {
  animation: visualizerPulse 760ms ease-in-out infinite alternate;
}

.visualizer.is-playing span:nth-child(2) {
  animation-delay: 120ms;
}

.visualizer.is-playing span:nth-child(3) {
  animation-delay: 240ms;
}

.visualizer.is-playing span:nth-child(4) {
  animation-delay: 80ms;
}

.visualizer.is-playing span:nth-child(5) {
  animation-delay: 180ms;
}

@keyframes visualizerPulse {
  from {
    height: 7px;
  }

  to {
    height: 26px;
  }
}

.aero-card {
  border-radius: var(--radius-card);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38) 48%, rgba(214, 242, 251, 0.58) 49%, rgba(196, 231, 245, 0.48)),
    rgba(255, 255, 255, 0.48);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-color var(--speed) ease;
}

.aero-card:hover {
  border-color: #ffffff;
  box-shadow: 0 16px 36px rgba(22, 95, 145, 0.23), 0 0 18px rgba(43, 191, 238, 0.32), var(--inner);
  transform: translateY(-3px);
}

.software-library {
  display: grid;
  gap: 12px;
}

.software-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  padding: 13px;
}

.software-thumb,
.archive-icon,
.social-art,
.credit-avatar {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 13px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.1) 32%, transparent 33%),
    linear-gradient(to bottom, rgba(43, 192, 237, 0.48), rgba(13, 100, 169, 0.64)),
    linear-gradient(135deg, #dffbff, #4ca9dc);
  box-shadow: inset 0 1px 0 #ffffff, 0 8px 18px rgba(11, 86, 145, 0.18);
  font-weight: 800;
  text-shadow: 0 -1px 0 rgba(0, 55, 105, 0.78);
}

.software-thumb {
  min-height: 104px;
  font-size: 18px;
}

.software-card .card-actions {
  margin-top: 11px;
}

.software-card .aero-button {
  flex: 1 1 112px;
}

.program-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.credit-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.credit-card,
.social-card,
.archive-card {
  padding: 16px;
  text-align: center;
}

.credit-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.84), transparent 6rem),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.74), rgba(255, 246, 231, 0.5)),
    rgba(255, 255, 255, 0.42);
}

.credit-avatar {
  width: 98px;
  height: 98px;
  margin: 0 auto 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.credit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.archive-card {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(236, 243, 227, 0.56)),
    rgba(233, 243, 224, 0.54);
}

.archive-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.92), rgba(255, 240, 166, 0.58) 45%, rgba(255, 185, 54, 0.64) 46%, rgba(190, 137, 28, 0.62));
}

.archive-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  min-height: 218px;
}

.social-art {
  width: 78px;
  height: 78px;
  margin: 0 auto 13px;
  overflow: hidden;
  font-size: 20px;
}

.social-art img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.social-youtube {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.16) 45%, rgba(250, 88, 88, 0.72) 46%, rgba(169, 19, 19, 0.76));
}

.social-x,
.social-github {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.14) 45%, rgba(71, 82, 96, 0.74) 46%, rgba(22, 33, 47, 0.84));
}

.social-bluesky {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 45%, rgba(77, 200, 255, 0.8) 46%, rgba(23, 109, 203, 0.78));
}

.social-tiktok {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 45%, rgba(255, 93, 174, 0.74) 46%, rgba(18, 40, 64, 0.8));
}

.social-reddit {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 45%, rgba(255, 139, 61, 0.78) 46%, rgba(188, 70, 15, 0.78));
}

.social-gamejolt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 45%, rgba(125, 213, 91, 0.76) 46%, rgba(56, 129, 50, 0.82));
}

.site-footer {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 13px;
  color: var(--ink-soft);
  text-align: center;
}

.footer-links {
  justify-content: center;
  margin-top: 5px;
}

.footer-links a {
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .aero-window,
  .portal-window,
  .gadget,
  .site-footer,
  .aero-card {
    background-color: var(--glass-solid);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .aero-window,
  .portal-window,
  .gadget,
  .site-footer,
  .aero-card,
  .page-hero,
  .shortcut-tile,
  .soft-panel {
    background-color: rgba(250, 254, 255, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  body {
    background-attachment: scroll;
  }
}

@media (max-width: 1040px) {
  .portal-layout {
    grid-template-columns: 1fr;
  }

  .gadget-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 18px, var(--page-max));
    padding-top: 9px;
  }

  .site-header {
    top: 8px;
  }

  .title-bar {
    min-height: 68px;
    padding: 10px;
  }

  .brand-orb {
    width: 48px;
    height: 48px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .window-controls {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .nav-link {
    flex: none;
    white-space: normal;
  }

  .portal-content {
    padding: 14px;
  }

  .page-hero,
  .featured-tiles,
  .grid-2,
  .grid-3,
  .grid-4,
  .credit-grid,
  .archive-shelf,
  .social-grid,
  .gadget-column {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
  }

  .portrait-frame {
    width: 142px;
    height: 142px;
  }

  .profile-image {
    width: 110px;
    height: 110px;
  }

  .page-title {
    font-size: 31px;
  }

  .page-lead {
    font-size: 16px;
  }

  .software-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .title-bar {
    align-items: flex-start;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .software-card {
    grid-template-columns: 1fr;
  }

  .quick-dock,
  .actions,
  .card-actions {
    flex-direction: column;
    border-radius: 12px;
  }

  .aero-button {
    width: 100%;
  }

  .music-controls {
    grid-template-columns: repeat(5, 1fr);
  }
}
