body.boot-complete #verboseLoader,
body.boot-complete #bootScreen {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.boot-panel {
  width: min(90vw, 520px);
  padding: 32px;
  border: 1px solid rgba(79, 209, 255, 0.25);
  background: rgba(4, 10, 18, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.boot-label,
.boot-subtitle,
.eyebrow,
.tag {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.boot-panel h1,
.hero-panel h2,
.production-banner h2 {
  margin: 12px 0;
  font-family: "Orbitron", sans-serif;
}

.boot-bar {
  height: 10px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.boot-bar span {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm));
  animation: loading 2.6s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}

.desktop {
  position: relative;
  min-height: 100vh;
  padding: 28px 24px calc(var(--taskbar-h) + 18px);
}

.desktop-icon {
  display: grid;
  gap: 10px;
  width: 94px;
  margin-bottom: 18px;
  border: 0;
  background: transparent;
  color: var(--text-main);
  text-align: center;
  cursor: pointer;
}

.icon-art {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(79, 209, 255, 0.2), rgba(255, 163, 77, 0.18));
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.05);
}

.icon-label {
  line-height: 1.05;
}

.window {
  position: absolute;
  z-index: 2;
  display: none;
  min-width: 320px;
  max-width: min(92vw, 900px);
  max-height: calc(100vh - var(--taskbar-h) - 28px);
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.98), rgba(5, 12, 22, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.window.active {
  display: block;
}

.window.maximized {
  inset: 14px 14px calc(var(--taskbar-h) + 10px) 14px !important;
  width: auto !important;
  height: auto !important;
  max-width: none;
  max-height: none;
  border-radius: 20px;
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: move;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.title-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.window-actions {
  display: flex;
  gap: 8px;
}

.window-btn {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  cursor: pointer;
}

.window-btn.close {
  color: #ffd2d2;
  background: rgba(255, 76, 76, 0.12);
}

.window-body {
  padding: 20px;
  height: calc(100% - 60px);
  overflow: auto;
}

.window.maximized .window-body {
  height: calc(100% - 60px);
}

.hero-panel .lead,
.media-card p,
.production-banner p,
.contact-panel,
.production-list,
.stat-grid span {
  color: var(--text-soft);
}

.stat-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.stat-grid article,
.media-card,
.production-banner,
.contact-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-grid strong,
.media-card h3 {
  display: block;
  margin-bottom: 8px;
}

.explorer-shell {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 0;
}

.explorer-sidebar {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.folder-link,
.start-item {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

.folder-link.active,
.start-item:hover,
.start-button:hover,
.desktop-icon:hover .icon-art,
.contact-link:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(79, 209, 255, 0.2), 0 10px 22px rgba(79, 209, 255, 0.12);
}

.explorer-content {
  padding: 18px;
}

.path-bar {
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.folder-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.folder-card strong {
  display: block;
  margin-bottom: 8px;
}

.card-stack {
  display: grid;
  gap: 16px;
}

.media-card.alt {
  background: linear-gradient(145deg, rgba(79, 209, 255, 0.08), rgba(255, 163, 77, 0.08));
}

.production-list {
  padding-left: 20px;
}

.contact-panel {
  display: grid;
  gap: 12px;
