.terminal {
    background-color: #000000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    width: 100%;
    max-width: 800px;
    min-height: 400px;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
}

.terminal.maximized {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    z-index: 1000;
}

.terminal.minimized {
    display: none;
}

.terminal.glow-active {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(0, 255, 0, 0.6);
    }
}

.terminal-header {
    background-color: #1a1a1a;
    padding: 10px 15px;
    border-bottom: 1px solid #00ff00;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-title {
    font-size: 14px;
    color: #00ff00;
    font-weight: 600;
}

.terminal-content {
    padding: 30px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
