/* GENEL AYARLAR */
:root {
    --primary: #e50914; /* Netflix Kırmızısı */
    --dark-bg: #141414;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
}

* { box-sizing: border-box; }

body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding-bottom: 50px;
}

a { text-decoration: none; color: inherit; }

/* LAYOUT */
.container {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR (MENÜ) */
.navbar {
    background-color: rgba(0,0,0,0.9); /* Hafif transparan siyah */
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky; /* Sayfa kayınca üstte kalsın */
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0; padding: 0;
}

.nav-link {
    color: var(--gray-text);
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex; align-items: center; gap: 8px;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.logout-btn { color: #e74c3c; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}
.btn:hover { background-color: #b20710; }

/* MOBİL UYUM */
@media (max-width: 768px) {
    .nav-link span { display: none; } /* Mobilde yazıları gizle, sadece ikon kalsın */
    .nav-menu { gap: 20px; }
}