
/* General vibe */
body {
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
  font-family: "Comic Neue", "Comic Sans MS", cursive, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.screen {
  padding: 20px;
  text-align: center;
}

.title {
  font-family: "Fredoka One", cursive;
  font-size: 2.4rem;
  color: #ff69b4;
  text-shadow: 2px 2px #fff;
  margin-bottom: 30px;
}

/* Desktop Icons */
.desktop {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.icon {
  display: inline-block;
  width: 80px;
  padding: 10px;
  background: #fff;
  border: 2px dashed #ffb6c1;
  border-radius: 12px;
  box-shadow: 2px 2px 6px rgba(255,182,193,0.4);
  text-decoration: none;
  color: #444;
  font-size: 13px;
  font-family: "Comic Neue", "Comic Sans MS", cursive;
  text-align: center;
  transition: transform 0.2s ease, background 0.3s ease;
}

.icon:hover {
  transform: scale(1.1) rotate(-2deg);
  background: #fff0f5;
}

/* Windows */
.window {
  background: #fff;
  border: 3px solid #ffb6c1;
  border-radius: 16px;
  padding: 15px;
  margin: 20px auto;
  max-width: 400px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  animation: popIn 0.4s ease;
}

.window-header {
  background: #ffb6c1;
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px 12px 0 0;
  font-family: "Fredoka One", cursive;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  cursor: pointer;
  font-size: 0.9rem;
  background: #fff;
  color: #ff69b4;
  border-radius: 50%;
  padding: 2px 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.close:hover {
  background: #ffe6f0;
}

/* Cute animation for windows */
@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
