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

body {
    background-color: #0a0a0a; /* Derin siyah arka plan */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 40px 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 60px;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-weight: 300;
    color: #888;
    font-size: 1.1rem;
}

/* Proje Kutuları */
.project {
    background: #141414;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    border-color: #444;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #007aff; /* Modern mavi */
    margin-bottom: 12px;
}

.ongoing .status-badge {
    color: #aaa; /* Geliştirilenler için daha sönük renk */
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* Buton */
.btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.85rem;
    color: #555;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}