*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-glow: rgba(34, 211, 238, 0.18);
  --cyan: #22d3ee;
  --sky: #38bdf8;
  --deep: #0ea5e9;
  --dark: #020617;
  --mid: #0f172a;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Exo 2", sans-serif;
  user-select: none;
}

.desktop {
  position: relative;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(
      ellipse at 20% 10%,
      rgba(14, 165, 233, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(34, 211, 238, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(ellipse at 50% 50%, #071428 0%, #020617 100%);
  overflow: hidden;
}

.desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 40px,
    rgba(56, 189, 248, 0.03) 40px,
    rgba(56, 189, 248, 0.03) 42px
  );
  animation: caustic 12s linear infinite alternate;
  pointer-events: none;
}

.desktop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    30deg,
    transparent 0px,
    transparent 55px,
    rgba(34, 211, 238, 0.025) 55px,
    rgba(34, 211, 238, 0.025) 57px
  );
  animation: caustic2 18s linear infinite alternate;
  pointer-events: none;
}

@keyframes caustic {
  from {
    background-position: 0 0;
    opacity: 0.8;
  }
  to {
    background-position: 80px 80px;
    opacity: 1;
  }
}
@keyframes caustic2 {
  from {
    background-position: 0 0;
    opacity: 0.6;
  }
  to {
    background-position: -60px 90px;
    opacity: 1;
  }
}

.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255, 255, 255, 0.35),
    rgba(56, 189, 248, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatUp linear infinite;
}
.bubble:nth-child(1) {
  width: 8px;
  height: 8px;
  left: 8%;
  animation-duration: 14s;
  animation-delay: 0s;
  opacity: 0.55;
}
.bubble:nth-child(2) {
  width: 14px;
  height: 14px;
  left: 18%;
  animation-duration: 18s;
  animation-delay: 3s;
  opacity: 0.4;
}
.bubble:nth-child(3) {
  width: 6px;
  height: 6px;
  left: 30%;
  animation-duration: 11s;
  animation-delay: 6s;
  opacity: 0.65;
}
.bubble:nth-child(4) {
  width: 20px;
  height: 20px;
  left: 42%;
  animation-duration: 22s;
  animation-delay: 1s;
  opacity: 0.3;
}
.bubble:nth-child(5) {
  width: 10px;
  height: 10px;
  left: 55%;
  animation-duration: 15s;
  animation-delay: 8s;
  opacity: 0.5;
}
.bubble:nth-child(6) {
  width: 5px;
  height: 5px;
  left: 65%;
  animation-duration: 9s;
  animation-delay: 4s;
  opacity: 0.7;
}
.bubble:nth-child(7) {
  width: 16px;
  height: 16px;
  left: 74%;
  animation-duration: 20s;
  animation-delay: 2s;
  opacity: 0.35;
}
.bubble:nth-child(8) {
  width: 9px;
  height: 9px;
  left: 83%;
  animation-duration: 13s;
  animation-delay: 7s;
  opacity: 0.55;
}
.bubble:nth-child(9) {
  width: 4px;
  height: 4px;
  left: 91%;
  animation-duration: 8s;
  animation-delay: 5s;
  opacity: 0.75;
}
.bubble:nth-child(10) {
  width: 12px;
  height: 12px;
  left: 50%;
  animation-duration: 16s;
  animation-delay: 10s;
  opacity: 0.45;
}
.bubble:nth-child(11) {
  width: 7px;
  height: 7px;
  left: 25%;
  animation-duration: 12s;
  animation-delay: 9s;
  opacity: 0.6;
}
.bubble:nth-child(12) {
  width: 18px;
  height: 18px;
  left: 70%;
  animation-duration: 24s;
  animation-delay: 0.5s;
  opacity: 0.28;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: inherit;
  }
  25% {
    transform: translateY(-25vh) translateX(12px) scale(1.05);
  }
  50% {
    transform: translateY(-50vh) translateX(-8px) scale(0.98);
  }
  75% {
    transform: translateY(-75vh) translateX(10px) scale(1.02);
  }
  100% {
    transform: translateY(-105vh) translateX(0) scale(0.9);
    opacity: 0;
  }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(34, 211, 238, 0.03);
}

.icon-grid {
  position: absolute;
  top: 2vh;
  left: 2vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 18px;
  width: min(520px, 55vw);
  padding: 16px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px 10px;
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.25s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.icon-item:hover {
  transform: translateY(-7px) scale(1.07);
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(34, 211, 238, 0.2);
}

.icon-item:active {
  transform: scale(0.93);
  transition-duration: 0.1s;
}

.icon-glyph {
  font-size: 2.1rem;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5));
  transition: filter 0.25s ease;
}

.icon-item:hover .icon-glyph {
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.9));
}

.icon-label {
  font-family: "Exo 2", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  word-break: break-word;
}

#start-toggle {
  display: none;
}

.start-menu {
  position: fixed;
  bottom: 64px;
  left: 12px;
  width: 320px;
  border-radius: 20px;
  padding: 20px;
  z-index: 100;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}

#start-toggle:checked ~ .start-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.start-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.start-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.4);
  flex-shrink: 0;
}

.start-username {
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e0f7ff;
  letter-spacing: 0.06em;
}

.start-status {
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.start-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.start-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 6px;
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s ease;
}

.start-app-item:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.15);
}

.start-app-item:active {
  transform: scale(0.94);
}

.start-app-icon {
  font-size: 1.4rem;
}
.start-app-label {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.start-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin: 12px 0;
}

.start-power-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.power-btn {
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-family: "Exo 2", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.power-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.power-btn.sleep:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--cyan);
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  z-index: 50;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.start-btn-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.start-btn-label:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.2);
}

#start-toggle:checked ~ .taskbar .start-btn-label {
  background: rgba(34, 211, 238, 0.18);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.3);
}

.start-btn-icon {
  font-size: 1rem;
}
.start-btn-text {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #e0f7ff;
  letter-spacing: 0.1em;
}

.taskbar-dock {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.25rem;
  position: relative;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.04);
}

.dock-icon::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  transition: opacity 0.2s;
}

.dock-icon.active::after {
  opacity: 0.8;
}

.dock-icon:hover {
  transform: translateY(-8px) scale(1.2);
  background: rgba(34, 211, 238, 0.12);
  box-shadow:
    0 8px 20px rgba(34, 211, 238, 0.2),
    0 0 10px rgba(34, 211, 238, 0.15);
}

.dock-icon .tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.6rem;
  color: #e0f7ff;
  white-space: nowrap;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.15s ease;
}

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

.system-tray {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tray-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tray-icon {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
  padding: 4px;
  border-radius: 6px;
}

.tray-icon:hover {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  text-shadow: 0 0 8px var(--cyan);
}

.clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.clock-time {
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #e0f7ff;
  letter-spacing: 0.06em;
}

.clock-date {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.corner-widget {
  position: absolute;
  top: 2vh;
  right: 2vw;
  width: 200px;
  border-radius: 20px;
  padding: 18px 20px;
}

.widget-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.widget-temp {
  font-family: "Orbitron", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #e0f7ff;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.widget-desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.widget-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  margin: 12px 0;
}

.widget-stats {
  display: flex;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-val {
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 500;
}

.stat-key {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

.fake-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: min(480px, 90vw);
  border-radius: 20px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.fake-window:target {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.window-titlebar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
}

.win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: filter 0.2s;
}
.win-btn.close {
  background: #f87171;
}
.win-btn.min {
  background: #fbbf24;
}
.win-btn.max {
  background: #4ade80;
}
.win-btn:hover {
  filter: brightness(1.3);
}

.window-title {
  font-family: "Exo 2", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 6px;
  letter-spacing: 0.06em;
}

.window-body {
  padding: 20px;
}

.window-close-link {
  text-decoration: none;
  display: block;
}

.window-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(4px);
  z-index: 190;
}

.fake-window:target ~ .window-overlay,
.window-overlay:target {
  display: block;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 4px
  );
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(
    ellipse at center,
    transparent 55%,
    rgba(2, 6, 23, 0.55) 100%
  );
}

.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f87171, #ef4444);
  font-size: 0.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prog-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.prog-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--deep), var(--cyan));
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
}

.notes-textarea {
  width: 100%;
  height: 320px;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  padding: 20px;
  font-family: "Exo 2", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  caret-color: var(--cyan);
  border-radius: 0 0 20px 20px;
}

.notes-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

.notes-textarea:focus {
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.15);
}

.settings-section {
  margin-bottom: 4px;
}

.settings-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
}

.settings-row-left {
  flex: 1;
  min-width: 0;
}

.settings-row-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.settings-row-sub {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.toggle-switch {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.toggle-switch input {
  display: none;
}

.toggle-track {
  display: block;
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.25s ease;
}

.toggle-switch input:checked + .toggle-track {
  background: rgba(34, 211, 238, 0.3);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.25);
}

.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(18px);
  background: var(--cyan);
}

.settings-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

.settings-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
  cursor: pointer;
}

.settings-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  margin: 14px 0;
}

.settings-about {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.settings-about-val {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-hdr {
  font-family: "Orbitron", sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-align: center;
  padding: 4px 0 8px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.cal-day:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.25);
  color: #e0f7ff;
}

.cal-day.cal-today {
  background: rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.5);
  color: var(--cyan);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
  font-family: "Orbitron", sans-serif;
}

.cal-day.cal-empty {
  cursor: default;
  pointer-events: none;
}

.browser-urlbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

.browser-lock {
  font-size: 0.75rem;
  flex-shrink: 0;
  opacity: 0.5;
}
.browser-go {
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--cyan);
  opacity: 0.7;
  cursor: pointer;
}

.browser-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px 12px;
  font-family: "Exo 2", monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  caret-color: var(--cyan);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.browser-input:focus {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.1);
  background: rgba(255, 255, 255, 0.09);
}

.browser-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.1);
}

.browser-tab {
  padding: 5px 14px;
  border-radius: 8px 8px 0 0;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
  border-bottom: none;
}

.browser-tab:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.browser-tab-active {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
  color: var(--cyan);
}

.browser-tab-add {
  padding: 5px 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  margin-left: 2px;
}

.browser-tab-add:hover {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

.browser-body {
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.browser-hero {
  text-align: center;
}
.browser-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.5));
}
.browser-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  color: #e0f7ff;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.browser-hero-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}

.browser-bookmarks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.browser-bookmark {
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.2s;
}

.browser-bookmark:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.25);
  color: var(--cyan);
}

.terminal-body {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 20px 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terminal-output {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  line-height: 1.75;
  color: rgba(34, 211, 238, 0.85);
  white-space: pre;
  overflow-x: auto;
  padding: 0;
  background: none;
  border: none;
  margin: 0;
}

.terminal-input-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

.terminal-prompt {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  color: var(--cyan);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  caret-color: var(--cyan);
  line-height: 1.5;
}

.terminal-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.music-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.music-art {
  position: relative;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.music-art-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(14, 165, 233, 0.5),
    rgba(2, 6, 23, 0.8)
  );
  border: 2px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
  animation: spin 8s linear infinite;
}

.music-art-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(34, 211, 238, 0.2);
  animation: spin 12s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.music-track-name {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0f7ff;
  margin-bottom: 4px;
}

.music-track-artist {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.music-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.music-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Orbitron", sans-serif;
  flex-shrink: 0;
}

.music-progress-track {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
}

.music-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--deep), var(--cyan));
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.5);
}

.music-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.7);
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}

.music-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.7);
}

.music-btn:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  transform: scale(1.08);
}
.music-btn:active {
  transform: scale(0.92);
}

.music-btn-play {
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
}

.music-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  margin: 16px 0 12px;
}

.music-playlist {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.music-pl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.music-pl-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.music-pl-active {
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.15);
}

.music-pl-icon {
  font-size: 0.65rem;
  color: var(--cyan);
  width: 14px;
  text-align: center;
}
.music-pl-name {
  flex: 1;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}
.music-pl-dur {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Orbitron", sans-serif;
}

.camera-viewfinder {
  position: relative;
  height: 220px;
  background:
    radial-gradient(
      ellipse at 40% 35%,
      rgba(14, 165, 233, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #040d1a 0%, #071428 100%);
  overflow: hidden;
}

.cam-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--cyan);
  border-style: solid;
  opacity: 0.7;
}
.cam-tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}
.cam-tr {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}
.cam-bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}
.cam-br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.cam-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.6),
    transparent
  );
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
  animation: camSweep 3s ease-in-out infinite;
}
@keyframes camSweep {
  0% {
    top: 10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

.cam-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 50%;
}
.cam-crosshair::before,
.cam-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(34, 211, 238, 0.4);
}
.cam-crosshair::before {
  top: 50%;
  left: -8px;
  right: -8px;
  height: 1px;
  transform: translateY(-50%);
}
.cam-crosshair::after {
  left: 50%;
  top: -8px;
  bottom: -8px;
  width: 1px;
  transform: translateX(-50%);
}

.cam-label {
  position: absolute;
  top: 14px;
  right: 36px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.5rem;
  color: #f87171;
  letter-spacing: 0.1em;
  animation: blink 1.5s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.cam-grid-h,
.cam-grid-v {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cam-grid-h {
  background: repeating-linear-gradient(
    to bottom,
    transparent 0%,
    transparent calc(33.33% - 0.5px),
    rgba(255, 255, 255, 0.05) calc(33.33% - 0.5px),
    rgba(255, 255, 255, 0.05) 33.33%
  );
}
.cam-grid-v {
  background: repeating-linear-gradient(
    to right,
    transparent 0%,
    transparent calc(33.33% - 0.5px),
    rgba(255, 255, 255, 0.05) calc(33.33% - 0.5px),
    rgba(255, 255, 255, 0.05) 33.33%
  );
}

.camera-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cam-mode {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.62rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.cam-mode:hover {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
}
.cam-mode-active {
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.08);
}

.cam-shutter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.15s;
}
.cam-shutter:active {
  transform: scale(0.88);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.5);
}

.map-canvas {
  position: relative;
  height: 280px;
  background:
    radial-gradient(
      ellipse at 60% 40%,
      rgba(14, 165, 233, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #051525 0%, #030e1c 100%);
  overflow: hidden;
}

.map-land {
  position: absolute;
  background: rgba(22, 78, 60, 0.45);
  border: 1px solid rgba(34, 211, 238, 0.1);
}
.map-land-1 {
  width: 160px;
  height: 90px;
  top: 20px;
  left: 40px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
}
.map-land-2 {
  width: 100px;
  height: 60px;
  top: 140px;
  left: 220px;
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
}
.map-land-3 {
  width: 80px;
  height: 50px;
  top: 60px;
  right: 30px;
  border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
}

.map-gridlines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      rgba(34, 211, 238, 0.04) 0px,
      rgba(34, 211, 238, 0.04) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(34, 211, 238, 0.04) 0px,
      rgba(34, 211, 238, 0.04) 1px,
      transparent 1px,
      transparent 40px
    );
}

.map-road {
  position: absolute;
  background: rgba(255, 200, 50, 0.25);
  border-radius: 2px;
}
.map-road-h1 {
  height: 3px;
  left: 0;
  right: 0;
  top: 112px;
}
.map-road-h2 {
  height: 2px;
  left: 60px;
  right: 60px;
  top: 170px;
  opacity: 0.6;
}
.map-road-v1 {
  width: 3px;
  top: 0;
  bottom: 0;
  left: 185px;
}
.map-road-v2 {
  width: 2px;
  top: 40px;
  bottom: 40px;
  left: 270px;
  opacity: 0.6;
}

.map-pin {
  position: absolute;
  top: 95px;
  left: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
  z-index: 2;
  position: relative;
}
.map-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.6);
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}
.map-pin-label {
  font-size: 0.58rem;
  color: var(--cyan);
  background: rgba(2, 6, 23, 0.8);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 6px;
  padding: 3px 7px;
  white-space: nowrap;
  margin-top: 6px;
  font-family: "Exo 2", sans-serif;
}

.map-compass {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(34, 211, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  color: var(--cyan);
  font-weight: 700;
}

.map-scale {
  position: absolute;
  bottom: 10px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.map-scale-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(34, 211, 238, 0.6) 50%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.map-scale span {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Orbitron", sans-serif;
}

.msg-layout {
  display: flex;
  height: 360px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.msg-sidebar {
  width: 160px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.msg-search {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.msg-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  outline: none;
  caret-color: var(--cyan);
  font-family: "Exo 2", sans-serif;
}

.msg-conv {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.msg-conv:hover {
  background: rgba(255, 255, 255, 0.04);
}

.msg-conv-active {
  background: rgba(34, 211, 238, 0.07);
}

.msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.msg-conv-info {
  flex: 1;
  min-width: 0;
}

.msg-conv-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-conv-preview {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.msg-conv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.msg-conv-time {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.25);
}

.msg-unread {
  background: var(--cyan);
  color: #020617;
  font-size: 0.5rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
}

.msg-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.msg-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.1);
}

.msg-online {
  font-size: 0.58rem;
  color: #4ade80;
  margin-top: 1px;
}

.msg-bubbles {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.msg-bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.7rem;
  line-height: 1.5;
}

.msg-bubble-in {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border-bottom-left-radius: 4px;
}

.msg-bubble-out {
  align-self: flex-end;
  background: rgba(34, 211, 238, 0.18);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #e0f7ff;
  border-bottom-right-radius: 4px;
}

.msg-input-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.msg-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 7px 12px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  outline: none;
  resize: none;
  caret-color: var(--cyan);
  font-family: "Exo 2", sans-serif;
  transition: border-color 0.2s;
}

.msg-input:focus {
  border-color: rgba(34, 211, 238, 0.35);
}

.msg-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #020617;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
  transition: all 0.2s;
}

.msg-send:hover {
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}
.msg-send:active {
  transform: scale(0.9);
}

.code-tabs {
  display: flex;
  gap: 2px;
  padding: 6px 12px 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.code-tab {
  padding: 5px 14px;
  border-radius: 8px 8px 0 0;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  border-bottom: none;
}

.code-tab:hover {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}

.code-tab-active {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.18);
  color: var(--cyan);
}

.code-body {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.code-gutter {
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  gap: 0;
  user-select: none;
}

.code-gutter span {
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.55;
  text-align: right;
  display: block;
  min-width: 20px;
}

.code-editor {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  padding: 14px 16px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(56, 189, 248, 0.9);
  caret-color: var(--cyan);
  min-height: 200px;
  tab-size: 2;
}

.code-statusbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Courier New", monospace;
  border-radius: 0 0 20px 20px;
}

.cloud-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}

.cloud-ring-wrap {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.cloud-ring-svg {
  width: 90px;
  height: 90px;
  transform: rotate(-90deg);
}

.cloud-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cloud-ring-used {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e0f7ff;
}

.cloud-ring-unit {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

.cloud-storage-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  color: #e0f7ff;
  margin-bottom: 4px;
}

.cloud-storage-total {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.cloud-bar-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 6px;
  width: 180px;
}

.cloud-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--deep), var(--cyan));
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.5);
}

.cloud-storage-sub {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
}

.cloud-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  margin: 16px 0 12px;
}

.cloud-section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cloud-files {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cloud-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.cloud-file:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.cloud-file-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cloud-file-info {
  flex: 1;
  min-width: 0;
}

.cloud-file-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cloud-file-meta {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.cloud-file-status {
  font-size: 0.75rem;
  color: #4ade80;
  flex-shrink: 0;
}

.cloud-syncing {
  color: var(--cyan);
  animation: spin 1.5s linear infinite;
  display: inline-block;
}

a.dock-icon,
a.start-app-item {
  text-decoration: none;
}

@media (max-width: 768px) {
  .icon-grid {
    width: 90vw;
    left: 5vw;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 12px;
  }
  .corner-widget {
    display: none;
  }
  .start-menu {
    width: 90vw;
    left: 5vw;
  }
  .start-btn-text {
    display: none;
  }
  .taskbar-dock {
    display: none;
  }
}

@media (max-width: 480px) {
  .taskbar {
    height: 52px;
  }
  .dock-icon {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
  .clock-time {
    font-size: 0.68rem;
  }
}
