/* ============================================================
   ANA CLARA TOSCANI — PORTFOLIO
   styles.css v2 — ventanas sin transform de centrado
   ============================================================
   01. Variables
   02. Reset & base
   03. Header
   04. Stage
   05. Stage title
   06. Thumbnails
   07. Mac windows — base
   08. Mac window — contenido
   09. Easter eggs
   10. Footer
   11. Responsive
   ============================================================ */


/* ============================================================
   01. VARIABLES
============================================================ */
:root {
  --bg:          #f0ede8;
  --ink:         #f0ede8;
  --ink-mid:     rgba(240, 237, 232, 0.55);
  --ink-faint:   #b8b4ae;

  --win-bg:      #1e1c1a;
  --win-border:  rgba(255, 255, 255, 0.10);
  --win-shadow:  0 8px 48px rgba(0,0,0,0.40), 0 2px 12px rgba(0,0,0,0.24);
  --win-radius:  10px;

  --titlebar-bg: #2a2826;
  --titlebar-dk: #3a3a3a;

  --dot-close:   #ff5f57;
  --dot-min:     #febc2e;
  --dot-max:     #28c840;

  --font-serif:  'EB Garamond', Georgia, serif;
  --font-sans:   'DM Sans', -apple-system, sans-serif;
  --font-sys: 'Outfit', sans-serif;

  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --header-h:    3.25rem;
  --win-w:       clamp(420px, 58vw, 700px);
}


/* ============================================================
   02. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; background: none; border: none; padding: 0; }

::selection { background: var(--ink); color: var(--bg); }

:focus-visible {
  outline: 1.5px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ============================================================
   03. HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  pointer-events: none;
}

.site-header > * { pointer-events: all; }

.logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: opacity 160ms ease;
}

.logo:hover { opacity: 0.45; }

.site-nav { display: flex; gap: 2rem; }

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1a1916;
  transition: color 140ms ease;
}

.nav-link:hover { color: #000000; }


/* ============================================================
   04. STAGE
============================================================ */
.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* Fondo neutro */
.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, #e8e3dc 0%, #ddd8d1 60%, #d0c9c0 100%);
  z-index: 0;
}

/* Foto de fondo (desactivada por defecto) */
.stage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 1;
  display: none;
}

.stage.has-bg::before    { opacity: 0; }
.stage.has-bg .stage-bg  { display: block; }


/* ============================================================
   05. STAGE TITLE
============================================================ */
.stage-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.stage-title-name {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 0.4em;
}

.stage-title-role {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 1vw, 0.7rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  opacity: 0.18;
}


/* ============================================================
   06. THUMBNAILS
============================================================ */
.thumb {
  position: absolute;
  left: var(--x);
  top:  var(--y);
  /* Solo rotación — sin translate, sin scale aquí */
  transform: rotate(var(--r, 0deg));
  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;

  background: none;
  border: none;
  cursor: pointer;

  transition:
    transform 200ms var(--ease-spring),
    filter    160ms ease;

  animation: thumbIn 480ms var(--ease-out) both;
}

@keyframes thumbIn {
  from {
    opacity: 0;
    transform: rotate(var(--r, 0deg)) scale(0.82);
  }
  to {
    opacity: 1;
    transform: rotate(var(--r, 0deg)) scale(1);
  }
}

.thumb:nth-child(1)  { animation-delay:  80ms; }
.thumb:nth-child(2)  { animation-delay: 140ms; }
.thumb:nth-child(3)  { animation-delay:  60ms; }
.thumb:nth-child(4)  { animation-delay: 200ms; }
.thumb:nth-child(5)  { animation-delay: 120ms; }
.thumb:nth-child(6)  { animation-delay: 160ms; }
.thumb:nth-child(7)  { animation-delay: 100ms; }
.thumb:nth-child(8)  { animation-delay: 220ms; }
.thumb:nth-child(9)  { animation-delay:  50ms; }
.thumb:nth-child(10) { animation-delay: 180ms; }

.thumb:hover {
  transform: rotate(var(--r, 0deg)) scale(1.09) translateY(-5px);
  filter: brightness(1.05);
  z-index: 20;
}

.thumb:active {
  transform: rotate(var(--r, 0deg)) scale(1.03) translateY(-2px);
}

.thumb img {
  width:  var(--thumb-w, var(--thumb-size, 88px));
  height: var(--thumb-h, var(--thumb-size, 88px));
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.13);
  display: block;
  transition: box-shadow 180ms ease;
}

.thumb:hover img {
  box-shadow: 0 10px 32px rgba(0,0,0,0.30), 0 2px 8px rgba(0,0,0,0.16);
}

.thumb--sm { --thumb-size: 66px; }
.thumb--lg { --thumb-size: 116px; }
.thumb--wide {
  --thumb-w: 148px;
  --thumb-h: 88px;
}

.thumb-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.easter-egg-trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 3%;
  bottom: 12%;
  z-index: 5;
  opacity: 0;
  cursor: default;
}


/* ============================================================
   07. MAC WINDOWS — BASE
   CLAVE: no usamos transform para centrar.
   La posición siempre es left/top absolutos, seteados por JS.
   El scale de entrada/salida es el ÚNICO transform que usamos,
   y se elimina apenas termina la animación.
============================================================ */
.mac-window {
  position: fixed;
  /* left y top se setean por JS — no valores CSS acá */
  z-index: 300;

  width: var(--win-w);
  max-height: 72vh;
  overflow: hidden;

  background: var(--win-bg);
  border-radius: var(--win-radius);
  box-shadow: var(--win-shadow);
  border: 1px solid var(--win-border);

  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Estado inicial: invisible, sin interacción */
  opacity: 0;
  pointer-events: none;
  /* scale para la animación de entrada */
  transform: scale(0.9);
  transition:
    opacity   220ms var(--ease-out),
    transform 220ms var(--ease-spring);

  /* Oculto hasta que JS lo abra */
  visibility: hidden;
}

/* Abierta: visible, interactiva, sin transform residual */
.mac-window.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: scale(1);
}

/* Dragging: sin transición para respuesta inmediata */
.mac-window.is-dragging {
  transition: none !important;
  transform: scale(1) !important;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.30),
    0 4px 16px rgba(0,0,0,0.16);
  user-select: none;
}

/* Ventana al frente */
.mac-window.is-front { z-index: 500; }

/* Easter egg windows: un poco más angostas */
.mac-window--system { width: clamp(280px, 34vw, 420px); }


/* ============================================================
   08. MAC WINDOW — CONTENIDO
============================================================ */
.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.875rem;
  background: var(--titlebar-bg);
  border-bottom: 1px solid var(--win-border);
  cursor: grab;
  user-select: none;
  flex-shrink: 0;
  -webkit-app-region: drag; /* por las dudas */
}

.mac-titlebar--dk {
  background: var(--titlebar-dk);
  border-color: #2a2a2a;
}

.mac-titlebar:active { cursor: grabbing; }

.mac-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mac-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  transition: filter 120ms ease;
}

.mac-dot--close {
  background: var(--dot-close);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800;
  font-size: 0;
  font-weight: 700;
  transition: font-size 100ms ease;
}

.mac-titlebar:hover .mac-dot--close { font-size: 7.5px; }
.mac-dot--close:hover { filter: brightness(0.82); }

.mac-dot--min { background: var(--dot-min); cursor: default; }
.mac-dot--max { background: var(--dot-max); cursor: default; }

.mac-titlebar-text {
  font-family: var(--font-sys);
  font-size: 0.75rem;
  font-weight: 500;
  color: transparent; 
  flex: 1;
  text-align: center;
  /* compensa los 3 dots (≈52px) para centrado visual */
  margin-right: 52px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mac-titlebar--dk .mac-titlebar-text { color: #bbb; }

/* Zona scrolleable */
.mac-content {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 1.125rem 1.375rem;
  flex: 1;
  min-height: 0;
}

.mac-content::-webkit-scrollbar { width: 5px; }
.mac-content::-webkit-scrollbar-track { background: transparent; }
.mac-content::-webkit-scrollbar-thumb {
  background: var(--ink-faint);
  border-radius: 3px;
}

/* Hero */
.mac-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  border-bottom: 1px solid #edeae4;
}

.mac-hero-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

.mac-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mac-project-title {
  font-family: var(--font-sys);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}

.mac-project-client {
  font-family: var(--font-sys);
  font-size: 0.75rem;
  color: var(--ink-mid);
}

/* Descripción */
.mac-desc {
  font-family: var(--font-sys);
  font-size: 0.8125rem;
  line-height: 1.68;
  color: var(--ink);
  margin-bottom: 0.875rem;
}

/* Details */
.mac-details {
  border-top: 1px solid #edeae4;
  padding: 0.375rem 0;
}

.mac-details + .mac-details { border-top: 1px solid #edeae4; }

.mac-details summary {
  font-family: var(--font-sys);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0;
  user-select: none;
}

.mac-details summary::-webkit-details-marker { display: none; }

.mac-details summary::before {
  content: '›';
  display: inline-block;
  font-size: 0.9rem;
  transition: transform 140ms ease;
  color: var(--ink-mid);
  width: 10px;
  text-align: center;
}

.mac-details[open] > summary::before { transform: rotate(90deg); }

.mac-details > p {
  font-family: var(--font-sys);
  font-size: 0.75rem;
  color: var(--ink-mid);
  padding: 0.4rem 0 0.25rem 1rem;
  line-height: 1.6;
}

/* Galería */
.mac-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.mac-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* System window content */
.mac-content--sys {
  padding: 1.125rem 1.125rem 0.875rem;
}

.egg-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.125rem;
}

.egg-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sys);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.egg-icon--ai   { background: linear-gradient(135deg, #FF7F18, #FF4700); }
.egg-icon--ps   { background: linear-gradient(135deg, #001E36, #31A8FF); }
.egg-icon--warn { background: none; font-size: 2rem; }

.egg-msg {
  font-family: var(--font-sys);
  font-size: 0.8125rem;
  line-height: 1.62;
  color: var(--ink);
  padding-top: 0.2rem;
}

.egg-msg em { font-style: italic; color: var(--ink-mid); }

.egg-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #edeae4;
}

.egg-btn {
  font-family: var(--font-sys);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.28rem 0.9rem;
  border-radius: 5px;
  border: 1px solid #c8c5c0;
  background: #f0eeeb;
  color: #1a1916;
  cursor: pointer;
  transition: background 100ms ease;
}

.egg-btn:hover { background: #e4e1dd; }

.egg-btn--primary {
  background: #2e7cf6;
  border-color: #1d6be0;
  color: #fff;
  font-weight: 500;
}

.egg-btn--primary:hover { background: #1d6be0; }


/* ============================================================
   10. DOCK FLOTANTE
============================================================ */
.dock {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;

  display: flex;
  align-items: flex-end;
  gap: 6px;

  padding: 8px 14px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.18),
    0 2px 8px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Cada ítem del dock */
.dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;

  /* Animación de rebote al hover — igual que macOS */
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
}

.dock-item:hover {
  transform: scale(1.32) translateY(-8px);
}

.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Ícono base */
.dock-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sys);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.14);
  transition: box-shadow 180ms ease;
  overflow: hidden;
  flex-shrink: 0;
}

.dock-icon svg {
  width: 26px;
  height: 26px;
}

/* Imágenes dentro del dock — llenan el ícono sin desbordarse */
.dock-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.dock-item:hover .dock-icon {
  box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 2px 6px rgba(0,0,0,0.18);
}

/* Colores por app */
.dock-icon--ps {
  background: linear-gradient(145deg, #0b2233 0%, #1a5276 100%);
  letter-spacing: -0.02em;
}

.dock-icon--id {
  background: linear-gradient(145deg, #1a0a2e 0%, #49021f 100%);
}

.dock-icon--ai {
  background: linear-gradient(145deg, #2d1a00 0%, #ff7f18 100%);
  letter-spacing: -0.02em;
}

.dock-icon--warn {
  background: linear-gradient(145deg, #3a3a3a 0%, #555 100%);
  font-size: 1.5rem;
  font-weight: 400;
}

.dock-icon--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.dock-icon--mail {
  background: none;
  box-shadow: none;
}

.dock-icon--whatsapp {
  background: none;
  box-shadow: none;
}

/* Tooltip sobre el ícono */
.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);

  background: rgba(30,28,26,0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-sys);
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  pointer-events: none;

  opacity: 0;
  transition:
    opacity   160ms ease,
    transform 160ms ease;
}

/* Separador vertical */
.dock-sep {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.15);
  margin-inline: 4px;
  align-self: center;
  border-radius: 1px;
}


/* ============================================================
   11. FOOTER (mínimo — debajo del dock)
============================================================ */
.site-footer {
  position: fixed;
  bottom: 0.35rem;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  pointer-events: none;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  color: var(--ink-mid);
  letter-spacing: 0.06em;
  opacity: 0.5;
}


/* ============================================================
   12. RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  :root { --win-w: clamp(290px, 88vw, 480px); }
  .thumb img     { width: 70px;  height: 70px;  }
  .thumb--sm img { width: 52px;  height: 52px;  }
  .thumb--lg img { width: 90px;  height: 90px;  }

  .dock-icon { width: 42px; height: 42px; }
}

@media (max-width: 600px) {
  :root { --win-w: 92vw; }

  .thumb img     { width: 56px;  height: 56px;  }
  .thumb--sm img { width: 42px;  height: 42px;  }
  .thumb--lg img { width: 72px;  height: 72px;  }
  .thumb-label   { font-size: 0.5rem; }
  /* Ventanas centradas en mobile */
  .mac-window {
    left: 50% !important;
    top:  50% !important;
    transform: translateX(-50%) translateY(-50%) scale(0.9) !important;
  }
  .mac-window.is-open {
    transform: translateX(-50%) translateY(-50%) scale(1) !important;
  }
  .mac-window.is-dragging {
    transform: translateX(-50%) translateY(-50%) scale(1) !important;
  }

  .mac-gallery { grid-template-columns: 1fr; }

  /* Dock más compacto en mobile */
  .dock { gap: 4px; padding: 6px 10px; bottom: 1rem; }
  .dock-icon { width: 38px; height: 38px; font-size: 0.9rem; border-radius: 9px; }
  .dock-icon svg { width: 22px; height: 22px; }
  .dock-sep { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.mac-window-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 72vh;
  overflow: hidden;
}

/* ============================================================
   STAGE INTRO — texto abajo izquierda
============================================================ */
.stage-intro {
  position: absolute;
  bottom: 6rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 10;
  pointer-events: none;
}

.stage-intro-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: #1a1916;
  margin-bottom: 1rem;
}

.stage-intro-title span {
  color: #888;
  font-weight: 800;
}

.stage-intro-sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a1916;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stage-intro-icon {
  font-size: 0.6rem;
  margin-top: 0.25rem;
}

.stage-intro-name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
  margin-left: 1.1rem;
}

/* Barra de búsqueda */
.search-bar {
  position: absolute;
  top: 4rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1.5px solid #e8648a;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #e8648a;
  transition: box-shadow 180ms ease;
  pointer-events: all;
}

.search-bar:hover {
  box-shadow: 0 2px 12px rgba(232, 100, 138, 0.25);
}

.search-bar-text {
  font-weight: 400;
  color: #e8648a;
}

.side-buttons {
  position: fixed;
  top: 7.5rem;
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: all;
}

.side-btn {
  display: flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: transparent;
  border: 1.5px solid #1a1916;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1916;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease;
  width: fit-content;
}

.side-btn:hover {
  background: #1a1916;
  color: #f0ede8;
}

.mac-window.is-maximized {
  width: 70vw !important;
  max-height: 75vh !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.win-resizer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  cursor: nwse-resize;
  z-index: 10;
}

#win-about .mac-details > p {
  font-size: 0.875rem;
  line-height: 1.72;
}