body{
    background: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.birthday-date{
    width: 50px;
    height: 75px;
    font-size: 15pt;
    text-align: center;
    border: none;
    box-shadow: 0 0 10px inset #4CBB17;
    background: none;
    color: #88D264;
    text-shadow: 0 0 10px #4CBB17;
    font-family: monospace;
}

#unlock{
    border: none;
    background: transparent;
    color: #88D264;
    text-shadow: 0 0 5px #4CBB17;
    font-size: 12pt;
    font-family: monospace;
}

#lock-code > div > h2 {
    font-size: 15pt;
    text-align: center;
    color: #88D264;
    text-shadow: 0 0 5px #4CBB17;
    font-family: MONOSPACE;
}

section{
    width: 100%;
    height: 100%;
}

section[id='1'] {
    background-color: #212121;
}

.goth, .femboy, .nanogram{
    display: none;
}

.goth, .femboy, .case, .nanogram{
    position: fixed;
    box-shadow: 0 0 10px #000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
}

.nanogram {
    position: fixed;
    box-shadow: 0 0 10px #000;
    left: 50%;
    top: 50%;
    padding: 10px;
}

section[id='1'] img {
    width: 300px;
}

section[id='2'] {
    background-color: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-around;
}

section[id='0'] {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

section[id='0'] > div {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid #3498db;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

h1 {
    font-size: 2.5rem;
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.7);
    margin-bottom: 10px;
}

.subtitle {
    color: #e74c3c;
    font-size: 1.2rem;
}

.content {
    position: fixed;
    width: 85%;
    height: 85%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    gap: 20px;
    flex-wrap: wrap;
}

.file-system {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

.file-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7f8c8d;
}

.path-display {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
    flex-grow: 1;
    margin-right: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.nav-buttons button {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.3s;
}

.nav-buttons button:hover {
    background: #2980b9;
}

.file-list {
    list-style: none;
    max-height: 400px;
    overflow-y: auto;
}

.file-item {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.file-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.file-name {
    flex-grow: 1;
}

.file-type {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-left: 10px;
}

.drive { color: #3498db; }
.folder { color: #f1c40f; }
.executable { color: #e74c3c; }
.text { color: #2ecc71; }
.binary { color: #9b59b6; }
.application { color: #e67e22; }

.inactive .file-name {
    color: #7f8c8d;
    text-decoration: line-through;
}

.corrupt .file-name {
    color: #e74c3c;
    animation: glitch 1s infinite;
}

.file-preview {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #9b59b6;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.3);
}

.preview-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7f8c8d;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.preview-content {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 5px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.desktop {
    position: fixed;
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #4CBB17;
    box-shadow: 0 0 15px #4CBB174d;
}

.desktop-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.desktop-icon {
    width: 80px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.2s;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.desktop-icon-image {
    font-size: 32px;
    margin-bottom: 5px;
}

.desktop-icon-name {
    font-size: 0.8rem;
    word-break: break-word;
}

@keyframes glitch {
    0% { text-shadow: 1px 1px 0 rgba(255,0,0,0.7), -1px -1px 0 rgba(0,0,255,0.7); }
    20% { text-shadow: 1px 1px 0 rgba(255,0,0,0.7), -1px -1px 0 rgba(0,0,255,0.7); }
    21% { text-shadow: -1px -1px 0 rgba(255,0,0,0.7), 1px 1px 0 rgba(0,0,255,0.7); }
    40% { text-shadow: -1px -1px 0 rgba(255,0,0,0.7), 1px 1px 0 rgba(0,0,255,0.7); }
    41% { text-shadow: 1px -1px 0 rgba(255,0,0,0.7), -1px 1px 0 rgba(0,0,255,0.7); }
    60% { text-shadow: 1px -1px 0 rgba(255,0,0,0.7), -1px 1px 0 rgba(0,0,255,0.7); }
    61% { text-shadow: -1px 1px 0 rgba(255,0,0,0.7), 1px -1px 0 rgba(0,0,255,0.7); }
    80% { text-shadow: -1px 1px 0 rgba(255,0,0,0.7), 1px -1px 0 rgba(0,0,255,0.7); }
    81% { text-shadow: 1px 1px 0 rgba(255,0,0,0.7), -1px -1px 0 rgba(0,0,255,0.7); }
    100% { text-shadow: 1px 1px 0 rgba(255,0,0,0.7), -1px -1px 0 rgba(0,0,255,0.7); }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    background: #2c3e50;
    border-radius: 5px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: translateX(150%);
    transition: transform 0.3s ease-out;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
}

#close-file-system:hover{
    cursor: pointer;
}

#lock{
    width: 200px;
}

.goth > img {
    filter: blur(5px);
}

.femboy > img {
    filter: blur(2px);
}

.goth, .femboy, .case{
    overflow-y: scroll;
    max-height: 80%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 30px;
}

.case{
    display: grid;
}

body.corrupt-1 {
  background: linear-gradient(90deg, #000, #111);
}
body.corrupt-2 {
  animation: glitch 0.5s infinite;
}
@keyframes glitch {
  0% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(90deg) blur(2px); }
  100% { filter: hue-rotate(0deg); }
}

#hint_model{
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #121212;
    box-shadow: 0 0 10px green;
    height: 500px;
    width: 900px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60pt;
}

#hint_model div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

#ending, .endingDiv{
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 12pt;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 2%;
    transform: translate(-50%, -50%);
}

.endingDiv{
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}

.endingDiv.active{
    opacity: 1;
}

.endingDiv > h1 {
    color: #fff;
    margin: 0;
    text-align: center;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.endingDiv > h2 {
    text-align: center;
}

.endingDiv > p {
    font-size: 16pt;
    text-align: center;
}
