/* Enhanced Cloud Desktop Demo - World-Class UI */

:root {
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-dark: rgba(243, 243, 243, 0.6);
    --border-glass: rgba(255, 255, 255, 0.6);
    --shadow-win: 0 10px 30px rgba(0,0,0,0.2);
    --taskbar-h: 48px;
    --primary: #0078d4;
    --danger: #e81123;
    --success: #107c10;
    --warning: #ff8c00;
}

/* Dark Theme Variables - Support both data-theme and html.dark-mode */
[data-theme="dark"],
html.dark-mode .desktop-container {
    --bg-glass: rgba(30, 30, 30, 0.85);
    --bg-glass-dark: rgba(20, 20, 20, 0.9);
    --border-glass: rgba(60, 60, 60, 0.6);
    --shadow-win: 0 10px 30px rgba(0,0,0,0.5);
    --primary: #60a5fa;
}

* { 
    box-sizing: border-box; 
    user-select: none; 
}

.desktop-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    /* Background images controlled by public-dark-mode.css for proper theme switching */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* NOTE: Background images moved to public-dark-mode.css to ensure proper load order */

/* Desktop Icons */
#desktop {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 80px);
    gap: 10px;
    height: calc(100% - var(--taskbar-h));
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
}

/* Custom scrollbar for desktop */
#desktop::-webkit-scrollbar {
    width: 8px;
}

#desktop::-webkit-scrollbar-track {
    background: transparent;
}

#desktop::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

#desktop::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] #desktop::-webkit-scrollbar-thumb,
html.dark-mode #desktop::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] #desktop::-webkit-scrollbar-thumb:hover,
html.dark-mode #desktop::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.desktop-icon {
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    position: relative;
}

.desktop-icon span {
    text-align: center;
    width: 100%;
    font-size: 12px;
    word-wrap: break-word;
    padding: 0 2px;
}

.desktop-icon:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.desktop-icon:active {
    transform: scale(1.02) translateY(0);
    transition: transform 0.1s;
}

.app-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border-radius: 12px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.9);
    font-size: 12px; 
    text-align: center; 
    line-height: 1.2; 
}

/* Icon Colors - Match site color scheme (Silhouette AF-655 compatible) */
.icon-blue { color: #5B78C4; }      /* var(--accent-blue) */
.icon-orange { color: #C4845B; }    /* var(--accent-orange) - matches site theme */
.icon-gray { color: #625E71; }      /* var(--primary-600) */
.icon-green { color: #6B9E8C; }     /* var(--accent-emerald) */
.icon-purple { color: #7C6B9E; }    /* var(--accent-purple) */
.icon-red { color: #C45B78; }       /* var(--accent-rose) */
.icon-yellow { color: #C4845B; }    /* var(--accent-orange) - warm tone */

/* Windows */
.window {
    position: absolute;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-win), 0 0 0 1px rgba(255,255,255,0.1) inset;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    min-height: 200px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
    animation: windowOpen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.window:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

.window.active {
    box-shadow: 0 15px 50px rgba(102,126,234,0.35), 0 0 0 2px rgba(102,126,234,0.6), 0 0 0 1px rgba(255,255,255,0.2) inset !important;
}

.window.dragging {
    cursor: move !important;
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45) !important;
}

@keyframes windowOpen {
    0% { 
        transform: scale(0.8) translateY(-20px); 
        opacity: 0; 
    }
    50% {
        transform: scale(1.02);
    }
    100% { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) translateY(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px) translateY(0); }
    20%, 40%, 60%, 80% { transform: translateX(10px) translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

@keyframes iconFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(20px) scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.window.minimized {
    transform: scale(0.7) translateY(300px);
    opacity: 0;
    pointer-events: none;
}

.window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% - var(--taskbar-h)) !important;
    border-radius: 0;
}

/* Window Header */
.window-header {
    height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    background: rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: move;
    transition: background 0.3s;
}

.window-header:hover {
    background: rgba(255,255,255,0.4);
}

.window-header:active {
    background: rgba(255,255,255,0.5);
    cursor: grabbing;
}

[data-theme="dark"] .window-header {
    background: rgba(40,40,40,0.5);
}

.win-title {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    pointer-events: none;
}

[data-theme="dark"] .win-title {
    color: #e0e0e0;
}

.win-controls { display: flex; height: 100%; }

.win-btn {
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 12px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.win-btn:hover { 
    background: rgba(0,0,0,0.05); 
    transform: scale(1.15);
}
.win-btn.close:hover { 
    background: var(--danger); 
    color: white; 
    transform: scale(1.15) rotate(90deg);
}
.win-btn.minimize:hover {
    transform: scale(1.15) translateY(2px);
}
.win-btn.maximize:hover {
    transform: scale(1.15);
}

/* Window Content */
.window-content {
    flex: 1;
    background: rgba(255,255,255,0.5);
    position: relative;
    overflow: auto;
}

[data-theme="dark"] .window-content {
    background: rgba(30,30,30,0.7);
}

/* Resize Handles */
.resize-handle {
    position: absolute;
    z-index: 10;
}

.resize-handle.n { top: 0; left: 0; right: 0; height: 5px; cursor: ns-resize; }
.resize-handle.s { bottom: 0; left: 0; right: 0; height: 5px; cursor: ns-resize; }
.resize-handle.e { right: 0; top: 0; bottom: 0; width: 5px; cursor: ew-resize; }
.resize-handle.w { left: 0; top: 0; bottom: 0; width: 5px; cursor: ew-resize; }
.resize-handle.ne { top: 0; right: 0; width: 10px; height: 10px; cursor: nesw-resize; }
.resize-handle.nw { top: 0; left: 0; width: 10px; height: 10px; cursor: nwse-resize; }
.resize-handle.se { bottom: 0; right: 0; width: 10px; height: 10px; cursor: nwse-resize; }
.resize-handle.sw { bottom: 0; left: 0; width: 10px; height: 10px; cursor: nesw-resize; }

/* Snap Zones (Visual Feedback) */
.snap-zone {
    position: absolute;
    background: rgba(0, 120, 212, 0.2);
    border: 2px solid rgba(0, 120, 212, 0.5);
    display: none;
    pointer-events: none;
    z-index: 9998;
}

.snap-zone.active {
    display: block;
    animation: snapPulse 0.3s ease-in-out;
}

@keyframes snapPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Taskbar */
#taskbar {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--taskbar-h);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 10000;
}

[data-theme="dark"] #taskbar {
    background: rgba(30, 30, 30, 0.9);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.taskbar-center {
    display: flex;
    gap: 4px;
    height: 100%;
    align-items: center;
}

.task-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255,255,255,0.05);
}

.task-icon:hover { 
    background: rgba(255,255,255,0.2); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transform: translateY(-4px) scale(1.1);
}

.task-icon:active { 
    transform: translateY(-2px) scale(1.05); 
    transition: transform 0.1s;
}

.taskbar-app.active {
    background: rgba(102,126,234,0.25);
    box-shadow: 0 0 20px rgba(102,126,234,0.5), inset 0 0 10px rgba(102,126,234,0.2);
}

.taskbar-app.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
    transition: width 0.2s;
    box-shadow: 0 0 8px rgba(102,126,234,0.8);
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% { opacity: 0.8; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.task-icon.active.open::after { width: 16px; }

/* System Tray */
.sys-tray {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #333;
}

[data-theme="dark"] .sys-tray {
    color: #e0e0e0;
}

.sys-tray i {
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: 0.2s;
}

.sys-tray i:hover {
    background: rgba(255,255,255,0.1);
}

.clock-container { 
    text-align: right; 
    cursor: default;
    padding: 4px 8px;
    border-radius: 4px;
    transition: 0.2s;
}

.clock-container:hover {
    background: rgba(255,255,255,0.1);
}

.clock-time { font-weight: 500; }
.clock-date { font-size: 10px; color: #555; }

[data-theme="dark"] .clock-date { color: #aaa; }

/* Start Menu */
#start-menu {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 580px;
    max-width: 90%;
    height: 600px;
    max-height: 80%;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    padding: 25px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    opacity: 0;
    transition: 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="dark"] #start-menu {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
}

#start-menu.visible {
    display: flex;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.search-bar {
    background: #fff;
    border-radius: 4px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 20px;
}

[data-theme="dark"] .search-bar {
    background: rgba(50,50,50,0.8);
}

.search-bar input { 
    border: none; 
    outline: none; 
    width: 100%; 
    font-size: 14px;
    background: transparent;
    color: #333;
}

[data-theme="dark"] .search-bar input {
    color: #e0e0e0;
}

.pinned-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    overflow-y: auto;
    flex: 1;
}

.pinned-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.pinned-item:hover { 
    background: rgba(255,255,255,0.5); 
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.pinned-item:active {
    transform: scale(1.02) translateY(0);
    transition: transform 0.1s;
}

.pinned-item i { font-size: 24px; }
.pinned-item span { font-size: 11px; color: #444; text-align: center; }

[data-theme="dark"] .pinned-item span { color: #e0e0e0; }

/* Context Menu */
.context-menu {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 5px 0;
    min-width: 200px;
    display: none;
    z-index: 10001;
}

[data-theme="dark"] .context-menu {
    background: rgba(40,40,40,0.95);
    border: 1px solid rgba(255,255,255,0.1);
}

.context-menu.visible {
    display: block;
    animation: fadeIn 0.15s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.context-menu-item {
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
    transition: 0.15s;
}

[data-theme="dark"] .context-menu-item {
    color: #e0e0e0;
}

.context-menu-item:hover {
    background: rgba(0,120,212,0.1);
}

.context-menu-item i {
    width: 16px;
    text-align: center;
}

.context-menu-divider {
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 5px 0;
}

[data-theme="dark"] .context-menu-divider {
    background: rgba(255,255,255,0.1);
}

/* Notifications */
.notification {
    position: absolute;
    bottom: 60px;
    right: 20px;
    width: 350px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 15px;
    display: none;
    z-index: 10001;
    animation: slideIn 0.3s ease-out;
}

[data-theme="dark"] .notification {
    background: rgba(40,40,40,0.95);
    border: 1px solid rgba(255,255,255,0.1);
}

.notification.visible {
    display: block;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

[data-theme="dark"] .notification-title {
    color: #e0e0e0;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.notification-body {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

[data-theme="dark"] .notification-body {
    color: #bbb;
}

/* App-Specific Styles */
.app-terminal {
    background: #1e1e1e;
    color: #ccc;
    height: 100%;
    padding: 10px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    overflow-y: auto;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #ccc;
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.app-notepad {
    width: 100%;
    height: 100%;
    border: none;
    padding: 10px;
    font-family: 'Consolas', monospace;
    outline: none;
    resize: none;
    background: rgba(255,255,255,0.9);
    color: #333;
}

[data-theme="dark"] .app-notepad {
    background: rgba(30,30,30,0.9);
    color: #e0e0e0;
}

.browser-bar {
    background: #f8f9fa;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.browser-bar button {
    background: transparent;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    transition: background 0.2s;
}

.browser-bar button:hover:not(:disabled) {
    background: rgba(0,0,0,0.05);
}

.browser-bar button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

[data-theme="dark"] .browser-bar,
html.dark-mode .browser-bar {
    background: #2a2a2a;
    border-bottom: 1px solid #444;
}

[data-theme="dark"] .browser-bar button,
html.dark-mode .browser-bar button {
    color: #aaa;
}

[data-theme="dark"] .browser-bar button:hover:not(:disabled),
html.dark-mode .browser-bar button:hover:not(:disabled) {
    background: rgba(255,255,255,0.05);
}

.url-box {
    background: #fff;
    flex: 1;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] .url-box,
html.dark-mode .url-box {
    background: #1a1a1a;
    border: 1px solid #444;
    color: #ccc;
}

.browser-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 45px);
    color: #aaa;
    flex-direction: column;
}

/* File Explorer */
.explorer-container {
    display: flex;
    height: 100%;
}

.explorer-sidebar {
    width: 200px;
    background: rgba(240,240,240,0.9);
    border-right: 1px solid #ddd;
    padding: 10px;
    overflow-y: auto;
}

[data-theme="dark"] .explorer-sidebar {
    background: rgba(40,40,40,0.9);
    border-right: 1px solid #444;
}

.explorer-item {
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.15s;
}

.explorer-item:hover {
    background: rgba(0,120,212,0.1);
}

.explorer-item.active {
    background: rgba(0,120,212,0.2);
}

.explorer-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.15s;
}

.file-item:hover {
    background: rgba(0,0,0,0.05);
}

.file-item i {
    font-size: 40px;
    margin-bottom: 5px;
}

.file-item span {
    font-size: 12px;
    text-align: center;
}

/* Calculator */
.calculator {
    background: rgba(240,240,240,0.95);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .calculator {
    background: rgba(30,30,30,0.95);
}

.calc-display {
    background: #fff;
    padding: 20px;
    text-align: right;
    font-size: 32px;
    font-weight: 300;
    border-radius: 8px;
    margin-bottom: 15px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #333;
    border: 1px solid #ddd;
}

[data-theme="dark"] .calc-display {
    background: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #444;
}

.calc-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    flex: 1;
}

.calc-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

[data-theme="dark"] .calc-btn {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #e0e0e0;
}

.calc-btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

[data-theme="dark"] .calc-btn:hover {
    background: #3a3a3a;
}

.calc-btn:active {
    transform: scale(0.95);
}

.calc-btn.operator {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calc-btn.equals {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.calc-btn.clear {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

/* Loading State */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
}

.loading-overlay.visible {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    #start-menu {
        width: 95%;
        height: 70%;
    }
    
    .notification {
        width: 90%;
        right: 5%;
    }
    
    .desktop-icon {
        width: 70px;
        height: 80px;
    }
}
