
.computer-screen {
  position: absolute;
  width: 43%;
  top: 113px;
  left: 251px;
}

.crteffect {
    width:100%!important;
    position: absolute;
}

.computer-screen img {
  position: absolute;
  margin: auto;
  width: 100%;
}

.computer-input {
  position: absolute;
  width: 43%;
  top: 385px;
  left: 321px;
}

#computer-command {
    font-size: 16px;
    border-radius: 8px;
    background-color: #222; /* dark background to match your theme */
    color: #fff;
    width: 200px;
    transition: border-color 0.3s, background-color 0.3s;
}

#submit-command {
    font-size: 16px;
    border-radius: 8px;
    background-color: #f7ddf2; /* soft pink button */
    color: #222;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

#submit-command:hover {
    background-color: #e9e1ea; /* slightly darker pink on hover */
}
#submit-command:active {
    transform: scale(0.95);
}

.extra-container-1 {
    background-color: pink;
    position: relative; /* Required for absolute positioning */
    display: none;      /* Keep your existing hidden behavior */
}



/********************************************/

.computer-screen {
  position: relative;
}

#screen-text {
  position: absolute;
  top: 40px;
  left: 30px;
  right: 30px;
  color: #00ff00; /* green CRT style text */
  font-family: monospace;
  font-size: 16px;
  text-shadow: 0 0 4px #00ff00, 0 0 8px #00ff00;
  z-index: 3; /* higher than the overlay gif */
  pointer-events: none; /* lets clicks pass through */
}



/*********************/

.secret {
    position: absolute;
    width: 500px;
    height: 400px;
    top: 90px;
    left: 160px;
    z-index: 55;
    font-family:'zpix';



    color: rgb(77, 72, 89);


    font-size: 14px;

    background: #ffffff;


    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15);

    animation: popIn 0.25s ease-out;
}

.secret p {
    color: rgb(77, 72, 89);

}

.secret img {
    padding:3px;
}


.window-header {
    height: 45px;
    background: linear-gradient(135deg, #ff9ecf, #ffc3e6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;

    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    font-weight: bold;
    
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
}


.image-container img {
    height: 90%;

}

.window-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.window-content {
    padding-top: 2px;
    padding-bottom:2px;
    padding-left: 10px;
    padding-right: 10px;

    overflow-y: auto;
}



.close-btn {
    background: white;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #ff4d88;
    cursor: pointer;
    transition: 0.2s ease;
}

.close-btn:hover {
    background: #ffe3f1;
    transform: scale(1.1);
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
