/* ======================
   HEADER
====================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 12px 40px;

    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

/* LEFT / CENTER / RIGHT */

.header-left {
    display: flex;
    align-items: center;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ======================
   LOGO
====================== */

.logo img,
.custom-logo-link img {
    height: 32px;
    width: auto;
}

/* ======================
   NAVIGATION
====================== */

.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.nav a:hover,
.nav .current-menu-item a {
    color: #e50914;
}

/* ======================
   SEARCH + LOGIN
====================== */

.header-right input {
    background: #111;
    border: 1px solid #222;
    padding: 8px 14px;
    border-radius: 20px;
    color: white;
    outline: none;
}

.header-right input::placeholder {
    color: #777;
}

.login-btn {
    background: #e50914;
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 13px;
}