 /* Global Styles */
 :root {
     --primary: #00f7ff;
     --secondary: #7700ff;
     --accent: #ff00c8;
     --dark: #0a0a16;
     --darker: #050510;
     --text: #ffffff;
     --terminal-text: #00ff41;
     --glow-intensity: 1;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 body {
     background: linear-gradient(125deg, var(--darker) 0%, var(--dark) 70%);
     color: var(--text);
     height: 100vh;
     overflow: hidden;
     position: relative;
 }

 /* Hologrid Background */
 .hologrid {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background:
         linear-gradient(rgba(0, 247, 255, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 247, 255, 0.05) 1px, transparent 1px);
     background-size: 30px 30px;
     z-index: -1;
     animation: gridMove 20s linear infinite;
 }

 @keyframes gridMove {
     0% {
         background-position: 0 0;
     }

     100% {
         background-position: 30px 30px;
     }
 }

 /* Particle Effects */
 .particles {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
 }

 .particle {
     position: absolute;
     background: var(--primary);
     border-radius: 50%;
     opacity: 0.3;
     animation: float 15s infinite linear;
 }

 @keyframes float {
     0% {
         transform: translateY(0) translateX(0);
         opacity: 0;
     }

     25% {
         opacity: 0.3;
     }

     50% {
         opacity: 0.6;
     }

     75% {
         opacity: 0.3;
     }

     100% {
         transform: translateY(-100vh) translateX(100vw);
         opacity: 0;
     }
 }

 /* Taskbar */
 .taskbar {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 50px;
     background: rgba(10, 10, 22, 0.8);
     backdrop-filter: blur(10px);
     display: flex;
     align-items: center;
     padding: 0 20px;
     border-top: 1px solid var(--primary);
     box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
     z-index: 1000;
 }

 .taskbar-apps {
     display: flex;
     gap: 15px;
 }

 .taskbar-app {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 8px;
     background: rgba(0, 247, 255, 0.1);
     cursor: pointer;
     transition: all 0.3s ease;
     border: 1px solid transparent;
 }

 .taskbar-app:hover,
 .taskbar-app.active {
     background: rgba(0, 247, 255, 0.2);
     border: 1px solid var(--primary);
     box-shadow: 0 0 10px var(--primary);
 }

 .taskbar-app i {
     font-size: 18px;
     color: var(--primary);
 }

 .clock {
     margin-left: auto;
     font-family: 'Orbitron', monospace;
     font-size: 14px;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
 }

 /* Desktop */
 .desktop {
     height: calc(100vh - 50px);
     padding: 20px;
     display: grid;
     grid-template-columns: repeat(auto-fill, 80px);
     grid-template-rows: repeat(auto-fill, 80px);
     gap: 20px;
     align-content: start;
 }

 .desktop.drag-over {
    background-color: rgba(0, 247, 255, 0.05);
    border: 1px dashed var(--primary);
 }

 .desktop-icon {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 80px;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 8px;
     padding: 10px 5px;
 }

 .desktop-icon.moved {
    position: absolute;
 }

 .desktop-icon.free-floating {
    position: absolute;
 }

 .desktop-icon:hover {
     background: rgba(0, 247, 255, 0.1);
     transform: translateY(-5px);
 }

 .desktop-icon i {
     font-size: 30px;
     color: var(--primary);
     margin-bottom: 5px;
     text-shadow: 0 0 10px var(--primary);
 }

 .desktop-icon span {
     font-size: 12px;
     text-align: center;
     color: var(--text);
     text-shadow: 0 0 5px var(--primary);
 }

 .desktop-icon.dragging {
    opacity: 0.5;
    background: rgba(0, 247, 255, 0.2);
 }

 /* Windows */
 .window {
     position: absolute;
     background: rgba(10, 10, 22, 0.7);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     border: 1px solid var(--primary);
     box-shadow: 0 0 20px rgba(0, 247, 255, 0.3),
         inset 0 0 20px rgba(0, 247, 255, 0.1);
     overflow: hidden;
     min-width: 400px;
     min-height: 300px;
     display: none;
     flex-direction: column;
     z-index: 100;
     transition: all 0.3s ease;
 }

 .window-header {
     padding: 12px 15px;
     background: rgba(0, 247, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid var(--primary);
     cursor: move;
 }

 .window-title {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     font-weight: 600;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
 }

 .window-title i {
     font-size: 16px;
 }

 .window-controls {
     display: flex;
     gap: 10px;
 }

 .window-control {
     width: 25px;
     height: 25px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .window-close {
     background: rgba(255, 0, 85, 0.3);
     border: 1px solid #ff0055;
 }

 .window-close:hover {
     background: rgba(255, 0, 85, 0.5);
     box-shadow: 0 0 8px #ff0055;
 }

 .window-maximize {
     background: rgba(0, 247, 255, 0.3);
     border: 1px solid var(--primary);
 }

 .window-maximize:hover {
     background: rgba(0, 247, 255, 0.5);
     box-shadow: 0 0 8px var(--primary);
 }

 .window-minimize {
     background: rgba(255, 255, 0, 0.3);
     border: 1px solid yellow;
 }

 .window-minimize:hover {
     background: rgba(255, 255, 0, 0.5);
     box-shadow: 0 0 8px yellow;
 }

 .window-content {
     flex: 1;
     padding: 15px;
     overflow: auto;
 }

 /* Terminal */
 #terminal-window {
     width: 600px;
     height: 400px;
     top: 100px;
     left: 100px;
 }

 .terminal {
     background: rgba(5, 5, 16, 0.9);
     height: 100%;
     border: 1px solid var(--primary);
     border-radius: 8px;
     padding: 15px;
     font-family: 'Courier New', monospace;
     overflow-y: auto;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.3);
 }

 .terminal-line {
     margin-bottom: 8px;
     line-height: 1.4;
 }

 .terminal-prompt {
     color: var(--terminal-text);
     text-shadow: 0 0 5px var(--terminal-text);
     margin-right: 8px;
 }

 .terminal-input {
     display: flex;
     align-items: center;
 }

 .terminal-input input {
     background: transparent;
     border: none;
     outline: none;
     color: var(--terminal-text);
     font-family: 'Courier New', monospace;
     font-size: 14px;
     width: calc(100% - 20px);
     text-shadow: 0 0 5px var(--terminal-text);
     caret-color: var(--terminal-text);
 }

 .terminal-cursor {
     display: inline-block;
     width: 8px;
     height: 16px;
     background: var(--terminal-text);
     animation: blink 1s infinite;
     margin-left: 2px;
     box-shadow: 0 0 5px var(--terminal-text);
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0;
     }
 }

 /* Calculator */
 #calculator-window {
     width: 320px;
     height: 450px;
     top: 150px;
     left: 250px;
 }

 .calculator {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: auto repeat(5, 1fr);
     gap: 8px;
     height: 100%;
 }

 .calculator-display {
     grid-column: 1 / span 4;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 8px;
     padding: 15px;
     text-align: right;
     font-family: 'Orbitron', monospace;
     font-size: 24px;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
     margin-bottom: 10px;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
     overflow: hidden;
     white-space: nowrap;
 }

 .calculator-btn {
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     border-radius: 8px;
     color: var(--text);
     font-size: 18px;
     cursor: pointer;
     transition: all 0.2s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
 }

 .calculator-btn:hover {
     background: rgba(0, 247, 255, 0.2);
     box-shadow: 0 0 10px var(--primary);
 }

 .calculator-btn.operator {
     background: rgba(119, 0, 255, 0.2);
     border: 1px solid var(--secondary);
 }

 .calculator-btn.operator:hover {
     background: rgba(119, 0, 255, 0.3);
     box-shadow: 0 0 10px var(--secondary);
 }

 .calculator-btn.equals {
     background: rgba(255, 0, 200, 0.2);
     border: 1px solid var(--accent);
 }

 .calculator-btn.equals:hover {
     background: rgba(255, 0, 200, 0.3);
     box-shadow: 0 0 10px var(--accent);
 }

 /* Media Player */
 #mediaplayer-window {
     width: 500px;
     height: 400px;
     top: 200px;
     left: 400px;
 }

 .mediaplayer {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .mediaplayer-display {
     flex: 1;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 8px;
     margin-bottom: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     position: relative;
 }

 .visualizer {
     width: 100%;
     height: 100%;
     display: flex;
     align-items: flex-end;
     justify-content: space-around;
     padding: 0 10px;
 }

 .visualizer-bar {
     width: 12px;
     background: var(--primary);
     border-radius: 4px 4px 0 0;
     box-shadow: 0 0 10px var(--primary);
     transition: height 0.1s ease;
 }

 .mediaplayer-controls {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .mediaplayer-btn {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
     box-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
 }

 .mediaplayer-btn:hover {
     background: rgba(0, 247, 255, 0.2);
     box-shadow: 0 0 10px var(--primary);
 }

 .mediaplayer-btn i {
     color: var(--primary);
     font-size: 18px;
 }

 /* Browser */
 #browser-window {
     width: 700px;
     height: 500px;
     top: 100px;
     left: 500px;
 }

 .browser-nav {
     display: flex;
     gap: 10px;
     margin-bottom: 15px;
 }

 .browser-btn {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .browser-btn:hover {
     background: rgba(0, 247, 255, 0.2);
     box-shadow: 0 0 10px var(--primary);
 }

 .browser-btn i {
     color: var(--primary);
     font-size: 14px;
 }

 .browser-url {
     flex: 1;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 20px;
     padding: 0 15px;
     color: var(--text);
     font-size: 14px;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
 }

 .browser-content {
     flex: 1;
     height: 1000px;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 25px;
     overflow: hidden;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
 }

 .browser-iframe {
     width: 100%;
     height: 100%;
     border: none;
     background: white;
 }

 /* Dashboard */
 #dashboard-window {
     width: 600px;
     height: 500px;
     top: 150px;
     left: 200px;
 }

 .dashboard {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-template-rows: repeat(2, 1fr);
     gap: 15px;
     height: 100%;
 }

 .dashboard-widget {
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 12px;
     padding: 15px;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
     display: flex;
     flex-direction: column;
 }

 .widget-header {
     display: flex;
     align-items: center;
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: 1px solid rgba(0, 247, 255, 0.3);
 }

 .widget-header i {
     color: var(--primary);
     font-size: 18px;
     margin-right: 10px;
     text-shadow: 0 0 5px var(--primary);
 }

 .widget-header h3 {
     font-size: 14px;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
 }

 .widget-content {
     flex: 1;
 }

 .system-stats {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .stat {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .stat-label {
     font-size: 12px;
     color: var(--text);
     width: 60px;
 }

 .stat-bar {
     flex: 1;
     height: 8px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 4px;
     overflow: hidden;
 }

 .stat-value {
     height: 100%;
     border-radius: 4px;
     box-shadow: 0 0 5px var(--primary);
 }

 .cpu-value {
     background: var(--primary);
     width: 65%;
 }

 .ram-value {
     background: var(--secondary);
     width: 45%;
 }

 .storage-value {
     background: var(--accent);
     width: 78%;
 }

 .weather-info {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .weather-temp {
     font-size: 32px;
     color: var(--primary);
     text-shadow: 0 0 10px var(--primary);
 }

 .weather-desc {
     font-size: 14px;
     color: var(--text);
 }

 .todo-list {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .todo-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 8px;
     background: rgba(0, 247, 255, 0.05);
     border-radius: 6px;
     transition: all 0.2s ease;
 }

 .todo-item:hover {
     background: rgba(0, 247, 255, 0.1);
 }

 .todo-item input[type="checkbox"] {
     appearance: none;
     -webkit-appearance: none;
     width: 18px;
     height: 18px;
     border: 1px solid var(--primary);
     border-radius: 4px;
     background: transparent;
     position: relative;
     cursor: pointer;
 }

 .todo-item input[type="checkbox"]:checked {
     background: rgba(0, 247, 255, 0.2);
 }

 .todo-item input[type="checkbox"]:checked::after {
     content: '✓';
     position: absolute;
     color: var(--primary);
     font-size: 12px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .todo-item label {
     font-size: 14px;
     color: var(--text);
     flex: 1;
     cursor: pointer;
 }

 .todo-item input[type="checkbox"]:checked+label {
     text-decoration: line-through;
     opacity: 0.7;
 }

 .todo-input-container {
     display: flex;
     gap: 10px;
     margin-bottom: 15px;
 }

 #todo-input {
     flex: 1;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 6px;
     padding: 8px 12px;
     color: var(--text);
     font-size: 14px;
     outline: none;
 }

 #add-todo-btn {
     background: rgba(0, 247, 255, 0.2);
     border: 1px solid var(--primary);
     color: var(--text);
     padding: 8px 15px;
     border-radius: 6px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 #add-todo-btn:hover {
     background: rgba(0, 247, 255, 0.3);
     box-shadow: 0 0 8px var(--primary);
 }

 .todo-actions {
     margin-top: 15px;
     text-align: right;
 }

 #clear-completed-btn {
     background: rgba(255, 0, 85, 0.2);
     border: 1px solid #ff0055;
     color: var(--text);
     padding: 6px 12px;
     border-radius: 6px;
     cursor: pointer;
 }

 /* File Manager */
 #filemanager-window {
     width: 600px;
     height: 450px;
     top: 120px;
     left: 300px;
 }

 .filemanager {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .filemanager-nav {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 8px;
     margin-bottom: 10px;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
 }

 .filemanager-nav .nav-btn {
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .filemanager-nav .nav-btn:hover {
     background: rgba(0, 247, 255, 0.2);
     box-shadow: 0 0 8px var(--primary);
 }

 .breadcrumbs {
     display: flex;
     gap: 5px;
     font-size: 14px;
     color: var(--text);
 }

 .filemanager-content {
     flex: 1;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 8px;
     padding: 20px;
     box-shadow: inset 0 0 10px rgba(0, 247, 255, 0.2);
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
     grid-template-rows: repeat(auto-fill, minmax(80px, 1fr));
     gap: 20px;
     align-content: start;
     overflow-y: auto;
 }

 .file-item,
 .folder-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     cursor: pointer;
     transition: all 0.2s ease;
     padding: 10px;
     border-radius: 8px;
 }

 .file-item:hover,
 .folder-item:hover {
     background: rgba(0, 247, 255, 0.1);
     transform: translateY(-5px);
 }

 .file-item i,
 .folder-item i {
     font-size: 30px;
     margin-bottom: 8px;
 }

 .file-item i {
     color: var(--secondary);
     text-shadow: 0 0 10px var(--secondary);
 }

 .folder-item i {
     color: var(--primary);
     text-shadow: 0 0 10px var(--primary);
 }

 .file-item.dragging,
 .folder-item.dragging {
     opacity: 0.5;
     background: rgba(0, 247, 255, 0.2);
 }

 .filemanager-content.drag-over,
 .folder-item.drag-over {
     background: rgba(0, 247, 255, 0.15);
     border: 1px dashed var(--primary);
     box-shadow: inset 0 0 15px rgba(0, 247, 255, 0.3);
 }


 .file-item span,
 .folder-item span {
     font-size: 12px;
     text-align: center;
     color: var(--text);
 }

 /* Search & AI Assistant */
 .search-bar {
     position: fixed;
     top: 20px;
     left: 50%;
     transform: translateX(-50%);
     width: 400px;
     background: rgba(10, 10, 22, 0.8);
     backdrop-filter: blur(10px);
     border: 1px solid var(--primary);
     border-radius: 25px;
     padding: 10px 20px;
     display: flex;
     align-items: center;
     box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
     z-index: 1000;
 }

 .search-bar i {
     color: var(--primary);
     margin-right: 10px;
     font-size: 18px;
 }

 .search-bar input {
     flex: 1;
     background: transparent;
     border: none;
     outline: none;
     color: var(--text);
     font-size: 16px;
 }

 .search-bar input::placeholder {
     color: rgba(255, 255, 255, 0.6);
 }

 /* AI Chat Window */
 .ai-chat-window {
     position: fixed;
     top: 70px; /* Position below the search bar */
     left: 50%;
     transform: translateX(-50%) translateY(-20px) scale(0.95);
     transform-origin: top center;
     width: 500px;
     height: 60vh;
     max-height: 500px;
     background: rgba(10, 10, 22, 0.9);
     backdrop-filter: blur(15px);
     border: 1px solid var(--primary);
     border-radius: 12px;
     box-shadow: 0 5px 30px rgba(0, 247, 255, 0.3);
     z-index: 1001; /* Above search bar */
     display: flex;
     flex-direction: column;
     overflow: hidden;
     transition: transform 0.25s cubic-bezier(0.215, 0.610, 0.355, 1), opacity 0.25s ease-out;
     opacity: 0;
 }

 .ai-chat-window.active {
     transform: translateX(-50%) translateY(0) scale(1);
     opacity: 1;
 }

 .ai-chat-header {
     padding: 10px 15px;
     background: rgba(0, 247, 255, 0.1);
     border-bottom: 1px solid var(--primary);
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: 600;
     color: var(--primary);
 }

 .ai-chat-header i {
     cursor: pointer;
     transition: color 0.2s ease;
 }

 .ai-chat-header i:hover {
     color: var(--accent);
 }

 .ai-chat-messages {
     flex: 1;
     padding: 15px;
     overflow-y: auto;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .chat-message {
     max-width: 80%;
     padding: 10px 15px;
     border-radius: 10px;
     line-height: 1.4;
     font-size: 14px;
 }

 .chat-message.user {
     background: rgba(0, 247, 255, 0.15);
     border: 1px solid var(--primary);
     align-self: flex-end;
     color: var(--text);
 }

 .chat-message.ai {
     background: rgba(10, 10, 22, 0.8);
     border: 1px solid var(--secondary);
     align-self: flex-start;
     color: #ddd;
 }

 .chat-message.ai.typing {
    font-style: italic;
    color: var(--secondary);
 }

 .ai-chat-input-container {
     padding: 10px;
     border-top: 1px solid var(--primary);
 }

 #ai-chat-input {
     width: 100%;
     background: rgba(5, 5, 16, 0.9);
     border: 1px solid var(--primary);
     border-radius: 20px;
     padding: 10px 15px;
     color: var(--text);
     outline: none;
 }

 /* Notifications */
 .notification-container {
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 1000;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .notification {
     background: rgba(10, 10, 22, 0.9);
     backdrop-filter: blur(10px);
     border: 1px solid var(--primary);
     border-radius: 8px;
     padding: 15px;
     width: 300px;
     box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
     animation: notificationIn 0.3s ease, notificationOut 0.3s ease 2.7s;
     opacity: 0;
     transform: translateX(100%);
 }

 @keyframes notificationIn {
     0% {
         opacity: 0;
         transform: translateX(100%);
     }

     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }

 @keyframes notificationOut {
     0% {
         opacity: 1;
         transform: translateX(0);
     }

     100% {
         opacity: 0;
         transform: translateX(100%);
     }
 }

 .notification-header {
     display: flex;
     align-items: center;
     margin-bottom: 10px;
 }

 .notification-header i {
     color: var(--primary);
     margin-right: 10px;
     font-size: 16px;
     text-shadow: 0 0 5px var(--primary);
 }

 .notification-header h3 {
     font-size: 14px;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
 }

 .notification-content {
     font-size: 13px;
     color: var(--text);
     line-height: 1.4;
 }

 /* Settings Panel */
 #settings-window {
     width: 500px;
     height: 450px;
     top: 150px;
     left: 350px;
 }

 .settings {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .settings-category {
     display: flex;
     gap: 10px;
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: 1px solid rgba(0, 247, 255, 0.3);
 }

 .settings-category-btn {
     padding: 8px 15px;
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     border-radius: 20px;
     color: var(--text);
     font-size: 12px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .settings-category-btn.active {
     background: rgba(0, 247, 255, 0.2);
     box-shadow: 0 0 10px var(--primary);
 }

 .settings-content {
     flex: 1;
     overflow-y: auto;
 }

 .settings-section {
     margin-bottom: 20px;
 }

 .settings-section h3 {
     font-size: 14px;
     color: var(--primary);
     text-shadow: 0 0 5px var(--primary);
     margin-bottom: 15px;
 }

 .setting-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 15px;
 }

 .setting-label {
     font-size: 13px;
     color: var(--text);
 }

 .toggle-switch {
     position: relative;
     display: inline-block;
     width: 50px;
     height: 24px;
 }

 .toggle-switch input {
     opacity: 0;
     width: 0;
     height: 0;
 }

 .toggle-slider {
     position: absolute;
     cursor: pointer;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 247, 255, 0.1);
     border: 1px solid var(--primary);
     border-radius: 34px;
     transition: .4s;
     box-shadow: 0 0 5px rgba(0, 247, 255, 0.2);
 }

 .toggle-slider:before {
     position: absolute;
     content: "";
     height: 16px;
     width: 16px;
     left: 4px;
     bottom: 3px;
     background: var(--primary);
     border-radius: 50%;
     transition: .4s;
     box-shadow: 0 0 5px var(--primary);
 }

 input:checked+.toggle-slider {
     background: rgba(0, 247, 255, 0.2);
 }

 input:checked+.toggle-slider:before {
     transform: translateX(26px);
 }

 .slider-container {
     width: 200px;
 }

 .slider-value {
     font-size: 12px;
     color: var(--primary);
     text-align: center;
     margin-top: 5px;
 }

 .slider {
     -webkit-appearance: none;
     appearance: none;
     width: 100%;
     height: 8px;
     background: rgba(0, 247, 255, 0.1);
     border-radius: 4px;
     outline: none;
 }

 .slider::-webkit-slider-thumb {
     -webkit-appearance: none;
     appearance: none;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: var(--primary);
     cursor: pointer;
     box-shadow: 0 0 10px var(--primary);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .window {
         max-width: 90vw;
         max-height: 80vh;
     }
 }

 @media (max-width: 768px) {
     .desktop {
         justify-content: center;
     }

     .search-bar {
         width: 90%;
     }

     .dashboard {
         grid-template-columns: 1fr;
     }
 }