@keyframes typing {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 100%;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    height: 100vh;
    background-color: #000;
    font-family: 'Share Tech Mono', monospace;
    color: #00ff88;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.terminal-screen {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: radial-gradient(circle at center, #001100 20%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#matrix-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}
.terminal-content {
    position: relative;
    text-align: left;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ff88;
    box-shadow: 0 0 20px #00ff88;
    border-radius: 8px;
}
h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
}
.typing-text {
    font-size: 1.3em;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #00ff88;
    animation: typing 4s steps(30, end) infinite;
}
.countdown-box {
    font-size: 1.2em;
    color: #ff2e63;
    margin-top: 15px;
    background-color: rgba(255, 46, 99, 0.05);
    padding: 10px 15px;
    border-left: 2px solid #ff2e63;
}
.terminal-screen-mobile{
    display: none;
}


@media (max-width: 768px) {
    .terminal-screen{
        display: none;
    }
    .terminal-screen-mobile{
        position: relative;
        width: 100%;
        height: 100%;
        padding: 40px;
        background: radial-gradient(circle at center, #001100 20%, #000000 100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .terminal-content-mobile {
        display: block;
        position: relative;
        text-align: left;
        max-width: 300px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        border: 1px solid #00ff88;
        box-shadow: 0 0 20px #00ff88;
        border-radius: 8px;
    }
    .countdown-box-mobile{
        font-size: 1.2em;
        color: #ff2e63;
        margin-top: 15px;
        background-color: rgba(255, 46, 99, 0.05);
        padding: 10px 15px;
        border-left: 2px solid #ff2e63;
    }
}