.desktop {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1d29 0%, #2d3748 50%, #1a202c 100%);
  overflow: hidden;
  will-change: auto;
}

.backgroundLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  will-change: auto;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.4);
  will-change: transform, opacity;
}

.desktopContent {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 60px 40px 80px;
}

.iconsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.welcomeMessage {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #e1e5f2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  padding: 0 20px;
}

.welcomeMessage h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcomeMessage p {
  font-size: 1.1rem;
  margin: 5px 0;
  opacity: 0.9;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .desktopContent {
    padding: 80px 20px 100px;
  }

  .iconsGrid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    max-width: 100%;
  }

  .welcomeMessage {
    bottom: 140px;
  }

  .welcomeMessage h1 {
    font-size: 1.8rem;
  }

  .welcomeMessage p {
    font-size: 1rem;
  }

  .particle {
    width: 2px;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .iconsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .welcomeMessage h1 {
    font-size: 1.5rem;
  }

  .welcomeMessage p {
    font-size: 0.9rem;
  }
}
