@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    background: black;
    color: #00ff00;
    font-family: 'Press Start 2P', monospace;
    overflow: hidden;
}

.crt-effect {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.terminal {
    width: 90%;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #00ff00;
    border: 3px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    overflow-x: auto;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

p.blinking {
    animation: blink 1s infinite;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ff00;
}

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

.neon-button {
    padding: 12px 24px;
    border: 2px solid #00ff00;
    background-color: transparent;
    color: #00ff00;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
    box-shadow: 0 0 10px #00ff00, 0 0 5px #00ff00, 0 0 30px #00ff00;
    margin-bottom: 20px;
    margin-top: 20px;
}

.neon-button:hover {
    box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, 0 0 60px #00ff00;
    transform: scale(1.05);
}

.popup-window {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    border: 2px solid #fff;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 30px #ff1493;
    display: none;
    z-index: 999;
}

.email_link{
    text-decoration:none;
    color: #00ff00;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
}

.window-header {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    padding: 10px;
    color: #fff;
    font-size: 1rem;
}

.window-body {
    padding: 20px;
    font-family: monospace;
    font-size: 1.1rem;
    color: #00ff00;
}

.window-close {
    cursor: pointer;
}

.command pre {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 5px;
    box-shadow: inset 0 0 10px #00ff00;
    color: #00ff00;
    font-size: 1.3rem;
    line-height: 0.5;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
    position: relative;
}

.output {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    line-height: 1.5;
    margin: 0;
}

.progress-wrapper {
    display: flex;
    align-items: center;
    font-size: 1rem;
    position: relative;
    width: 100%;
    font-family: 'Press Start 2P', monospace;
}

.progress-bar {
    display: block;
    width: 0;
    height: 1em;
    background: black;
    color: #00ff00;
    font-family: 'Press Start 2P', monospace;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.progress-text {
    flex-shrink: 0;
    margin-left: 10px;
}

@keyframes loading {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

footer {
    margin-top: 50px;
    font-size: 0.9rem;
    color: #00ff00;
    text-align: center;
}

.command-description{
    text-align: left;
}

.crt-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(0, 255, 0, 0.2), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.crt-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        rgba(0, 255, 0, 0.05) 0px,
        rgba(0, 255, 0, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.2;
    pointer-events: none;
}

@media (max-width: 768px) {
    .terminal {
        padding: 15px;
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p.blinking {
        font-size: 1rem;
    }

    .command pre {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .terminal {
        width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    p.blinking {
        font-size: 0.9rem;
    }

    .command pre {
        font-size: 0.9rem;
        padding: 10px;
    }

    footer {
        font-size: 0.7rem;
    }
}
