* {
    box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif, sans-serif;
  background: #07110b;
  color: #f4eed8;
}

#welcome-screen {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-card{
  width: 420px;
  padding: 40px;
  text-align: center;
  background: #102017;
  border: 1px solid #6e8f59;
}

h1{
  font-size: 64px;
  margin: 10px 0;
}

.subtitle{
  opacity: 0.75;
}

button {
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#boot-screen {
    display: none;
    min-height: 100vh;
    padding: 40px;
    background: #050805;
    color: #a7c957;
    font-family: monospace;
    align-items: center;
    justify-content: center;
}

#boot-text {
  font-size: 18px;
    line-height: 2;
    white-space: pre-line;
    border:1.5px solid #a7c957;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

#desktop{
  display: none;
  min-height: 100vh;
  background-image: url(assets/backgrounds/day.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-bar {
  height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16,32,23,0.9);
  border-bottom: 1px solid #36583b;
}
.brand{
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
}
#logo{
  width: 50px;
  position: fixed;
  left: 90px;
  z-index: 0;
  transition: 0.3s;
}
#logo:hover{
  transform: scale(1,02);
}
.system-info{
  font-size: 16px;
  opacity: 0.85;
}
.desktop-content{
  padding: 40px;
}

.window{
  position:absolute;
  left: 180px;
  top: 150px;
  width: 500px;
  background: #102017;
  border: 1px solid #6e8f59;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: none;
}

.window-bar{
  height: 45px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #193323;
  cursor: grab;
  user-select: none;
}

.window-content{
  padding: 20px;
}

.window-bar button{
  border: none;
  background: transparent;
  color: #f4eed8;
  font-size: 20px;
  cursor: pointer;
}

#note-text{
    width: 100%;
    height:250px;
    box-sizing: border-box;
    padding: 10px;
    resize: none;
    background: #07110b;
    color: #f4eed8;
    border: 1px solid #36583b;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}
#save-note {
    margin-top: 12px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    background: #a7c957;
    color: #07110b;
    cursor: pointer;
}
#save-note-grid{
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 20px;
}

.dock {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(15, 18, 25, 0.72);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    z-index: 1000;
}

.dock-app {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.dock-app:hover {
    transform: translateY(-10px) scale(1.12);

    background: rgba(255, 255, 255, 0.16);
}
.dock-app.active::after {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
}
.dock-app{
  position: relative;
}

#bg-change{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}
.bg-settings{
  width: 200px;
  border-radius: 10px;
  border: 1.5px solid #a7c957;
  transition: 0.3s;
}
.bg-settings:hover{
  transform: scale(1.02);
}
#music-img{
  position: relative;
  width: 150px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
#music{
  display: flex;
  align-items: center;
}
#music-btn-grid{
  display: grid;
  grid-template-columns: 50px 50px 50px;
  column-gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}
.music-btn{
  background-color: rgb(250, 129, 129);
  padding: 10px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  transition: 0.3s;
}
.music-btn:hover{
  color: white;
  background-color: #6e8f59;
}
#music-text{
  background-color: #36583b;
  padding: 10px 20px; 
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #6e8f59;
  border-radius: 10px;
  margin-top: 30px;
  transition: 0.3s;
  display: none;
}
#music-text:hover{
  background-color: #708147;
}
#music-name{
  color: #a7c957;
}
#music-card{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: max-content;
  padding: 20px;
  align-items: center;
  border: 2px solid white;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.11);
}
#main-files{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  
}
#sub-files{
  font-size: 18px;
  padding: 5px 10px;
  transition: 0.3s;
}
#sub-files:hover{
 background-color: #1d3a29;
 transform: scale(1.02);
}
#wildo-text{
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  background-color: #193323;
  border:  2px solid #a7c957;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s;
}
#wildo-text:hover{
    background-color: #295339;
  transform: scale(1.03);
}
#wildo-version{
    font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  background-color: #193323;
  border:  2px solid #a7c957;
  border-radius: 10px;
  padding: 10px;
  width: max-content;
  margin-top: 20PX;
  transition: 0.3s;
}
#wildo-version:hover{
  background-color: #295339;
  transform: scale(1.03);
}
#version-span{
  color: red;
}
#wildo-end{
  color: grey;
  text-align: center;
  margin-top: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.close-btn{
  width: 40px;
  transition: 0.3s;
}
.close-btn:hover{
  transform: scale(1.02);
}
#settings-text{
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#settings-text-1{
  margin-top: 20PX;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#start-button{
  background-color: #6e8f59;
  color: #050805;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  box-shadow: 4PX 8PX 0PX black;
  border-radius: 0%;
  transition: 0.3S;
}
#start-button:hover{
   box-shadow: 4PX 4PX 0PX rgb(100, 100, 100);
   transform: scale(1.04);
}