* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace; /* see if i can find a cuter typeface-- more tech-y*/
    background: linear-gradient(to bottom, #000000 0%, #000c60 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
    margin:0;
}

.monitor {
    background: linear-gradient(145deg, #666a7a, #272e45);
    padding: 15px 15px 20px 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen {
    background: linear-gradient(135deg, #1e4d7b 0%, #2563a8 50%, #1e4d7b 100%);
    border: 3px solid #000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    flex:1;
    cursor: pointer;
}

.sky {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #2563a8 0%, #1a4d7b 50%, #0f2d4d 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    filter: blur(20px);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(30px) translateY(-20px); }
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    width: 90%;
}

.title {
    color: white;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 60px;
}

.enter-button {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.15em;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    animation: blink 1.5s infinite;
    transition: all 0.3s ease;
}

.enter-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.button {
    background: #565666;
    color: #d5d5d5;
    padding: 8px 18px;
    border-radius: 2px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: lowercase; /*find a cute font*/
    border: 1px solid #2f2f36;
    box-shadow:
        0 0 0 2px #1e1e25 inset,  /* inner frame */
        0 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.button:hover {
    background: #3e3f48;
    color: #aaa;
}

.button:active {
    transform: translateY(0);
}

.hidden {
    display: none;
}
