/* Genel Sıfırlama ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Video Arka Planı */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Görev Çubuğu (Taskbar) */
  .taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: rgba(32, 32, 32, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .taskbar-left,
  .taskbar-right {
    display: flex;
    align-items: center;
  }
  
  /* Taskbar İkonları */
  .taskbar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 8px;
    border-radius: 4px;
    transition: background 0.2s;
  }
  
  .taskbar-icon:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .taskbar-icon img {
    width: 24px;
    height: 24px;
  }
  
  /* Sistem İkonları */
  .system-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
  }
  
  .system-icon img {
    width: 100%;
    height: 100%;
  }
  
  /* Batarya Yüzdesi */
  .battery-percent {
    position: absolute;
    top: -8px;
    right: -10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 10px;
    padding: 1px 3px;
    border-radius: 2px;
  }
  
  /* Saat ve Tarih - Windows 11 stilinde */
  .time-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
    margin-right: 8px;
  }
  
  #current-time {
    font-weight: 600;
    font-size: 14px;
  }
  
  #current-date {
    font-size: 12px;
    opacity: 0.8;
  }
  
  /* Bildirim Paneli */
  .notification-panel {
    position: fixed;
    right: 10px;
    bottom: 60px;
    width: 250px;
    background: #1e1e1e;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: none;
    z-index: 1003;
  }
  .notification-panel h4 {
    margin-bottom: 10px;
  }
  
  /* Başlat Menüsü (Start Menu) */
  .start-menu {
    position: fixed;
    bottom: 50px;
    left: 10px;
    width: 320px;
    background: rgba(32, 32, 32, 0.95);
    color: #fff;
    border-radius: 8px;
    padding: 15px;
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: startMenuOpen 0.3s ease-out forwards;
  }
  
  @keyframes startMenuOpen {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Arama Çubuğu */
  .start-menu .search-bar {
    display: flex;
    align-items: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-bottom: 10px;
  }
  
  .start-menu .search-bar i {
    margin-right: 8px;
    color: #fff;
  }
  
  .start-menu .search-bar input {
    width: 100%;
    padding: 5px;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
  }
  
  /* Sabitlenmiş Uygulamalar */
  .start-menu .pinned-section h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .start-menu .app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .start-menu .app-item {
    width: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .start-menu .app-item:hover {
    transform: scale(1.05);
  }
  
  .start-menu .app-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
  }
  
  /* Pencere Temel Stilleri */
  .window {
    position: absolute;
    top: 120px;
    left: 120px;
    width: 600px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    z-index: 1002;
    animation: windowOpen 0.3s ease-out forwards;
  }
  
  @keyframes windowOpen {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  .window .window-header {
    background: #0078d7;
    color: #fff;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
  }
  
  .window .window-header span {
    font-weight: bold;
  }
  
  .window .window-controls button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
    outline: none;
  }
  
 /* Dosya Gezgini (Folder Window) Özel Ayarları */

/* Üst başlık: koyu tema (mevcut kısım) */
.folder-window .window-header {
    background: #1e1e1e;
    color: #fff;
  }
  
  /* Artık dosya gezgini penceresini flex container yapıyoruz */
  .folder-window {
    /* Bu kısım zaten .window üzerinde tanımlı genel stilleri (örneğin genişlik, konum vb.) kullanacaktır */
    display: flex;
    flex-direction: column;
  }
  
  /* .folder-container: sabit 400px yerine flex: 1 ile kalan alanı dolduracak */
  .folder-container {
    flex: 1;
    display: flex;
    background: #1e1e1e;
  }
  
  /* Sol: Navigasyon (Sidebar) ve Sağ: Dosya içeriği (değişiklik yok) */
  .folder-sidebar {
    width: 200px;
    background: #2b2b2b;
    color: #fff;
    padding: 10px;
  }
  .folder-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .folder-sidebar li {
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 4px;
    transition: background 0.2s;
  }
  .folder-sidebar li:hover,
  .folder-sidebar li.active {
    background: #0078d7;
  }
  .folder-content {
    flex: 1;
    background: #1e1e1e;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-y: auto;
  }
  
  
  .file-item {
    width: 100px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .file-item:hover {
    transform: scale(1.05);
  }
  
  .file-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 5px;
  }
  
  /* Placeholder mesajı */
  .empty-folder {
    width: 100%;
    color: #ccc;
    font-style: italic;
    text-align: center;
    padding: 20px;
  }
  
  /* Maksimize edilmiş pencere stili */
  .window.maximized {
    width: 100% !important;
    height: calc(100vh - 48px) !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    border-radius: 0;
  }
  
  .window.maximized .window-content {
    height: calc(100vh - 96px); /* 48px taskbar + 48px window header */
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Context Menu */
  .context-menu {
    position: absolute;
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 5px 0;
    display: none;
    z-index: 2000;
  }
  
  .context-menu .menu-item {
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .context-menu .menu-item:hover {
    background: #0078d7;
  }
  
  /* Sadece pencere içeriği için güncelleme */
  .window-content {
    flex: 1;
    padding: 16px;
    overflow: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-content: flex-start;
  }
  
  .game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .game-item:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .game-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
  }
  
  .game-item span {
    color: white;
    font-size: 12px;
    word-wrap: break-word;
    max-width: 100%;
  }
  
  /* Oyun listesi container'ı */
  .game-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  