      :root {
        --taskbar-top: rgba(42, 52, 74, 0.88);
        --taskbar-bottom: rgba(16, 24, 48, 0.96);
        --taskbar-border-top: rgba(255, 255, 255, 0.35);
        --taskbar-item-bg: rgba(255, 255, 255, 0.12);
        --taskbar-item-hover-bg: rgba(255, 255, 255, 0.16);
        --taskbar-item-active-bg: rgba(255, 255, 255, 0.2);
        --taskbar-item-border: rgba(255, 255, 255, 0.24);
        --start-menu-surface: rgba(16, 24, 48, 0.96);
        --window-glass-bg: rgba(64, 64, 64, 0.7);
        --aero-surface-bg: rgba(64, 64, 64, 0.7);
      }

      body {
        margin: 0;
        padding: 0;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background: url("/assets/wallpapers/miscellaneous_150.jpg") no-repeat center center fixed;
        background-size: cover;
        height: 100vh;
        overflow: hidden;
      }
      /*========================================Desktop=================================================*/
      .desktop {
        position: absolute;
        top: 0;
        left: 0;
        right: 160px; /* Platz für Widget-Panel */
        bottom: 30px; /* Platz für Taskbar */
        padding: 10px;
        font-size: 12px;
      }

      .icon {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80px;
        cursor: pointer;
        color: white;
        text-align: center;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        user-select: none;
      }

      .icon:active {
        cursor: grabbing;
      }

      .icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
      }

      .icon-img {
        width: 32px;
        height: 32px;
        margin-bottom: 5px;
      }

      #widget-panel {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 30px; /* Abstand zur Taskleiste (30px Höhe) */
        width: 160px; /* Breite basierend auf deinen 256x256px Icons */
        display: flex;
        flex-direction: column; /* Vertikale Stapelung */
        align-items: center; /* Zentriert die Widgets horizontal */
        padding-top: 10px; /* Optionaler oberer Abstand */
        z-index: 300; /* Sicherstellen, dass es über anderen Inhalten liegt */
        /* background-color: red; */
        /* border-left: 2px solid rgba(117, 117, 117, 0.521);
        backdrop-filter: blur(10px); */
      }

      .widget-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        border-radius: 10px;
        transition: transform 0.5s ease-in-out;
        cursor: pointer;
      }

      .widget-icon:hover {
        scale: 1.1;
      }
      /*========================================Desktop=================================================*/



      /* ======================================== TASKBAR – VISTA AERO GLOSS ======================================== */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;

    background: linear-gradient(
        to bottom,
    var(--taskbar-top),
    var(--taskbar-bottom)
    ) !important;
    
    backdrop-filter: blur(14px);       /* Aero-Blur */
    -webkit-backdrop-filter: blur(14px);
    
    border-top: 1px solid var(--taskbar-border-top);
    box-shadow: 
        0 -3px 12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    z-index: 2010;
    overflow: visible;
}

/* GLOSS EFFEKT */
.taskbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 58%;                    /* obere Hälfte – der Shine */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.48),
        rgba(255, 255, 255, 0.03)
    );
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

      .taskbar-buttons {
        display: flex;
        gap: 4px;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
        overflow-x: auto;
        padding-left: 4px;
      }

      .taskbar-buttons::-webkit-scrollbar {
        height: 6px;
      }

      .taskbar-buttons::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
      }

      .taskbar-item {
        min-width: 110px;
        max-width: 160px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0 6px;
        background: var(--taskbar-item-bg);
        border: 1px inset rgba(255, 255, 255, 0.12);
        border-radius: 3px;
        color: #fff;
        font-size: 11px;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: background 0.2s ease, height 0.2s ease, transform 0.2s ease;
        transform: translateY(-1px);
        border-color: var(--taskbar-item-border);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.08);
      }

      .taskbar-item img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }

      .taskbar-item:hover,
      .taskbar-item.active {
        background: var(--taskbar-item-hover-bg);
      }

      .taskbar-item.active {
        background: var(--taskbar-item-active-bg);
      }

      .taskbar .taskbar-clock {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.02em;
        padding: 0 10px;
        white-space: nowrap;
      }

      .start-button {
        height: 45px;
        margin-top: -5px;
        margin-right: 10px;
        cursor: pointer;
        z-index: 2011;
        transition: all 0.1s ease;
        filter: brightness(1);
      }

      .start-button:hover {
        filter: brightness(1.15);
      }

      .start-button:active {
        transform: translateY(0.5px);
        filter: brightness(0.95);
      }
      /*========================================Taskbar=================================================*/

      /*========================================Window=================================================*/
      .window {
        position: absolute;
        z-index: 100;
        transition: width 0.2s, height 0.2s;
        resize: both;
        overflow: hidden;
        border: 1px solid #a0a0a0;
        background: var(--window-glass-bg);
        backdrop-filter: blur(5px);
      }

      .window .window-body {
        height: calc(100% - 30px); /* Platz unter der Titlebar */
        overflow: auto;
      }

      #welcome-window {
        resize: none;
        background: rgba(235, 242, 255, 0.92);
        backdrop-filter: blur(9px);
        box-shadow: 0 16px 36px rgba(9, 24, 56, 0.4);
      }

      #welcome-window .window-body {
        height: auto;
      }

      .welcome-window-body {
        color: #18304d;
        line-height: 1.5;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(224, 235, 252, 0.9));
      }

      .welcome-window-body p {
        margin: 0 0 12px;
      }

      .welcome-window-body p:last-child {
        margin-bottom: 0;
      }

      #personalize-window {
        resize: none;
        z-index: 1300;
      }

      #personalize-window .window-body {
        height: auto;
      }

      .personalize-window-body {
        background: linear-gradient(to bottom, rgba(248, 250, 255, 0.98), rgba(227, 236, 249, 0.94));
        color: #20334c;
      }

      .personalize-tabs {
        margin-bottom: 12px;
      }

      .personalize-panel {
        min-height: 220px;
      }

      .personalize-panel p {
        margin-top: 0;
        line-height: 1.45;
      }

      .personalize-preview-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 12px;
      }

      .personalize-preview {
        padding: 0;
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(122, 142, 170, 0.55);
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
      }

      .personalize-preview:hover,
      .personalize-preview:focus {
        transform: translateY(-1px);
        border-color: rgba(74, 126, 199, 0.75);
        box-shadow: 0 8px 16px rgba(40, 71, 118, 0.18);
        outline: none;
      }

      .personalize-preview.active {
        border-color: rgba(46, 98, 176, 0.95);
        box-shadow: 0 0 0 2px rgba(124, 176, 255, 0.42);
      }

      .personalize-preview-grid img {
        display: block;
        width: 100%;
        height: 76px;
        object-fit: cover;
      }

      .personalize-actions {
        display: flex;
        gap: 8px;
        align-items: center;
      }

      .personalize-actions label {
        color: #48617f;
      }

      .personalize-footer {
        justify-content: flex-end;
        margin-top: 12px;
        flex-wrap: wrap;
      }


      .window-header {
        /* height: 30px; */
        /* background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(3px); */
        color: black;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-left: 10px;
        cursor: move;
      }

      .window-title {
        font-weight: 400;
      }

      .window-title img {
        width: 16px;
        height: 16px;
        margin-right: 5px;
      }

      .window-controls {
        display: flex;
        align-items: center;
        border-right: 1px inset rgba(0, 0, 0, 0.2); /* Rechter Rand */
        border-bottom: 1px inset rgba(0, 0, 0, 0.2); /* Unterer Rand */
        border-left: 1px inset rgba(0, 0, 0, 0.2); /* Linker Rand */
        border-radius: 0 0 3px 3px; /* Abrundung nur unten links und unten rechts */
      }

      .window-control {
        width: 16px;
        height: 16px;
        padding-top: 5px; /* margin eigentlich */
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      }

      .window-control i {
        font-size: 12px; /* Passe die Größe des Icons an */
        color: #fff; /* Standardfarbe, anpassen nach Bedarf */
        text-shadow: 0 0 1px #000000, 0 0 1px #000000, 0 0 1px #000000; /* Dünner schwarzer Rand */
      }

      .window-control.close {
        background-color: rgba(255, 0, 0, 0.6);
      }

      .window-content {
        padding: 10px;
        height: calc(100% - 30px);
        overflow: auto;
      }

      .resize-handle {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 15px;
        height: 15px;
        background: rgba(255, 255, 255, 0.3); /* Sichtbarer Hintergrund */
        cursor: se-resize; /* Zeigt an, dass man ziehen kann */
        z-index: 101; /* Über dem Inhalt */
      }
      /*========================================Window=================================================*/

      /*========================================CMD specific styles====================================*/
      #cmd-content {
  background-color: #000;
  color: #0f0;
  font-family: "Lucida Console", monospace;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px;
  padding-bottom: 15px;
  overflow-y: auto;
  margin: 0 10px 15px 10px;
  border-radius: 0;
  border: none;
  height: calc(100% - 30px);
}

      /* Prompt-Zeile */
      #cmd-prompt {
        display: flex;
        margin-top: 5px;
        white-space: nowrap;
      }

      /* Eingabefeld */
      #cmd-input {
        background: transparent;
        border: none;
        color: #0f0;
        font-family: inherit;
        font-size: 14px;
        outline: none;
        flex-grow: 1;
        caret-color: #0f0;
        animation: blink 1s step-start infinite;
      }

      /* Optional: geblinkter Cursor-Simulation (grün) */
      @keyframes blink {
        50% {
          caret-color: transparent;
        }
      }

      /* #cmd-output falls du weitere Zeilen anhängst */
      #cmd-output {
        display: inline;
        white-space: pre-wrap;
        word-break: break-word;
      }
      /*========================================CMD specific styles===================================*/

      /*========================================Explorer specific styles==============================*/
      #explorer-window .window-content {
        display: flex;
        flex-direction: column;
        padding: 0;
      }

      .explorer-toolbar {
  display: flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.5);
  gap: 5px;
  border-bottom: inset 1px rgba(0, 0, 0, 0.3);
}

.explorer-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.explorer-toolbar button img {
  width: 24px;
  height: 24px;
}

.explorer-toolbar .search-bar {
  flex: 1 1 auto;  /* <-- wächst mit, darf aber auch kleiner werden */
  min-width: 150px;
  border: inset 2px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 4px;
}

.explorer-toolbar .view-mode {
  flex: 0 0 auto;
  min-width: 100px;
}

.explorer-menubar {
  margin: 0 5px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.78), rgba(223, 233, 248, 0.92));
  border-left: inset 1px rgba(255, 255, 255, 0.65);
  border-right: inset 1px rgba(0, 0, 0, 0.18);
  border-bottom: inset 1px rgba(0, 0, 0, 0.18);
  list-style: none;
}

.explorer-menubar > li[role="menuitem"] {
  padding: 3px 10px;
  font-size: 12px;
  color: #1d2b42;
  border-radius: 3px;
}

.explorer-menubar > li[role="menuitem"]:hover,
.explorer-menubar > li[role="menuitem"]:focus {
  background: linear-gradient(to bottom, rgba(114, 179, 255, 0.3), rgba(48, 110, 214, 0.18));
  outline: none;
}

.explorer-menubar [role="menu"] {
  z-index: 1200;
}

.explorer-menubar [role="menuitem"] a,
.explorer-menubar [role="menuitem"] button {
  font-size: 12px;
}

      .explorer-content {
        flex-grow: 1;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
        padding: 10px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 3px;
        border: inset 1px rgba(0, 0, 0, 0.5);
        margin-right: 5px;
        margin-left: 5px;
      }

      .explorer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        cursor: pointer;
      }

      .explorer-item:hover {
        background-color: #e5f3ff;
      }

      .explorer-item-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 5px;
      }

      .title-bar {
        cursor: move;
        user-select: none;
      }
      /*========================================Explorer specific styles==============================*/

      /*========================================Media player styles===================================*/
/*========================================Media player styles (Vista-Transparent)===================================*/
      #mediaplayer-window .window-content {
        padding: 0;
        display: flex;
        flex-direction: column;
        height: calc(100% - 30px);
        background: rgba(10, 10, 10, 0.4); /* leicht transparenter dunkler Hintergrund */
        backdrop-filter: blur(10px);
        border-radius: 8px;
        color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      }

      #mediaplayer-window .player-body {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      #mediaplayer-window .display {
        border-radius: 4px;
        padding: 0;
        text-align: center;
        color: #fff;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(6px);
      }

      #mediaplayer-window .display video {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 4px;
        object-fit: fill;
      }

      #mediaplayer-window .song-title {
        font-size: 18px;
        font-weight: bold;
        color: #e6e6e6;
      }

      #mediaplayer-window .artist {
        font-size: 14px;
        color: #fcf4f4;
      }

      #mediaplayer-window .progress-container {
        margin-bottom: 15px;
        width: 100%;
        height: 5px;
        background-color: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        border-radius: 5px;
      }

      #mediaplayer-window .progress-bar {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #4d88ff, #3a6dd8);
        border-radius: 20px;
        overflow: hidden;
      }

      #mediaplayer-window .progress {
        height: 100%;
        background: linear-gradient(to right, #3b9fda, #52b3e8);
        width: 0%;
      }

      #mediaplayer-window .time {
        display: flex;
        justify-content: space-between;
        margin-top: 5px;
        font-size: 12px;
        color: #ccc;
      }

      #mediaplayer-window .controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2px;
        margin-bottom: 10px;
      }

      #mediaplayer-window .volume-control {
        width: min(100%, 300px);
        align-self: center;
        color: #dfe9f7;
        font-size: 12px;
        padding: 4px 10px 0;
      }

      #mediaplayer-window .volume-control label {
        color: rgba(241, 246, 255, 0.88);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
        white-space: nowrap;
      }

      #mediaplayer-window .volume-control input[type="range"] {
        flex: 1 1 auto;
      }

      #mediaplayer-window .control-button {
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
        padding: 0;
        margin: 0;
        width: 52px;
        height: 52px;
        border-radius: 0 !important;
        transition: none !important;
        cursor: pointer;
      }

      #mediaplayer-window .control-button.play {
        background: radial-gradient(circle at center, #4ca0ff 0%, #1e5799 100%);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
        width: 60px;
        height: 60px;
      }

      .control-button img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }

      .control-button.play .pause-img {
        display: none;
      }

      .control-button.play .play-img {
        display: inline-block;
      }

      #mediaplayer-window .visualization {
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        display: flex;
        align-items: flex-end;
        padding: 5px;
        gap: 2px;
        backdrop-filter: blur(6px);
      }

      #mediaplayer-window .bar {
        background: linear-gradient(to bottom, #3b9fda, #52b3e8);
        flex-grow: 1;
        border-radius: 2px 2px 0 0;
        height: 0%;
        transition: height 0.1s;
      }

      #mediaplayer-window .window-body {
        background: rgba(10, 10, 10, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        color: #fff !important;
      }



#mediaplayer-window .control-button {
  all: unset;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
/*========================================Media player styles (Vista-Transparent)===================================*/

      /*========================================Media player styles===================================*/

      /*========================================Start menu styles=====================================*/
      #start-menu {
        position: fixed;
        bottom: 30px;
        left: 0px;
        width: 330px;
        background: var(--start-menu-surface);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 8px 8px 0 0; /* Abgerundete obere Ecken */
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 2000;
        padding: 10px;
        flex-direction: column;
      }

      #start-menu .top-section {
        display: flex;
        justify-content: flex-end; /* Zentriert das Profilbild horizontal */
        margin-bottom: 0; /* Überhängen um die halbe Bildhöhe (24px) */
        overflow: visible;
        height: 0; /* Minimale Höhe, nur für Positionierung */
        position: relative; /* Für absolute Positionierung des Bildes */
      }

      #start-menu .user-frame {
        width: 50px;
        height: 50px;
        position: absolute;
        top: -34px; /* Halbe Höhe des Bildes, um herauszutreten */
        left: 90%; /* Zentriert horizontal */
        transform: translateX(
          -50%
        ); /* Verschiebt das Bild um die halbe Breite zurück */
        z-index: 2;
      }

      #start-menu .user-image {
        width: 39px;
        height: 39px;
        /* border-radius: 5px;*/
        /* border: groove #00cff365; */
        background-color: #fff; /* Rahmen für Benutzerbild */
        position: absolute;
        top: -29px; /* Halbe Höhe des Bildes, um herauszutreten */
        left: 90%; /* Zentriert horizontal */
        transform: translateX(
          -50%
        ); /* Verschiebt das Bild um die halbe Breite zurück */
      }

      #start-menu .content {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0; /* Kein zusätzliches Padding, da es im #start-menu ist */
        border: none; /* Entfernt obere Border */
      }

      #start-menu .programs {
        flex: 1;
        background: rgba(255, 255, 255, 0.9); /* Weißes Feld */
        border-radius: 5px;
        padding: 5px;
        min-width: 0;
        border: inset 2px #3329298c;
      }

      #start-menu .categories {
        flex: 1;
        padding: 5px 0;
        min-width: 0;
      }

      .start-menu-item {
        padding: 8px 10px;
        cursor: pointer;
        font-size: 12px;
        color: #000; /* Schwarzer Text im weißen Feld */
      }

      .start-menu-icon {
        width: 32px;
        height: 32px;
        margin-right: 8px; /* Abstand zwischen Icon und Text */
        vertical-align: middle; /* Zentriert das Icon vertikal mit dem Text */
      }

      .start-menu-item:hover {
        background-color: #005dbf; /* Vista-Hover-Farbe */
      }

      .categories .start-menu-item {
        color: #fff; /* Weißer Text im dunklen Bereich */
        padding: 8px 10px;
      }

      .categories .start-menu-item:hover {
        background-color: #0078d7; /* Hellere Hover-Farbe im dunklen Bereich */
      }

      #start-menu .bottom-section {
        display: flex;
        align-items: center;
        margin-top: 10px;
        gap: 9px;
      }

      #start-menu .search-bar {
        width: 46%;
        padding: 5px;
        margin-bottom: 5px;
        border: none;
        border-radius: 5px;
        outline: none;
        border: inset 2px #3329298c;
      }

      #start-menu .bottom-buttons {
        display: flex;
        justify-content: space-between;
        gap: 0;
        margin-left: 10px;
      }

      #start-menu .bottom-buttons .start-menu-item {
        flex: 1;
        text-align: center;
        padding: 2px 12px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px outset rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        background: linear-gradient(to bottom, rgba(140, 160, 200, 0.25), rgba(100, 130, 180, 0.15));
        position: relative;
        overflow: hidden;
        font-size: 11px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.15s ease;
      }

      #start-menu .bottom-buttons .start-menu-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
        pointer-events: none;
      }

      #start-menu .bottom-buttons .start-menu-item:nth-child(1) {
        flex: 1.3;
        background: linear-gradient(to bottom, rgba(200, 120, 120, 0.25), rgba(160, 80, 80, 0.15));
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        font-weight: 400;
        border-radius: 5px 0 0 5px;
      }

      #start-menu .bottom-buttons .start-menu-item:nth-child(1):hover {
        background: linear-gradient(to bottom, rgba(200, 120, 120, 0.35), rgba(160, 80, 80, 0.25));
      }

      #start-menu .bottom-buttons .start-menu-item:nth-child(2) {
        flex: 1.3;
        background: linear-gradient(to bottom, rgba(140, 160, 200, 0.25), rgba(100, 130, 180, 0.15));
        color: rgba(255, 255, 255, 0.7);
        border-radius: 0;
      }

      #start-menu .bottom-buttons .start-menu-item:nth-child(2):hover {
        background: linear-gradient(to bottom, rgba(140, 160, 200, 0.35), rgba(100, 130, 180, 0.25));
      }

      #start-menu .bottom-buttons .start-menu-item:nth-child(3) {
        flex: 1;
        background: linear-gradient(to bottom, rgba(140, 160, 200, 0.25), rgba(100, 130, 180, 0.15));
        color: rgba(255, 255, 255, 0.7);
        border-radius: 0 5px 5px 0;
      }
      /*========================================Start menu styles=====================================*/

      /*========================================Aero glass effect=====================================*/
      .aero-glass {
        /* background: rgba(255, 255, 255, 0.3); */
        background: var(--aero-surface-bg);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }
      /*========================================Aero glass effect=====================================*/
