* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  background: #000;
}

/* Boot Preloader (Before Login) */
#boot-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease;
}

#boot-loader.active {
  display: flex;
}

.boot-logo {
  margin-bottom: 60px;
  animation: fadeIn 1s ease;
}

.boot-logo img {
  width: 100px;
  height: 100px;
}

/* Post-Login Preloader */
#post-login-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#post-login-loader.active {
  display: flex;
  opacity: 1;
}

.post-login-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.user-avatar-loader {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 30px;
  background: white;
}

.user-avatar-loader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-text {
  font-size: 32px;
  color: white;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeIn 0.8s ease;
}

/* Windows Loader Animation */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.windows-loader {
  width: 40px;
  height: 40px;
  position: relative;
  animation: rotate 2s linear infinite;
}

.windows-loader::before,
.windows-loader::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
}

.windows-loader::before {
  top: 0;
  left: 0;
  animation: dot1 2s ease-in-out infinite;
}

.windows-loader::after {
  top: 0;
  right: 0;
  animation: dot2 2s ease-in-out infinite;
}

.windows-loader::before {
  box-shadow: 24px 24px 0 white, 0 24px 0 white;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dot1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes dot2 {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Login Screen */
#login-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

#login-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/background.jpg") center center / cover no-repeat;
  filter: blur(20px);
  z-index: -2;
}

#login-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

#login-screen.active {
  display: flex;
}

.login-time {
  font-size: 120px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}

.login-date {
  font-size: 28px;
  font-weight: 300;
  color: white;
  margin-bottom: 80px;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.5s ease;
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: white;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-name {
  font-size: 28px;
  color: white;
  margin-bottom: 10px;
  font-weight: 400;
}
.user-description {
  font-size: 20px;
  color: white;
  margin-bottom: 30px;
  font-weight: 400;
}

.sign-in-btn {
  padding: 12px 40px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sign-in-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Desktop */
.desktop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.desktop.active {
  opacity: 1;
  visibility: visible;
}

.wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/background.jpg") center center / cover no-repeat;
  z-index: 0;
}

/* Desktop Icons */
.desktop-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  grid-template-rows: repeat(auto-fill, minmax(100px, auto));
  grid-auto-flow: column;
  gap: 30px;
  z-index: 1;
  max-height: calc(100vh - 100px);
  grid-template-columns: repeat(auto-fit, 100px);
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
  border: 1px solid transparent;
  user-select: none;
}

.desktop-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.desktop-icon.selected {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.icon-image {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 8px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-image img {
  width: 100%;
  height: 100%;
}

.icon-label {
  font-size: 12px;
  color: white;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  max-width: 100px;
}

/* Taskbar */
.taskbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(50px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Weather Widget */
.taskbar-weather {
  position: absolute;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.taskbar-weather:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.weather-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.weather-icon svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  stroke: #fbbf24;
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

.weather-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.weather-temp {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.weather-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

.taskbar-left {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
}

.start-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  color: #0078d4;
  position: relative;
}

.start-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.start-btn img {
  width: 18px;
  height: 18px;
}

.taskbar-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  color: #ffffff;
}

.taskbar-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-icon img {
  width: 16px;
  height: 16px;
}

.taskbar-center {
  display: flex;
  gap: 2px;
  align-items: center;
}

.taskbar-app {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.1s ease;
  color: #ffffff;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
}

.taskbar-app::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 3px;
  background: #ffffff;
  border-radius: 1px;
  opacity: 0;
  transition: all 0.2s ease;
}

.taskbar-app:hover {
  background: rgba(255, 255, 255, 0.1);
}

.taskbar-app.active::after {
  opacity: 1;
}

.taskbar-right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

/* Music Player Widget */
.music-player-widget {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1;
}

.music-player-widget:hover {
  background: rgba(40, 40, 40, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.music-player-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.player-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.player-btn svg {
  width: 16px;
  height: 16px;
}

.player-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.player-btn-main {
  background: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
}

.player-btn-main svg {
  fill: #000;
  width: 18px;
  height: 18px;
}

.player-btn-main:hover {
  background: #fff;
  transform: scale(1.1);
}

.music-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
  max-width: 150px;
}

.music-title {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-artist {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-album-art {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.music-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotify-logo {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.spotify-logo svg {
  width: 12px;
  height: 12px;
}

.system-icons {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px;
}

.sys-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.sys-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  display: block;
}

.sys-icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.system-tray {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.1s ease;
  color: #ffffff;
  min-width: 80px;
  height: 100%;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.system-tray:hover {
  background: rgba(255, 255, 255, 0.1);
}

#taskbar-time {
  font-weight: 600;
}

#taskbar-date {
  font-weight: 400;
}

/* Start Menu */
.start-menu {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 700px;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(80px) saturate(180%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: bottom center;
  transform: translateX(-50%) scale(0.9) translateY(20px);
  z-index: 99;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.start-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scale(1) translateY(0);
  animation: startMenuOpen 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes startMenuOpen {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.85) translateY(30px);
  }
  50% {
    transform: translateX(-50%) scale(1.02) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
}

.start-menu-content {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Search Container */
.start-search-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.start-search-container:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 120, 212, 0.6);
}

.start-search-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 12px;
  flex-shrink: 0;
}

.start-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.start-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Start Sections */
.start-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 4px;
}

.start-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.start-more-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.start-more-btn svg {
  width: 14px;
  height: 14px;
}

/* Pinned Apps Grid */
.start-menu-apps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.start-menu-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.1s ease;
  border: 1px solid transparent;
}

.start-menu-app:hover {
  background: rgba(255, 255, 255, 0.08);
}

.start-menu-app:active {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(0.98);
}

.start-menu-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.start-menu-icon img {
  width: 100%;
  height: 100%;
  color: white;
}

.start-menu-label {
  font-size: 11px;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
  max-width: 80px;
  word-wrap: break-word;
}

/* Recommended Section */
.start-recommended {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recommended-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.1s ease;
}

.recommended-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.recommended-item:active {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(0.99);
}

.recommended-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  flex-shrink: 0;
}

.recommended-icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.recommended-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recommended-title {
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
}

.recommended-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

/* Start Footer */
.start-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.start-user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex: 1;
}

.start-user-profile:hover {
  background: rgba(255, 255, 255, 0.08);
}

.start-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.start-user-avatar svg {
  width: 20px;
  height: 20px;
  color: white;
}

.start-user-name {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

.start-footer-buttons {
  display: flex;
  gap: 8px;
}

.start-settings-btn,
.start-power-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.start-settings-btn:hover,
.start-power-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.start-settings-btn svg,
.start-power-btn svg {
  width: 18px;
  height: 18px;
}

/* Settings Modal */
.settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.settings-modal.active {
  opacity: 1;
  pointer-events: all;
}

.settings-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.settings-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(32, 32, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  min-width: 500px;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.settings-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.settings-modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.settings-modal-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.settings-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.settings-modal-close svg {
  width: 20px;
  height: 20px;
}

.settings-modal-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.os-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.os-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.os-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
}

.os-card-icon svg {
  width: 40px;
  height: 40px;
}

.os-card-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.os-card-content p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Windows */
.windows-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
  z-index: 10;
  pointer-events: none;
}

.window {
  position: absolute;
  background: rgba(32, 32, 32, 0.95);
  backdrop-filter: blur(30px);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 1080px;
  min-height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}

.window.maximized {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.window.minimizing {
  animation: windowMinimize 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes windowMinimize {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.3) translateY(calc(100vh - 100%));
  }
}

.window-header {
  height: 40px;
  background: rgba(40, 40, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  cursor: move;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-title {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-control-btn {
  width: 30px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.window-control-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.window-control-btn:active {
  transform: scale(0.95);
}

.window-control-btn.close:hover {
  background: #c42b1c;
  color: white;
}

.window-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  color: #ffffff;
}

/* Custom Scrollbar */
.window-content::-webkit-scrollbar,
.explorer-main::-webkit-scrollbar,
.explorer-sidebar::-webkit-scrollbar {
  width: 12px;
}

.window-content::-webkit-scrollbar-track,
.explorer-main::-webkit-scrollbar-track,
.explorer-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.window-content::-webkit-scrollbar-thumb,
.explorer-main::-webkit-scrollbar-thumb,
.explorer-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.3s ease;
}

.window-content::-webkit-scrollbar-thumb:hover,
.explorer-main::-webkit-scrollbar-thumb:hover,
.explorer-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
  background-clip: padding-box;
}

.window-content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.window-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #ffffff;
}

.window-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #cccccc;
}

.window-content ul {
  list-style: none;
  padding: 0;
}

.window-content li {
  padding: 8px 0;
  font-size: 14px;
  color: #cccccc;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.window {
  animation: windowOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes windowOpen {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    filter: blur(10px);
  }
  50% {
    opacity: 0.7;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.window.closing {
  animation: windowClose 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes windowClose {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  50% {
    opacity: 0.5;
    filter: blur(5px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    filter: blur(10px);
  }
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.skill-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.skill-name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.project-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.project-description {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}

/* Contact Section Redesign */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center;
}

.contact-subtitle {
  font-size: 16px;
  color: #999;
  text-align: center;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.contact-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-section:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.15);
}

.contact-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 120, 212, 0.3);
}

.section-title-icon {
  width: 24px;
  height: 24px;
  color: #0078d4;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0078d4, #106ebe);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 120, 212, 0.2);
  border-color: rgba(0, 120, 212, 0.3);
}

.contact-info-card:hover::before {
  transform: scaleY(1);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.email-icon {
  background: linear-gradient(135deg, #ea4335, #c5221f);
}

.phone-icon {
  background: linear-gradient(135deg, #34a853, #0f9d58);
}

.location-icon {
  background: linear-gradient(135deg, #4285f4, #0078d4);
}

.contact-info-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
  flex: 1;
}

.contact-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* Social Media Grid */
.social-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.social-card.linkedin::after {
  background: #0077b5;
}

.social-card.instagram::after {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-card.youtube::after {
  background: #ff0000;
}

.social-card.facebook::after {
  background: #1877f2;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-card:hover::after {
  transform: scaleX(1);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.linkedin .social-icon {
  background: linear-gradient(135deg, #0077b5, #005582);
}

.instagram .social-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.youtube .social-icon {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.facebook .social-icon {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-card:hover .social-icon {
  transform: scale(1.15) rotate(5deg);
}

.social-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.social-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Reference Section */
.reference-section {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.1),
    rgba(16, 110, 190, 0.05)
  );
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 120, 212, 0.2);
}

.reference-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reference-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d4, #00bcf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.reference-avatar svg {
  width: 48px;
  height: 48px;
  fill: white;
}

.reference-info {
  flex: 1;
}

.reference-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.reference-position {
  font-size: 16px;
  color: #0078d4;
  font-weight: 600;
  margin-bottom: 3px;
}

.reference-company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.reference-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reference-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reference-contact-item:hover {
  color: #0078d4;
  background: rgba(0, 120, 212, 0.1);
  transform: translateX(5px);
}

.reference-contact-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive Design for Contact Section */
@media screen and (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .contact-main-title {
    font-size: 28px;
  }
  .taskbar-weather {
    display: none;
  }
  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .contact-section {
    padding: 20px;
  }

  .contact-section-title {
    font-size: 20px;
  }

  .contact-info-card {
    padding: 15px;
  }

  .contact-card-icon {
    width: 45px;
    height: 45px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card-value {
    font-size: 14px;
  }

  .social-media-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    flex-direction: row;
    padding: 20px;
    justify-content: flex-start;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 15px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .reference-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .reference-contacts {
    width: 100%;
  }

  .reference-contact-item {
    justify-content: center;
  }
}

/* File Explorer Styles */
.explorer-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  background: rgba(25, 25, 25, 1);
  overflow: hidden;
}

.explorer-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(30, 30, 30, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.explorer-nav {
  display: flex;
  gap: 2px;
}

.nav-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
}

.nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn svg {
  width: 16px;
  height: 16px;
}

.explorer-address-bar {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.address-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.refresh-btn {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
}

.refresh-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.refresh-btn svg {
  width: 14px;
  height: 14px;
}

.explorer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 200px;
}

.explorer-search .search-icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.explorer-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.explorer-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.explorer-content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.explorer-sidebar {
  width: 200px;
  background: rgba(30, 30, 30, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 4px;
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 12px;
}

.sidebar-header {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.sidebar-item.active {
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.sidebar-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: #0078d4;
  border-radius: 0 2px 2px 0;
}

.sidebar-item img {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.explorer-main {
  flex: 1;
  overflow-y: auto;
  background: rgba(25, 25, 25, 1);
  position: relative;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.explorer-main.window-content {
  padding: 30px;
  animation: contentFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.file-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.file-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.file-item.folder svg {
  color: #fbbf24;
}

.file-item.file svg {
  color: #60a5fa;
}

.file-item span {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}

/* ============================================ */
/*           RESPONSIVE DESIGN                  */
/* ============================================ */

/* Tablet (Portrait) - 768px and below */
@media screen and (max-width: 768px) {
  /* Login Screen */
  .login-time {
    font-size: 80px;
  }

  .login-date {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .user-avatar {
    width: 100px;
    height: 100px;
  }

  .user-name {
    font-size: 22px;
  }
  .user-description {
    font-size: 18px;
  }

  /* Desktop Icons */
  .desktop-icons {
    grid-template-columns: repeat(auto-fill, 80px);
    gap: 20px;
    top: 15px;
    left: 15px;
  }

  .desktop-icon {
    padding: 8px;
  }

  .icon-image {
    width: 40px;
    height: 40px;
  }

  .icon-label {
    font-size: 11px;
    max-width: 80px;
  }

  /* Start Menu */
  .start-menu {
    width: 90vw;
    max-width: 500px;
    height: 600px;
  }

  .start-menu-content {
    padding: 24px;
  }

  .start-menu-apps {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Windows */
  .windows-container {
    left: 0;
  }

  .window {
    min-width: 100%;
    width: 100% !important;
    min-height: calc(100vh - 48px);
    height: calc(100vh - 48px) !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0;
  }

  .window-content {
    padding: 20px;
  }

  .window-content h1 {
    font-size: 26px;
  }

  .window-content h2 {
    font-size: 20px;
  }

  /* Skills Grid */
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
  }

  .skill-item {
    padding: 15px;
  }

  /* Explorer */
  .explorer-sidebar {
    width: 160px;
  }

  .explorer-search {
    width: 150px;
  }

  /* Taskbar */
  .taskbar {
    height: 48px;
  }
}

/* Mobile (Landscape) - 640px and below */
@media screen and (max-width: 640px) {
  /* Login Screen */
  .login-time {
    font-size: 60px;
  }

  .login-date {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .user-avatar {
    width: 80px;
    height: 80px;
  }

  .user-name {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .user-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .sign-in-btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  /* Desktop Icons */
  .desktop-icons {
    grid-template-columns: repeat(auto-fill, 70px);
    gap: 15px;
    top: 10px;
    left: 10px;
  }

  .icon-image {
    width: 36px;
    height: 36px;
  }

  .icon-label {
    font-size: 10px;
    max-width: 70px;
  }

  /* Taskbar */
  .taskbar-left {
    left: 5px;
    transform: none;
  }

  .start-btn {
    width: 36px;
    height: 36px;
  }

  .start-btn svg {
    width: 16px;
    height: 16px;
  }

  .taskbar-icon {
    width: 36px;
    height: 36px;
  }

  .taskbar-icon svg {
    width: 14px;
    height: 14px;
  }

  .taskbar-app {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }

  .taskbar-right {
    position: relative;
    margin-left: auto;
  }

  /* Music Player Responsive */
  .music-player-widget {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    gap: 8px;
  }

  .music-info {
    min-width: 80px;
    max-width: 100px;
  }

  .music-title {
    font-size: 11px;
  }

  .music-artist {
    font-size: 9px;
  }

  .music-album-art {
    width: 38px;
    height: 38px;
  }

  .player-btn {
    width: 28px;
    height: 28px;
  }

  .player-btn svg {
    width: 14px;
    height: 14px;
  }

  .player-btn-main {
    width: 32px;
    height: 32px;
  }

  .player-btn-main svg {
    width: 16px;
    height: 16px;
  }

  .system-icons {
    display: none;
  }

  .system-tray {
    min-width: 60px;
    font-size: 10px;
    padding: 4px 8px;
  }

  /* Start Menu */
  .start-menu {
    width: 95vw;
    height: 85vh;
    max-height: 600px;
  }

  .start-menu-content {
    padding: 16px;
    gap: 16px;
  }

  .start-menu-apps {
    grid-template-columns: repeat(3, 1fr);
  }

  .start-menu-icon {
    width: 32px;
    height: 32px;
  }

  .start-menu-label {
    font-size: 10px;
  }

  .start-section-header {
    font-size: 12px;
  }

  .recommended-item {
    padding: 10px;
  }

  .recommended-icon {
    width: 28px;
    height: 28px;
  }

  .recommended-title {
    font-size: 12px;
  }

  .recommended-subtitle {
    font-size: 10px;
  }

  /* Windows */
  .window-header {
    height: 36px;
    padding: 0 12px;
  }

  .window-title {
    font-size: 12px;
  }

  .window-control-btn {
    width: 28px;
    height: 30px;
    font-size: 11px;
  }

  .window-content {
    padding: 15px;
  }

  .window-content h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .window-content h2 {
    font-size: 18px;
    margin: 20px 0 12px;
  }

  .window-content p,
  .window-content li {
    font-size: 13px;
  }

  /* Skills Grid */
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 10px;
  }

  .skill-item {
    padding: 12px;
  }

  .skill-name {
    font-size: 12px;
  }

  /* Projects Grid */
  .project-card {
    padding: 15px;
  }

  .project-title {
    font-size: 16px;
  }

  .project-description {
    font-size: 13px;
  }

  /* Contact Links */
  .contact-link {
    padding: 12px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .contact-text {
    font-size: 13px;
  }

  /* Explorer */
  .explorer-sidebar {
    display: none;
  }

  .explorer-toolbar {
    flex-wrap: wrap;
    padding: 6px;
    gap: 6px;
  }

  .explorer-address-bar {
    order: 3;
    width: 100%;
    margin-top: 4px;
  }

  .explorer-search {
    width: 120px;
    padding: 4px 8px;
  }

  .nav-btn {
    width: 28px;
    height: 28px;
  }

  .refresh-btn {
    width: 24px;
    height: 24px;
  }
}

/* Mobile (Portrait) - 480px and below */
@media screen and (max-width: 480px) {
  /* Login Screen */
  .login-time {
    font-size: 48px;
  }

  .login-date {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* Desktop Icons */
  .desktop-icons {
    grid-template-columns: repeat(auto-fill, 65px);
    gap: 12px;
  }

  /* Taskbar */
  .taskbar {
    height: 44px;
  }

  .start-btn,
  .taskbar-icon,
  .taskbar-app {
    width: 32px;
    height: 32px;
  }

  .system-tray {
    min-width: 50px;
    font-size: 9px;
    padding: 2px 6px;
  }

  /* Music Player Small Screens */
  .music-player-widget {
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    gap: 6px;
  }

  .music-info {
    display: none;
  }

  .music-album-art {
    width: 32px;
    height: 32px;
  }

  .player-btn {
    width: 24px;
    height: 24px;
  }

  .player-btn svg {
    width: 12px;
    height: 12px;
  }

  .player-btn-main {
    width: 28px;
    height: 28px;
  }

  .player-btn-main svg {
    width: 14px;
    height: 14px;
  }

  /* Start Menu */
  .start-menu {
    width: 100vw;
    height: 90vh;
    bottom: 44px;
    border-radius: 8px 8px 0 0;
  }

  .start-menu-apps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .start-menu-app {
    padding: 10px 6px;
  }

  .start-user-profile {
    gap: 8px;
  }

  .start-user-avatar {
    width: 28px;
    height: 28px;
  }

  .start-user-name {
    font-size: 12px;
  }

  .start-power-btn {
    width: 36px;
    height: 36px;
  }

  /* Windows */
  .window {
    height: calc(100vh - 44px) !important;
    min-height: calc(100vh - 44px);
  }

  .window-content h1 {
    font-size: 20px;
  }

  .window-content h2 {
    font-size: 16px;
  }

  /* Skills Grid */
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Explorer */
  .explorer-search {
    display: none;
  }

  .address-input {
    font-size: 12px;
  }
}

/* Very Small Mobile - 360px and below */
@media screen and (max-width: 360px) {
  .login-time {
    font-size: 36px;
  }

  .desktop-icons {
    grid-template-columns: repeat(auto-fill, 60px);
    gap: 10px;
  }

  .icon-image {
    width: 32px;
    height: 32px;
  }

  .start-menu-apps {
    grid-template-columns: repeat(3, 1fr);
  }

  .window-content {
    padding: 12px;
  }

  .window-content h1 {
    font-size: 18px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .login-time {
    font-size: 40px;
  }

  .login-date {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .user-avatar {
    width: 60px;
    height: 60px;
  }

  .user-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .user-description {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .start-menu {
    height: 85vh;
  }

  .window-content {
    padding: 15px;
  }
}

/* Experience Section Styles - Modern Redesign */
.experience-modern-container {
  max-width: 1100px;
  margin: 0 auto;
}

.experience-header-section {
  text-align: center;
  margin-bottom: 50px;
}

.experience-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.experience-subtitle {
  font-size: 16px;
  color: #999;
}

.company-showcase {
  margin-bottom: 50px;
}

.company-card {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.15),
    rgba(16, 110, 190, 0.08)
  );
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(0, 120, 212, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 120, 212, 0.25);
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.company-logo-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.company-logo-modern {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
}

.company-details {
  flex: 1;
}

.company-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.company-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.meta-item svg {
  width: 18px;
  height: 18px;
  fill: #0078d4;
}

.positions-timeline-modern {
  position: relative;
  padding-left: 60px;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0078d4, rgba(0, 120, 212, 0.3));
}

.position-card-modern {
  position: relative;
  margin-bottom: 50px;
}

.position-card-modern:last-child {
  margin-bottom: 0;
}

.position-badge-wrapper {
  position: absolute;
  left: -48px;
  top: 8px;
}

.position-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(25, 25, 25, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-badge.current {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  animation: pulse-glow 2s infinite;
}

.position-badge.previous {
  background: linear-gradient(135deg, #0078d4, #106ebe);
}

.position-badge svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4),
      0 0 20px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.6),
      0 0 30px rgba(245, 158, 11, 0.4);
  }
}

.position-details-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-card-modern:hover .position-details-modern {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 120, 212, 0.3);
  transform: translateX(10px);
  box-shadow: 0 8px 32px rgba(0, 120, 212, 0.2);
}

.position-card-modern:hover .position-badge {
  transform: rotate(10deg) scale(1.1);
}

.position-header-modern {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.position-role {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.position-period {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.current-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.position-description-modern {
  margin-top: 20px;
}

.responsibilities-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.responsibilities-list-modern li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.responsibilities-list-modern li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 120, 212, 0.3);
  transform: translateX(5px);
}

.responsibility-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.2),
    rgba(16, 110, 190, 0.1)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.responsibilities-list-modern li:hover .responsibility-icon {
  background: linear-gradient(135deg, #0078d4, #106ebe);
  transform: scale(1.1) rotate(5deg);
}

.responsibility-icon svg {
  width: 22px;
  height: 22px;
  fill: #0078d4;
  transition: fill 0.3s ease;
}

.responsibilities-list-modern li:hover .responsibility-icon svg {
  fill: white;
}

.responsibilities-list-modern li span {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

/* Responsive adjustments for modern experience section */
@media screen and (max-width: 768px) {
  .experience-main-title {
    font-size: 28px;
  }

  .experience-subtitle {
    font-size: 14px;
  }

  .company-card {
    padding: 25px;
  }

  .company-brand {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .company-logo-wrapper {
    width: 80px;
    height: 80px;
  }

  .company-title {
    font-size: 24px;
  }

  .company-meta {
    justify-content: center;
    gap: 15px;
  }

  .meta-item {
    font-size: 13px;
  }

  .positions-timeline-modern {
    padding-left: 50px;
  }

  .timeline-line {
    left: 20px;
    width: 2px;
  }

  .position-badge-wrapper {
    left: -42px;
  }

  .position-badge {
    width: 40px;
    height: 40px;
    border-width: 3px;
  }

  .position-badge svg {
    width: 20px;
    height: 20px;
  }

  .position-details-modern {
    padding: 20px;
  }

  .position-role {
    font-size: 20px;
  }

  .position-period {
    font-size: 13px;
  }

  .responsibilities-list-modern li {
    padding: 12px;
  }

  .responsibility-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .responsibility-icon svg {
    width: 18px;
    height: 18px;
  }

  .responsibilities-list-modern li span {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .company-card {
    padding: 20px;
  }

  .company-title {
    font-size: 20px;
  }

  .company-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .positions-timeline-modern {
    padding-left: 40px;
  }

  .timeline-line {
    left: 16px;
  }

  .position-badge-wrapper {
    left: -36px;
  }

  .position-badge {
    width: 32px;
    height: 32px;
  }

  .position-badge svg {
    width: 16px;
    height: 16px;
  }

  .position-details-modern {
    padding: 15px;
  }

  .position-role {
    font-size: 18px;
  }

  .responsibilities-list-modern li {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .responsibility-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}

/* About Section Styles - Dark Theme */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}



.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: floatOrb 10s ease-in-out infinite;
}

.about-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00d9ff, transparent);
  top: -200px;
  left: -150px;
  animation-delay: 0s;
}

.about-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #7b61ff, transparent);
  top: 50%;
  right: -150px;
  animation-delay: 3s;
}

.about-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff3366, transparent);
  bottom: -150px;
  left: 50%;
  animation-delay: 6s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.about-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: rgba(20, 20, 20, 0.6);
  border-radius: 32px;
  margin-bottom: 50px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.about-hero:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 24px 48px rgba(0, 217, 255, 0.15);
}

.about-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.image-glow-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d9ff, #7b61ff, #ff3366);
  opacity: 0.3;
  filter: blur(20px);
  animation: rotateGlow 6s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.status-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.95);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 16px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-text {
  color: #10b981;
}

.about-intro {
  flex: 1;
}

.intro-label {
  display: inline-block;
  color: #00d9ff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-name {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #00d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1.1;
}

.about-title {
  font-size: 28px;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 12px;
}

.about-subtitle {
  font-size: 18px;
  color: #a0a0a0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0, 217, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.badge:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: #00d9ff;
  transform: translateY(-2px);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.about-section {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 4px solid #00d9ff;
  position: relative;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.15);
}

.section-header-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

.section-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: -1px;
}

.section-content {
  font-size: 17px;
  line-height: 1.8;
  color: #b0b0b0 !important;
  padding-left: 64px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.about-card {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.about-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 97, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 217, 255, 0.2);
  border-color: rgba(0, 217, 255, 0.3);
}

.about-card:hover .about-card-glow {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.3);
  position: relative;
  z-index: 1;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.card-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 24px;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.education-item {
  padding-bottom: 0;
  border-bottom: none;
}

.education-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.3), rgba(123, 97, 255, 0.3));
  margin: 8px 0;
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.education-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  flex: 1;
}

.institution {
  font-size: 15px;
  color: #a0a0a0 !important;
  margin-bottom: 10px;
}

.duration {
  font-size: 14px;
  color: #00d9ff !important;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.duration svg {
  opacity: 0.7;
}

.grade-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

.language-item {
  margin-bottom: 20px;
}

.language-item:last-child {
  margin-bottom: 0;
}

.language-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.language-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.language-level {
  font-size: 14px;
  color: #00d9ff;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d9ff, #7b61ff);
  border-radius: 10px;
  transition: width 0.6s ease;
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.5);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsive adjustments for about section */
@media screen and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .about-container {
    padding: 60px 16px;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
  }

  .about-image {
    width: 180px;
    height: 180px;
  }

  .about-name {
    font-size: 40px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-badges {
    justify-content: center;
  }

  .about-section {
    padding: 28px;
  }

  .section-header-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-content {
    font-size: 15px;
    padding-left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-card {
    padding: 28px;
  }

  .card-title {
    font-size: 22px;
  }

  .education-item h4 {
    font-size: 18px;
  }

  .about-orb {
    filter: blur(70px);
  }
}


/* Projects Section Styles - Dark Theme */
.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
}

.projects-header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  z-index: 1;
}

.projects-header-content {
  position: relative;
  z-index: 2;
}

.projects-label {
  display: inline-block;
  color: #00d9ff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  background: rgba(0, 217, 255, 0.1);
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.projects-main-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d9ff 0%, #7b61ff 50%, #ff3366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1.1;
}

.projects-subtitle {
  color: #a0a0a0;
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decoration-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00d9ff, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #7b61ff, transparent);
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.projects-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.project-card-modern {
  background: rgba(20, 20, 20, 0.6);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(123, 97, 255, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.project-card-modern:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 32px 64px rgba(0, 217, 255, 0.2),
              0 0 80px rgba(0, 217, 255, 0.1);
}

.project-card-modern:hover .project-glow {
  opacity: 1;
}

.project-card-modern.featured {
  grid-column: span 2;
  background: rgba(30, 30, 30, 0.7);
}

.project-card-modern.featured .project-image-wrapper {
  height: 400px;
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.8) contrast(1.1);
}

.project-card-modern:hover .project-image {
  transform: scale(1.1);
  filter: brightness(1) contrast(1.2);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
}

.featured-badge {
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
  backdrop-filter: blur(10px);
}

.featured-badge svg {
  width: 16px;
  height: 16px;
}

.project-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.project-title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.project-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-link svg {
  width: 20px;
  height: 20px;
  color: #00d9ff;
  transition: all 0.3s ease;
}

.project-link:hover {
  background: linear-gradient(135deg, #00d9ff, #7b61ff);
  border-color: transparent;
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 12px 24px rgba(0, 217, 255, 0.4);
}

.project-link:hover svg {
  color: white;
  transform: scale(1.1);
}

.project-category {
  color: #00d9ff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  display: inline-block;
}

.project-description {
  color: #b0b0b0 !important;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.project-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.tech-tag {
  background: rgba(0, 217, 255, 0.08);
  color: #00d9ff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.tech-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  box-shadow: 0 0 8px currentColor;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(123, 97, 255, 0.2));
  border-color: #00d9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

/* Responsive adjustments for projects section */
@media screen and (max-width: 1024px) {
  .projects-main-title {
    font-size: 48px;
  }

  .projects-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .project-card-modern.featured {
    grid-column: span 1;
  }

  .project-card-modern.featured .project-image-wrapper {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .projects-container {
    padding: 60px 16px;
  }

  .projects-header {
    margin-bottom: 60px;
  }

  .projects-main-title {
    font-size: 40px;
  }

  .projects-subtitle {
    font-size: 16px;
  }

  .projects-grid-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card-modern.featured {
    grid-column: span 1;
  }

  .project-name {
    font-size: 22px !important;
  }

  .project-category {
    font-size: 11px !important;
  }

  .project-description {
    font-size: 14px !important;
  }

  .tech-tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .decoration-orb {
    filter: blur(60px);
  }
}

/* Skills Section Redesign */
.skills-container {
  max-width: 1200px;
  margin: 0 auto;
}

.skills-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-align: center;
}

.skills-subtitle {
  font-size: 16px;
  color: #999;
  text-align: center;
  margin-bottom: 50px;
}

.skills-section {
  margin-bottom: 50px;
}

.skills-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 120, 212, 0.3);
}

.section-header-icon {
  width: 28px;
  height: 28px;
  color: #0078d4;
}

.skills-section-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Technical Skills Grid */
.skills-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.tech-skill-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0078d4, #106ebe);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-skill-card:hover::before {
  transform: scaleX(1);
}

.tech-skill-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.2);
  border-color: rgba(0, 120, 212, 0.3);
}

.tech-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.tech-skill-card:hover .tech-icon img {
  transform: scale(1.1) rotateY(10deg);
}

.tech-skill-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.tech-skill-level {
  margin-top: 10px;
}

.level-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.level-fill {
  height: 100%;
  background: linear-gradient(90deg, #0078d4, #00bcf2);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 120, 212, 0.5);
}

/* Professional Skills Grid */
.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.soft-skill-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.soft-skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0078d4, #106ebe);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.soft-skill-card:hover::before {
  transform: scaleY(1);
}

.soft-skill-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(0, 120, 212, 0.15);
  border-color: rgba(0, 120, 212, 0.3);
}

.soft-skill-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0078d4, #00bcf2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.soft-skill-card:hover .soft-skill-icon {
  transform: rotate(5deg) scale(1.05);
}

.soft-skill-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.soft-skill-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.soft-skill-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

/* Skills Highlights */
.skills-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.highlight-card {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.1),
    rgba(16, 110, 190, 0.05)
  );
  border: 1px solid rgba(0, 120, 212, 0.2);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0078d4, #00bcf2);
}

.highlight-card:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.15),
    rgba(16, 110, 190, 0.08)
  );
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 120, 212, 0.25);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0078d4, #00bcf2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(5deg);
}

.highlight-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.highlight-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0078d4;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
}

/* Responsive Design for Skills Section */
@media screen and (max-width: 768px) {
  .skills-main-title {
    font-size: 28px;
  }

  .skills-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .skills-section-header h2 {
    font-size: 22px;
  }

  .skills-tech-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px;
  }

  .tech-skill-card {
    padding: 20px 12px;
  }

  .tech-icon {
    width: 48px;
    height: 48px;
  }

  .tech-skill-name {
    font-size: 13px;
  }

  .soft-skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .soft-skill-card {
    padding: 25px;
  }

  .skills-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .skills-tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tech-skill-card {
    padding: 15px 10px;
  }

  .tech-icon {
    width: 40px;
    height: 40px;
  }

  .tech-skill-name {
    font-size: 12px;
  }

  .settings-modal-content {
    min-width: 90%;
    max-width: 90%;
    padding: 20px;
  }

  .settings-modal-header h2 {
    font-size: 18px;
  }

  .settings-modal-body {
    grid-template-columns: 1fr;
  }

  .os-card {
    padding: 20px;
  }

  .os-card-icon {
    width: 56px;
    height: 56px;
  }

  .os-card-icon svg {
    width: 32px;
    height: 32px;
  }

  .os-card-content h3 {
    font-size: 16px;
  }

  .os-card-content p {
    font-size: 12px;
  }
}

/* System Tray Panel */
.system-tray-panel {
  position: fixed;
  bottom: 60px;
  right: 10px;
  width: 360px;
  background: rgba(32, 32, 32, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  animation: trayPanelSlideIn 0.2s ease-out;
  overflow: hidden;
}

.system-tray-panel.active {
  display: block;
}

@keyframes trayPanelSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tray-panel-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(40, 40, 40, 0.5);
}

.tray-panel-time {
  font-size: 48px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: 'Segoe UI Variable Display', 'Segoe UI', sans-serif;
}

.tray-panel-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.tray-panel-calendar {
  padding: 16px 16px 8px 16px;
}

.tray-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tray-calendar-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.tray-calendar-nav {
  display: flex;
  gap: 4px;
}

.tray-calendar-nav-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease;
  padding: 0;
}

.tray-calendar-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.tray-calendar-nav-btn svg {
  width: 16px;
  height: 16px;
}

.tray-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.tray-calendar-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 0;
}

.tray-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.tray-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.1s ease;
  position: relative;
  font-weight: 400;
}

.tray-calendar-day:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tray-calendar-day.other-month {
  color: rgba(255, 255, 255, 0.3);
}

.tray-calendar-day.today {
  background: #0078d4;
  color: #ffffff;
  font-weight: 600;
}

.tray-calendar-day.today:hover {
  background: #1084d8;
}

.tray-calendar-day.selected {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: -2px;
}

.tray-panel-footer {
  padding: 8px 16px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tray-panel-agenda-btn {
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
}

.tray-panel-agenda-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Custom Context Menu */
.context-menu {
  position: fixed;
  background: rgba(32, 32, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: none;
  animation: contextMenuFadeIn 0.15s ease-out;
}

.context-menu.active {
  display: block;
}

@keyframes contextMenuFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.context-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
  user-select: none;
}

.context-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.context-menu-item:active {
  background: rgba(255, 255, 255, 0.15);
}

.context-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.context-arrow {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.6;
}

.context-menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 8px;
}

/* Icon sort animation */
@keyframes iconSortAnimation {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
