:root {
  --main-pastel-pink-3adbc377: #f9ccd9;
  --accent-lilac-3adbc377: #e8dbfc;
  --bg-gradient-soft-3adbc377: linear-gradient(135deg, #fff5f7 0%, #f9f0ff 100%);
  --shadow-color-3adbc377: rgba(249, 204, 217, 0.4);
}

.laptop-widget-wrapper-3adbc377 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: var(--bg-gradient-soft-3adbc377);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.laptop-container-3adbc377 {
  position: relative;
  width: 100%;
  max-width: 700px;
  perspective: 1500px;
}

/* 3D Laptop Framework */
.laptop-3d-box-3adbc377 {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Outer Screen Frame */
.screen-outer-frame-3adbc377 {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: var(--main-pastel-pink-3adbc377);
  border-radius: 20px 20px 4px 4px;
  padding: 14px 14px 20px 14px;
  box-shadow: 
    0 15px 35px rgba(249, 137, 169, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
  position: relative;
  transform: rotateX(4deg);
  z-index: 2;
  border: 3px solid rgba(255, 255, 255, 0.45);
}

.screen-glass-3adbc377 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffeef4 0%, #faf3ff 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 20px rgba(249, 204, 217, 0.2);
}

/* Digital Workspace */
.screen-workspace-3adbc377 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.workspace-grid-3adbc377 {
  position: absolute;
  inset: 0;
  background-size: 20px 20px;
  background-image: 
    linear-gradient(to right, rgba(249, 204, 217, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(249, 204, 217, 0.15) 1px, transparent 1px);
  opacity: 0.8;
}

.workspace-brand-badge-3adbc377 {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px dashed var(--main-pastel-pink-3adbc377);
  box-shadow: 0 4px 15px rgba(249, 204, 217, 0.2);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: #c46487;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.minimalist-browser-bar-3adbc377 {
  position: absolute;
  top: 10px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 9px;
  font-family: monospace;
  color: #bfa5af;
}

.dot-3adbc377 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.pink-dot-3adbc377 { background-color: var(--main-pastel-pink-3adbc377); }
.white-dot-3adbc377 { background-color: #fff; }
.lilac-dot-3adbc377 { background-color: var(--accent-lilac-3adbc377); }

/* Laptop Keyboard Base Frame */
.laptop-base-frame-3adbc377 {
  width: 108%;
  height: 24px;
  background: var(--main-pastel-pink-3adbc377);
  border-radius: 4px 4px 18px 18px;
  transform: rotateX(55deg) translateZ(-5px);
  transform-origin: top center;
  position: relative;
  z-index: 10;
  box-shadow: 
    0 25px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 3px rgba(255, 255, 255, 0.8),
    inset 0 -4px 8px rgba(0, 0, 0, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.keyboard-well-3adbc377 {
  width: 85%;
  height: 55%;
  background: rgba(255, 255, 255, 0.4);
  margin: 4px auto 0 auto;
  border-radius: 4px;
  padding: 2px;
}

.key-grid-placeholder-3adbc377 {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.key-row-3adbc377 {
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  opacity: 0.9;
}

.trackpad-3adbc377 {
  width: 20%;
  height: 20%;
  background: rgba(255, 255, 255, 0.5);
  margin: 2px auto 0 auto;
  border-radius: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Overlapping Portrait Layer */
.photo-overlap-3adbc377 {
  position: absolute;
  top: -45%;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  z-index: 6;
  pointer-events: none;
}

.photo-container-3adbc377 {
  position: relative;
  width: 100%;
}

.main-portrait-3adbc377 {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  filter: drop-shadow(0 20px 30px rgba(181, 126, 143, 0.35));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* Scrapbook Floating Elements */
.sparkle-3adbc377 {
  position: absolute;
  font-size: 28px;
  user-select: none;
  z-index: 8;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

.sparkle-top-left-3adbc377 {
  top: -15px;
  left: -25px;
}

.sparkle-top-right-3adbc377 {
  top: -25px;
  right: -20px;
  font-size: 32px;
}

.sparkle-mid-left-3adbc377 {
  bottom: 25%;
  left: -40px;
  font-size: 22px;
}

.sticker-note-3adbc377 {
  position: absolute;
  bottom: -40px;
  right: -30px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #7b636c;
  font-family: sans-serif;
  transform: rotate(6deg);
  box-shadow: 0 8px 20px rgba(249, 204, 217, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 12;
}

/* Animations and Hover Micro-interactions */
.has-animations-3adbc377 .laptop-container-3adbc377 {
  animation: gentleFloat3adbc377 6s ease-in-out infinite;
}

.has-animations-3adbc377 .sparkle-top-left-3adbc377 {
  animation: heartbeat3adbc377 3s infinite alternate;
}

.has-animations-3adbc377 .sparkle-top-right-3adbc377 {
  animation: heartbeat3adbc377 4s infinite alternate-reverse;
}

.laptop-widget-wrapper-3adbc377:hover .laptop-3d-box-3adbc377 {
  transform: rotateX(1deg) rotateY(1deg);
}

@keyframes gentleFloat3adbc377 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heartbeat3adbc377 {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

/* Responsiveness Settings */
@media (max-width: 768px) {
  .laptop-widget-wrapper-3adbc377 {
    padding: 60px 15px;
  }
  .sticker-note-3adbc377 {
    right: -10px;
    bottom: -30px;
  }
  .sparkle-mid-left-3adbc377 {
    left: -15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-animations-3adbc377 .laptop-container-3adbc377,
  .has-animations-3adbc377 .sparkle-top-left-3adbc377,
  .has-animations-3adbc377 .sparkle-top-right-3adbc377 {
    animation: none !important;
  }
}
