* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mobile-breakpoint: 768px;
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ==================== BOOT SCREEN ==================== */
.boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0078d4;
  background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.boot-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.boot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.boot-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: bootFadeIn 0.8s ease forwards;
}

.boot-emoji {
  font-size: 80px;
  animation: bootPulse 2s ease-in-out infinite;
}

.boot-logo-text {
  display: flex;
  flex-direction: column;
}

.boot-name {
  font-size: 48px;
  font-weight: 300;
  color: white;
  letter-spacing: 2px;
  line-height: 1.1;
}

.boot-name:first-child {
  font-weight: 600;
}

.boot-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.boot-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: bootSpin 1s linear infinite;
}

.boot-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 1px;
  animation: bootTextPulse 1.5s ease-in-out infinite;
}

.boot-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.boot-version {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
}

@keyframes bootFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bootPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bootSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bootTextPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}

body {
  font-family:
    "Segoe UI",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* ==================== MOBILE STATUS BAR ==================== */
.mobile-status-bar {
  display: none !important;
}

/* ==================== DESKTOP ==================== */
.desktop {
  height: calc(100vh - 48px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  align-content: start;
}

/* ==================== ICONS ==================== */
.icon {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
  position: relative;
}

.icon.dragging {
  opacity: 0.5;
}
.icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img img {
  width: 48px;
  height: 48px;
  display: block;
}

.icon-label {
  color: white;
  font-size: 11px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  word-wrap: break-word;
}

/* ==================== MOBILE APP GRID ==================== */
.mobile-app-grid {
  display: none;
}

.mobile-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-app:active .mobile-app-icon {
  transform: scale(0.9);
}

.mobile-app-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease;
}

.mobile-app-icon img {
  width: 32px;
  height: 32px;
}

.mobile-app-label {
  color: white;
  font-size: 11px;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  max-width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile App Icon Gradients */
.gradient-pink {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
}
.gradient-blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-yellow {
  background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%);
}
.gradient-green {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.gradient-orange {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.gradient-brown {
  background: linear-gradient(135deg, #8e6b3d 0%, #6b4423 100%);
}
.gradient-red {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}
.gradient-purple {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}
.gradient-instagram {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.gradient-cyan {
  background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
}
.gradient-teal {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.gradient-gray {
  background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
}
.gradient-blue-light {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Mobile Page Indicator */
.mobile-page-indicator {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.page-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.page-dot.active {
  background: white;
  width: 20px;
  border-radius: 4px;
}

/* ==================== MOBILE DOCK ==================== */
.mobile-dock {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 28px;
  gap: 20px;
  z-index: 900;
}

.mobile-dock-app {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-dock-app:active .mobile-dock-icon {
  transform: scale(0.85);
}

.mobile-dock-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease;
}

/* Mobile Home Indicator */
.mobile-home-indicator {
  display: none;
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 134px;
  height: 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  z-index: 9999;
  cursor: pointer;
}

/* ==================== TASKBAR ==================== */
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 0 8px;
  z-index: 1000;
}

.start-btn {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: white;
  border-radius: 4px;
  transition: background 0.2s;
}

.start-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-apps {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  flex: 1;
}

.taskbar-app {
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  color: white;
  font-size: 14px;
}

.taskbar-app:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-app.active {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid #4a9eff;
}

.system-tray {
  display: flex;
  gap: 12px;
  align-items: center;
  color: white;
  font-size: 13px;
  margin-left: auto;
  padding: 0 12px;
}

/* ==================== START MENU ==================== */
.start-menu {
  position: fixed;
  bottom: 58px;
  left: 8px;
  width: 320px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(40px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  z-index: 999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.start-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.start-menu-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-pic-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.start-menu-name {
  color: white;
  font-size: 14px;
  font-weight: 600;
}
.start-menu-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.start-menu-items {
  padding: 8px;
}

.start-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.start-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.menu-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

/* ==================== WINDOWS ==================== */
.window {
  position: fixed;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  min-width: 400px;
  min-height: 300px;
  z-index: 100;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.window.active {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.window.maximized {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: calc(100vh - 48px) !important;
  border-radius: 0;
}

.window-header {
  height: 48px;
  background: #f3f3f3;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: move;
  border-bottom: 1px solid #ddd;
  flex-shrink: 0;
}

.window.maximized .window-header {
  border-radius: 0;
}
.window-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}
.window-controls {
  display: flex;
  gap: 4px;
}

.window-btn {
  width: 52px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  font-size: 18px;
  color: #555;
}

.window-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.window-btn.close:hover {
  background: #e81123;
  color: white;
}

.window-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==================== EXPLORER ==================== */
#projects .window-content {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  background: #fff;
}

.explorer-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 16px;
  flex-shrink: 0;
}

.explorer-path {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  font-size: 13px;
}

.path-icon {
  font-size: 16px;
}
.path-text {
  color: #333;
}

.explorer-content {
  padding: 24px 20px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  overflow-y: auto;
  flex: 1;
}

.folder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
  height: 110px;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.folder-item:hover {
  background: rgba(0, 120, 212, 0.08);
  border-color: rgba(0, 120, 212, 0.3);
}

.folder-icon {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 8px;
}
.folder-label {
  font-size: 12px;
  text-align: center;
  color: #333;
  line-height: 1.3;
}

/* ==================== CONTENT STYLES ==================== */
.profile-header {
  text-align: center;
  margin-bottom: 30px;
}
.profile-header p {
  color: #888;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
}

.profile-pic img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #333;
}
h2 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: #555;
}
p {
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}

/* ==================== SKILLS ==================== */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.skill-tag {
  background: #667eea;
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ==================== CONTACT ==================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    background 0.15s,
    transform 0.15s;
}

.contact-item:hover {
  background: rgba(102, 126, 234, 0.08);
  transform: translateX(4px);
}

.contact-item span:first-child {
  font-size: 24px;
}

.contact-item a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-item a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* ==================== MEDIA GRIDS ==================== */
.media-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}

.media-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.media-icon {
  font-size: 32px;
}
.media-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.spotify-grid,
.bookshelf-grid,
.filmshelf-grid {
  display: grid;
  grid-template-columns: repeat(4, 120px);
  gap: 16px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

/* Spotify specific styles */
.spotify-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.spotify-track-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.spotify-track-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.spotify-track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotify-track-info {
  width: 120px;
  text-align: center;
}

.spotify-track-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.spotify-track-artist {
  font-size: 11px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.media-link:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.spotify-link {
  background: #1db954;
  color: white;
}

.spotify-link:hover {
  background: #1ed760;
}

.goodreads-link {
  background: #553b08;
  color: white;
}

.goodreads-link:hover {
  background: #704d0f;
}

.letterboxd-link {
  background: #00d735;
  color: white;
}

.letterboxd-link:hover {
  background: #00ff3e;
}

.link-arrow {
  font-size: 16px;
}

.bookshelf,
.filmshelf {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book-cover,
.film-poster {
  width: 120px;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}

.book-cover:hover,
.film-poster:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.book-cover img,
.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==================== TERMINAL ==================== */
.terminal-header {
  background: #1e1e1e !important;
  border-bottom: 1px solid #333 !important;
}

.terminal-header .window-title {
  color: #ccc;
}
.terminal-header .window-btn {
  color: #999;
}
.terminal-header .window-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.terminal-header .window-btn.close:hover {
  background: #e81123;
  color: white;
}

.terminal-content {
  background: #0c0c0c;
  padding: 16px !important;
  font-family: "Cascadia Code", "Fira Code", "Consolas", monospace;
  font-size: 14px;
  color: #cccccc;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 10px;
}
.terminal-line {
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-prompt {
  color: #4ec9b0;
  margin-right: 8px;
}
.terminal-cmd {
  color: #569cd6;
}

.terminal-input-line {
  display: flex;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 12px;
  margin-top: auto;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #cccccc;
  font-family: inherit;
  font-size: inherit;
  caret-color: #4ec9b0;
}

/* ==================== GAMES ==================== */
.game-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.game-score,
.game-high-score {
  background: #f0f0f0;
  padding: 8px 16px;
  border-radius: 20px;
}

.game-btn {
  margin-top: 15px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.game-instructions {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

#snakeCanvas {
  background: #1a1a2e;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Game Controls */
.mobile-game-controls {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.mobile-control-row {
  display: flex;
  gap: 60px;
}

.mobile-control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid #667eea;
  color: #667eea;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-control-btn:active {
  background: #667eea;
  color: white;
  transform: scale(0.95);
}

/* Tic Tac Toe */
.game-status {
  font-size: 18px;
  font-weight: 600;
  color: #667eea;
}

.ttt-board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-template-rows: repeat(3, 100px);
  gap: 8px;
  margin: 20px 0;
}

.ttt-cell {
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
}

.ttt-cell:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}
.ttt-cell.x {
  color: #667eea;
}
.ttt-cell.o {
  color: #e74c3c;
}

.ttt-cell.winner {
  background: linear-gradient(135deg, #667eea22 0%, #764ba222 100%);
  animation: winPulse 0.5s ease-in-out;
}

@keyframes winPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.ttt-score {
  display: flex;
  gap: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

.ttt-score span {
  background: #f0f0f0;
  padding: 8px 16px;
  border-radius: 20px;
}

/* ==================== TIMELINE ==================== */
.timeline-container {
  padding: 20px;
}

.timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.timeline-icon {
  font-size: 32px;
}
.timeline-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 0;
  width: 15px;
  height: 15px;
  background: #667eea;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #667eea;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  background: #764ba2;
  box-shadow: 0 0 0 3px #764ba2;
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-content {
  background: #f8f9fa;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid #667eea;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.timeline-item:hover .timeline-content {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}
.timeline-company {
  font-size: 14px;
  color: #667eea;
  margin: 0 0 8px 0;
  font-weight: 500;
}
.timeline-description {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ==================== CALENDAR ==================== */
.datetime-wrapper {
  position: relative;
}

.time {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.time:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-popup {
  position: absolute;
  bottom: 45px;
  right: 0;
  width: 300px;
  background: rgba(30, 30, 30, 0.98);
  backdrop-filter: blur(40px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  padding: 16px;
  display: none;
  z-index: 1001;
  animation: calendarSlideUp 0.2s ease;
}

.calendar-popup.active {
  display: block;
}

@keyframes calendarSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month-year {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.calendar-nav {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.calendar-day:hover {
  background: rgba(255, 255, 255, 0.1);
}
.calendar-day.other-month {
  color: rgba(255, 255, 255, 0.3);
}
.calendar-day.today {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-weight: 600;
}
.calendar-day.today:hover {
  background: linear-gradient(135deg, #7b8eec 0%, #8a5db3 100%);
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.toast.show {
  opacity: 1;
}

/* ==================== CALCULATOR ==================== */
.calculator {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f0f0f0;
  padding: 8px;
  gap: 8px;
}

.calc-display {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 12px 16px;
  text-align: right;
  font-size: 32px;
  font-family: "Segoe UI", sans-serif;
  font-weight: 300;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.calc-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  flex: 1;
}

.calc-btn {
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-family: "Segoe UI", sans-serif;
  cursor: pointer;
  transition:
    background 0.1s,
    transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.calc-btn:active {
  transform: scale(0.95);
}
.calc-btn.number {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}
.calc-btn.number:hover {
  background: #e6e6e6;
}
.calc-btn.operator {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}
.calc-btn.operator:hover {
  background: #e0e0e0;
}
.calc-btn.function {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}
.calc-btn.function:hover {
  background: #e0e0e0;
}
.calc-btn.equals {
  background: #667eea;
  color: #fff;
  border: none;
}
.calc-btn.equals:hover {
  background: #5a6fd6;
}
.calc-btn.zero {
  grid-column: span 2;
}

/* ==================== JOURNAL ==================== */
.journal-content {
  padding: 0 !important;
}
.journal-container {
  padding: 24px;
}

.journal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.journal-icon {
  font-size: 32px;
}
.journal-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.journal-entries {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.journal-entry {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #667eea;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.journal-entry:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  background: #f0f4ff;
}

.journal-entry-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.journal-entry-content {
  flex: 1;
  min-width: 0;
}
.journal-entry-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}
.journal-entry-date {
  font-size: 12px;
  color: #667eea;
  font-weight: 500;
  margin-bottom: 8px;
}

.journal-entry-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.journal-entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.journal-tag {
  font-size: 11px;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Journal Post Styles */
.journal-post {
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.journal-post-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e5e5;
}

.journal-post-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.journal-post-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #667eea;
  font-weight: 500;
}

.journal-post-date {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.journal-post-date::before {
  content: "📅";
  font-size: 14px;
}

.journal-post-body {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.journal-post-body p {
  margin-bottom: 16px;
}

.journal-post-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 32px 0 16px 0;
}

.journal-post-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 24px 0 12px 0;
}

.journal-post-body ul,
.journal-post-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.journal-post-body li {
  margin-bottom: 8px;
}

.journal-post-body a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.3);
  transition: border-color 0.2s;
}

.journal-post-body a:hover {
  border-bottom-color: #667eea;
}

.journal-post-body blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  font-style: italic;
  color: #555;
}

.journal-post-body code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Consolas", "Monaco", monospace;
  font-size: 0.9em;
}

.journal-post-body pre {
  background: #f4f4f4;
  padding: 16px;
  border-radius: 6px;
  overflow-x: auto;
  margin: 16px 0;
}

.journal-post-body pre code {
  background: none;
  padding: 0;
}

.journal-post-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.journal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.journal-back-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journal-back-btn:active {
  transform: translateY(0);
}

.journal-back-btn::before {
  content: "←";
  font-size: 16px;
}

/* ==================== CHROME ==================== */
.chrome-header {
  background: #dee1e6 !important;
  border-radius: 8px 8px 0 0;
}

/* ==================== PROJECT GALLERY ==================== */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.project-gallery-item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-gallery-item::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.project-gallery-item:hover::after {
  opacity: 1;
}

/* Image Viewer Window */
.image-viewer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #1a1a1a;
  height: 100%;
}

.image-viewer-content img {
  max-width: 100%;
  max-height: calc(100% - 60px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.image-viewer-caption {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.image-viewer-controls {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.image-viewer-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

.image-viewer-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==================== CHROME ==================== */
.chrome-header {
  background: #dee1e6 !important;
  border-radius: 8px 8px 0 0;
}
.chrome-header .window-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chrome-header .window-title img {
  width: 18px;
  height: 18px;
}

.chrome-tabs {
  display: flex;
  align-items: center;
  background: #dee1e6;
  padding: 8px 12px 0 12px;
  gap: 4px;
}

.chrome-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
  font-size: 13px;
  color: #333;
  max-width: 200px;
}

.chrome-tab-icon {
  width: 16px;
  height: 16px;
}
.chrome-tab-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chrome-tab-close {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  padding: 2px;
  border-radius: 50%;
  line-height: 1;
}
.chrome-tab-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.chrome-new-tab {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  border-radius: 50%;
}

.chrome-new-tab:hover {
  background: rgba(0, 0, 0, 0.1);
}

.chrome-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #dee1e6;
}

.chrome-nav-btns {
  display: flex;
  gap: 4px;
}

.chrome-nav-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: #444;
  transition: background 0.2s;
}

.chrome-nav-btn:hover {
  background: #f1f3f4;
}
.chrome-nav-btn.disabled {
  color: #bbb;
  cursor: default;
}
.chrome-nav-btn.disabled:hover {
  background: transparent;
}

.chrome-address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f1f3f4;
  border-radius: 24px;
  padding: 8px 16px;
  gap: 8px;
}

.chrome-lock-icon {
  font-size: 14px;
  color: #666;
}
.chrome-url {
  flex: 1;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chrome-content {
  flex: 1;
  background: #fff;
  overflow: hidden;
}
.chrome-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== WALLPAPERS ==================== */
.wallpapers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  padding: 20px;
}

.wallpaper-item {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  aspect-ratio: 16/10;
}

.wallpaper-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wallpaper-item.active {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}
.wallpaper-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .taskbar {
    display: none !important;
  }

  .mobile-status-bar {
    display: none !important;
  }

  .mobile-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .mobile-page-indicator {
    display: none;
  }

  .mobile-dock {
    display: none !important;
  }
  .mobile-home-indicator {
    display: none !important;
  }

  .desktop {
    height: 100vh;
    height: 100dvh;
    padding: 0;
    padding-bottom: 20px;
    overflow-y: auto;
    display: block;
  }

  .window {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius: 0 !important;
    z-index: 500 !important;
  }

  .window.active {
    animation: mobileWindowOpen 0.3s ease;
  }

  @keyframes mobileWindowOpen {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .window-header {
    height: 56px;
    padding: 0 12px;
    cursor: default;
    border-radius: 0;
    padding-top: var(--safe-area-top);
  }

  .window-controls {
    gap: 0;
  }
  .window-btn {
    width: 44px;
    height: 44px;
    display: none;
  }
  .window-btn.close {
    display: flex !important;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
  }

  .window-content {
    padding: 16px;
    padding-bottom: calc(16px + var(--safe-area-bottom));
  }

  .explorer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .folder-item {
    height: auto;
    padding: 12px 8px;
  }
  .folder-icon {
    font-size: 48px;
  }

  .spotify-grid,
  .bookshelf-grid,
  .filmshelf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    padding: 0 16px;
  }

  .book-cover,
  .film-poster {
    width: 100%;
    height: auto;
    aspect-ratio: 2/3;
  }

  .timeline-container {
    padding: 16px;
  }
  .timeline {
    padding-left: 24px;
  }
  .timeline-dot {
    left: -24px;
    width: 12px;
    height: 12px;
  }
  .timeline-content {
    padding: 12px 16px;
  }

  #snakeCanvas {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
    aspect-ratio: 1;
  }

  .mobile-game-controls {
    display: flex;
  }
  .game-instructions {
    display: none;
  }

  .ttt-board {
    grid-template-columns: repeat(3, 80px);
    grid-template-rows: repeat(3, 80px);
    gap: 6px;
  }

  .ttt-cell {
    font-size: 36px;
  }

  .terminal-content {
    font-size: 12px;
    padding: 12px !important;
  }
  .terminal-prompt {
    font-size: 11px;
  }

  .calculator {
    padding: 12px;
  }
  .calc-display {
    font-size: 28px;
    padding: 16px;
  }
  .calc-btn {
    min-height: 56px;
    font-size: 20px;
  }

  .toast {
    bottom: 120px;
    left: 16px;
    right: 16px;
    transform: none;
    text-align: center;
  }

  .profile-pic,
  .profile-pic img {
    width: 100px;
    height: 100px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
  }
  .skills {
    gap: 6px;
  }
  .skill-tag {
    padding: 4px 10px;
    font-size: 12px;
  }
  .journal-container {
    padding: 16px;
  }
  .journal-entry {
    flex-direction: column;
    gap: 8px;
  }
  .boot-emoji {
    font-size: 60px;
  }
  .boot-name {
    font-size: 36px;
  }
}

@media screen and (max-width: 375px) {
  .mobile-app-grid {
    gap: 20px 12px;
    padding: 16px;
    max-width: 280px;
  }
  .mobile-app-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
  .mobile-app-label {
    font-size: 10px;
  }
  .mobile-dock {
    padding: 10px 16px;
    gap: 16px;
  }
  .mobile-dock-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .mobile-app-grid {
    grid-template-columns: repeat(6, 1fr);
    padding-top: 50px;
    max-width: 100%;
  }
  .mobile-dock {
    bottom: 10px;
  }
  .mobile-home-indicator {
    bottom: 4px;
  }
  .window-content {
    padding: 12px;
  }
}
/* ==================== CALENDAR TODAY BUTTON ==================== */

.calendar-today {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
}

.calendar-today-btn {
  background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 120, 212, 0.3);
}

.calendar-today-btn:hover {
  background: linear-gradient(135deg, #1084e8 0%, #1a7fd4 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 120, 212, 0.4);
}

.calendar-today-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 120, 212, 0.3);
}
