//This is the very aura css

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background-image: url(./background.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0066cc, #0099ff);
  box-shadow: 0 4px 15px rgba(0, 100, 200, 0.2);
  z-index: 1000;
}

.topbar-left {
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.topbar-left:hover {
  transform: scale(1.05);
}

.topbar-right {
  color: white;
  font-size: 14px;
  font-family: 'Courier New', monospace;
}

.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 900;
}

.taskbar-items {
  display: flex;
  gap: 10px;
}

.taskbar-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.taskbar-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.sidebar {
  position: fixed;
  top: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 500;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 100, 200, 0.3);
}

.app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-icon:hover {
  transform: scale(1.1);
}

.app-icon:active {
  transform: scale(0.95);
}

.window {
  position: absolute;
  width: 380px;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 2px solid rgba(100, 200, 255, 0.4);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 60px rgba(0, 150, 200, 0.25);
  z-index: 999;
}

.window.minimized {
  display: none !important;
}

#welcome {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

#projectsapp {
  top: 150px;
  left: 100px;
  width: 500px;
  display: none;
}

#calculatorapp {
  top: 200px;
  left: 150px;
  width: 320px;
  display: none;
}

#browserapp {
  top: 250px;
  left: 200px;
  width: 700px;
  height: 500px;
  display: none;
}

.windowheader {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px 13px 0 0;
  background: linear-gradient(90deg, #0066cc, #0099ff);
  color: white;
  cursor: grab;
  user-select: none;
}

.windowheader:active {
  cursor: grabbing;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.headertext {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.control-btn {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.close-btn {
  background: #FF5F56;
}

.close-btn:hover {
  background: #FF3B30;
}

.minimize-btn {
  background: #FFBD2E;
}

.minimize-btn:hover {
  background: #FFA500;
}

.maximize-btn {
  background: #27C93F;
}

.maximize-btn:hover {
  background: #00D441;
}

.window-content {
  flex: 1;
  padding: 20px;
  text-align: center;
  overflow-y: auto;
  max-height: calc(100% - 50px);
}

h1 {
  color: #0066cc;
  font-size: 42px;
  margin-bottom: 8px;
}

h2 {
  color: #0099ff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.robot-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #4db8ff, #0099ff);
}

.robot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-button {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 100, 200, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.divider {
  height: 1px;
  margin: 20px 0;
  background: linear-gradient(90deg, transparent, #0099ff, transparent);
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.project-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 150, 200, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: grab;
}

.project-card:active {
  cursor: grabbing;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.project-icon {
  min-width: 50px;
  font-size: 40px;
  text-align: center;
}

.project-info {
  flex: 1;
  text-align: left;
}

.project-title {
  color: #0066cc;
  font-size: 16px;
  margin-bottom: 8px;
}

.project-summary {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.project-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.project-btn:hover {
  transform: translateY(-2px);
}

.calc-display {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: right;
  border: 1px solid rgba(0, 150, 200, 0.3);
  border-radius: 8px;
  background: rgba(0, 100, 200, 0.05);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.calc-btn {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.calc-btn:hover {
  background: #e0e0e0;
}

.calc-op {
  background: #0099ff;
  color: white;
}

.calc-equals {
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
}

.calc-clear {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #FF6B6B;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.browser-content {
  display: flex;
  flex-direction: column;
}

.browser-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.browser-input {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(0, 150, 200, 0.3);
  border-radius: 6px;
  font-size: 14px;
}

.browser-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.browser-frame {
  flex: 1;
  min-height: 400px;
  border: 1px solid rgba(0, 150, 200, 0.3);
  border-radius: 8px;
  background: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.modal-box {
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(0, 150, 200, 0.3);
  background: white;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-box h4 {
  color: #0066cc;
  font-size: 24px;
  margin-bottom: 15px;
}

.modal-box h5 {
  color: #0099ff;
  font-size: 16px;
  margin: 15px 0 10px;
}

.modal-box p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #333;
}

.modal-box ul {
  margin: 0 0 15px 20px;
}

.modal-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

.modal-close {
  width: 100%;
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

#notesapp {
  top: 180px;
  left: 250px;
  width: 340px;
  height: 380px;
  display: none;
}

.notes-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px;
}

.notes-textarea {
  flex: 1;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 150, 200, 0.3);
  border-radius: 8px;
  resize: none;
  font-family: inherit;
  font-size: 14px;
  color: #333;
}

.notes-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.notes-status {
  font-size: 12px;
  color: #999;
}

.notes-clear {
  padding: 6px 16px;
  border: none;
  border-radius: 6px;
  background: #FF6B6B;
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

#musicapp {
  top: 220px;
  left: 300px;
  width: 300px;
  display: none;
}

.music-content {
  padding: 20px;
  text-align: center;
}

.album-art {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, #4db8ff, #0099ff);
}

.track-title {
  color: #333;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.progress-bar,
.volume-bar {
  width: 100%;
  margin-bottom: 8px;
  accent-color: #0099ff;
}

.music-times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #999;
  margin-bottom: 15px;
}

.music-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.music-btn {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #0066cc;
}

.music-play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0099ff, #0066cc);
  color: white;
  font-size: 18px;
}

#weatherapp {
  top: 180px;
  left: 350px;
  width: 340px;
  display: none;
}

.weather-content {
  padding: 15px;
}

.weather-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.weather-result {
  text-align: center;
}

.weather-placeholder {
  color: #999;
  font-size: 13px;
}

.weather-city {
  color: #0066cc;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.weather-temp {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.weather-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.weather-details {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(0, 150, 200, 0.2);
  padding-top: 12px;
  font-size: 12px;
  color: #666;
}

#settingsapp {
  top: 220px;
  left: 400px;
  width: 320px;
  display: none;
}

.settings-content {
  padding: 20px;
  text-align: left;
}

.settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 150, 200, 0.15);
  color: #333;
  font-size: 14px;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.2s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.2s;
}

.switch input:checked + .slider {
  background: #0099ff;
}

.switch input:checked + .slider::before {
  transform: translateX(18px);
}
//you found a egg wow ()
body.dark-mode {
  filter: brightness(0.85);
}

body.dark-mode .window {
  background: rgba(30, 30, 35, 0.97);
}

body.dark-mode .window-content,
body.dark-mode .notes-textarea,
body.dark-mode .weather-city,
body.dark-mode .weather-temp,
body.dark-mode .settings-row,
body.dark-mode .track-title {
  color: #eee;
}

body.dark-mode .project-card,
body.dark-mode .calc-display,
body.dark-mode .modal-box {
  background: rgba(50, 50, 55, 0.9);
  color: #eee;
}
