@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&display=swap');

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

body {
    background-color: #000000;
    font-family: 'Ubuntu Mono', monospace;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D8DEE9;
}

.terminal {
    width: 97%;
    height: 97vh;
    background-color: #000000;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.terminal-header {
    background-color: #1a1a1a;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
    position: relative;
}

.buttons {
    position: absolute;
    left: 10px;
    display: flex;
    gap: 8px;
}

.buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.close {
    background-color: #BF616A;
}

.minimize {
    background-color: #EBCB8B;
}

.maximize {
    background-color: #A3BE8C;
}

.title {
    color: #D8DEE9;
    font-size: 14px;
    width: 100%;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.terminal-content {
    padding: 20px;
    height: calc(97vh - 41px);
    overflow-y: auto;
    background-color: #000000;
    scrollbar-width: thin;
    scrollbar-color: #4158D0 transparent;
}

.terminal-content::-webkit-scrollbar {
    width: 5px;
}

.terminal-content::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-content::-webkit-scrollbar-thumb {
    background: #4158D0;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.terminal-content::-webkit-scrollbar-thumb:hover {
    background: #C850C0;
}

.output p {
    margin-bottom: 10px;
    line-height: 1.4;
}

.command-line {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.prompt {
    color: #88C0D0;
    margin-right: 10px;
}

.command-input {
    background: none;
    border: none;
    color: #D8DEE9;
    font-family: 'Ubuntu Mono', monospace;
    font-size: inherit;
    flex: 1;
    outline: none;
}

/* Terminal renk temaları */
.output .success {
    color: #A3BE8C;
}

.output .error {
    color: #BF616A;
}

.output .warning {
    color: #EBCB8B;
}

.output .info {
    color: #88C0D0;
}

/* Yanıp sönen imleç */
.command-input::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.ascii-art {
    font-family: monospace;
    white-space: pre;
    display: block;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #4158D0, #C850C0, #FFCC70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
    background-size: 300% 300%;
    filter: brightness(1.5);
    position: relative;
}

.ascii-art::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, #4158D0, #C850C0, #FFCC70);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
    background-size: 300% 300%;
    filter: blur(15px) brightness(1.5);
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.output pre {
    font-family: 'Ubuntu Mono', monospace;
    white-space: pre;
    margin-bottom: 10px;
    line-height: 1.2;
} 