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

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 50%, #1a0033 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 90vw;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.mascot-container {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.text-container {
    flex: 1;
    max-width: 700px;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
}

.terminal-text {
    color: #fff;
    font-size: 24px;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.prompt {
    color: #fff;
    margin-right: 15px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.loading {
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 30px;
}

.dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
    display: inline-block;
    width: 40px;
    text-align: left;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

.main-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.text-line {
    margin-bottom: 10px;
    height: 30px;
    display: flex;
    align-items: center;
}

.command {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}

.cursor {
    animation: blink 1s infinite;
    color: #fff;
    font-weight: bold;
    margin-left: 2px;
}

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

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .mascot-container {
        width: 100px;
        height: 100px;
    }
    
    .terminal-text {
        font-size: 18px;
        text-align: center;
    }
    
    .text-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .terminal-text {
        font-size: 14px;
    }
    
    .mascot-container {
        width: 80px;
        height: 80px;
    }
}