* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.desktop {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)), 
              url('https://i.pinimg.com/1200x/d9/ca/af/d9caafe6c2997389c11912fbc65fd0ac.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px 25px;
}

/* Status Bar Layout */
.status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
}

.status-left span {
  margin-right: 12px;
}

.status-right i {
  margin-left: 10px;
}

/* 3x2 Grid Container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 90%;
  max-width: 1100px;
  height: 75vh;
  margin: 0 auto;
}

/* Glassmorphism Cards */
.card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card {
  font-family: serif;
  letter-spacing: 2px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d1c7bd;
}

.status-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://i.pinimg.com/736x/6d/f0/41/6df041d5e34faf40eb569acb94c5a5f6.jpg') center/cover no-repeat;
}

#interactive-quote {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  font-style: italic;
}

.circle-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Music Player Widget */
.music-widget {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.album-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.pinimg.com/1200x/18/b3/72/18b37250327e3a6ade8d1c32129ea59f.jpg') center/cover no-repeat;
  opacity: 0.45;
  z-index: 1;
}

.music-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.music-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #1db954;
}

.music-info .song-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.music-info .artist {
  font-size: 0.85rem;
  color: #aaa;
}

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.08);
}

/* Search Widget */
.search-widget {
  grid-column: 2 / 3;
  justify-content: center;
}

.search-bar {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
}

/* Photo Card */
.photo-card {
  background: url('https://i.pinimg.com/736x/c9/ce/68/c9ce684e752c49783c9c6dc2932acd96.jpg') center/cover;
}

/* Bottom Dock */
.dock-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.dock {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
}

.dock-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dock-icon:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
}

/* Draggable Windows */
.app-window {
  position: absolute;
  top: 20%;
  left: 30%;
  width: 380px;
  min-height: 240px;
  background: rgba(20, 20, 25, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.window-header {
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.dot-close {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ff5f56;
  cursor: pointer;
}

.window-body {
  padding: 15px;
  flex: 1;
  color: #ddd;
  font-size: 0.9rem;
}

.window-body textarea {
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  padding: 10px;
  outline: none;
  resize: none;
}