/* Genel Stil */
body {
    background-color: #0f172a; /* Derin gece mavisi */
    color: #cbd5e1;
    font-family: 'Fira Code', 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* Terminal Penceresi */
.terminal-container {
    width: 90%;
    max-width: 700px;
    background: #1e293b;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
}

/* Terminal Başlık Çubuğu (Kırmızı, Sarı, Yeşil Butonlar) */
.terminal-header {
    background: #334155;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.title {
    margin-left: 10px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Terminal İçeriği */
.terminal-body {
    padding: 25px;
    line-height: 1.6;
}

.command {
    color: #38bdf8; /* Komut mavisi */
    font-weight: bold;
}

.log {
    color: #94a3b8;
}

.log-progress {
    color: #facc15; /* Yükleme sarısı */
    margin-bottom: 20px;
}

h1 {
    color: #f8fafc;
    font-size: 1.8rem;
    margin: 10px 0;
}

.description {
    font-size: 1rem;
    color: #94a3b8;
}

/* Sosyal Medya Linkleri */
.social-links {
    margin-top: 30px;
    border-top: 1px dashed #334155;
    padding-top: 15px;
}

.social-links a {
    color: #38bdf8;
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #facc15;
    text-decoration: underline;
}

/* İmleç Yanıp Sönme Animasyonu */
h1::after {
    content: "_";
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}