body {
  margin: 0;
  padding: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 175, 189, 1),
      rgba(100, 216, 255, 1)
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 207, 160, 0.8),
      rgba(130, 219, 210, 0.8)
    );
  background-blend-mode: overlay;
  background-size: cover;
  background-attachment: fixed;
  color: rgba(0, 0, 0, 0.9);
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.desktop {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 100%;
  overflow: hidden;
}

.window {
  width: 90%;
  max-width: 20rem;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(220, 220, 220, 0.7);
  cursor: grab;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .window {
    width: 25vw;
  }
}

.window:active {
  cursor: grabbing;
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: linear-gradient(
    to bottom,
    rgba(240, 240, 240, 0.9),
    rgba(220, 220, 220, 0.9)
  );
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.7);
  backdrop-filter: blur(10px);
}

.controls {
  display: flex;
  gap: 0.5rem;
}

.controls button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
}

.close-btn {
  background-color: rgba(255, 95, 87, 1);
}

.minimize-btn {
  background-color: rgba(255, 189, 76, 1);
}

.fullscreen-btn {
  background-color: rgba(39, 201, 63, 1);
}

.window-content {
  padding: 1rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.8);
}

.dock {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.dock-icons {
  display: flex;
  gap: 1.5rem;
}

.icon {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .icon {
    width: 64px;
    height: 64px;
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
}

footer p a {
  color: rgba(0, 0, 0, 0.8);
  text-decoration: none;
}

footer p a:hover {
  color: rgba(0, 0, 0, 1);
}

footer p {
  position: relative;
  margin: 0.5rem 0;
}

footer p.hidden-message {
  filter: blur(5px);
  transition: filter 0.3s ease;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  display: inline-block;
}

footer p.hidden-message:hover {
  filter: blur(0);
}
