:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffcb00;
    --secondary-text: #888888;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container { width: 90%; max-width: 800px; padding: 20px; }

header { margin-bottom: 40px; }
.logo { font-weight: 700; font-size: 1.2rem; }

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.highlight { color: var(--accent-color); }

.description {
    color: var(--secondary-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.contact-links { display: flex; gap: 2rem; }
.link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.link:hover { border-bottom: 1px solid var(--accent-color); color: var(--accent-color); }

/* Animasyonlar */
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }
.delay-1 { opacity: 0; animation: fadeIn 1s forwards 0.5s; }
.delay-2 { opacity: 0; animation: fadeIn 1s forwards 1s; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) { h1 { font-size: 2.5rem; } }