/* GLOBAL DARK THEME */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* BRAND */
.brand {
    font-size: 48px;
    font-weight: bold;
    color: #e50914;
    text-align: center;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #e50914;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.brand.has-logo::before {
    content: none;
}

.brand-logo {
    width: 16px;
    height: 16px;
    background: #e50914;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.brand.small {
    font-size: 32px;
}

/* AUTH PAGES */
.auth-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000; /* Solid black - works without images */
}

.auth-container {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 8px;
    width: 350px;
}

.auth-form h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #e50914;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

.btn-primary:hover {
    background-color: #f6121d;
}

.auth-footer {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.auth-footer a {
    color: #fff;
    text-decoration: underline;
}

/* DASHBOARD */
.nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.85);
    position: sticky;
    top: 0;
}

.nav a {
    margin-left: 20px;
    color: #fff;
    font-size: 16px;
}

.hero {
    height: 60vh;
    background: #111; /* Neutral background so it works without images */
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, black);
}

.hero h2 {
    position: absolute;
    bottom: 80px;
    left: 40px;
    font-size: 48px;
}

.hero p {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 20px;
}




#userMenuContainer {
    position: relative;
    margin-left: auto;
    z-index: 10000; /* IMPORTANT */
}

#userIcon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    background: white;
}

#userMenu {
    display: none;
    position: absolute;
    right: 0;
    top: 55px;
    width: 180px;
    background: #1c1c1c;
    padding: 10px;
    border-radius: 6px;
    z-index: 10001; /* IMPORTANT */
}
