.global-header {
	background: rgba(13, 13, 18, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2000;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 90, 30, 0.2);
}

.global-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.logo img { width: 32px; height: 32px; }
.logo span {
	font-family: 'Orbitron','Segoe UI',sans-serif;
	font-size: 1.4rem;
	background: linear-gradient(to right, #F8F9FA, #FF5A1E);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.global-nav { margin-left: auto; }
.global-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.global-menu a { color: #A1A1B5; text-decoration: none; transition: color .2s ease; }
.global-menu a:hover { color: #ffffff; }

.user-profile {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.user-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #FF5A1E; object-fit: cover; }
.username { font-weight: 500; color: #F8F9FA; }
.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: rgba(26, 26, 38, 0.95);
	backdrop-filter: blur(15px);
	border-radius: 8px;
	padding: 10px 0;
	min-width: 200px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 90, 30, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}
.user-profile:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu ul { list-style: none; margin: 0; padding: 0; }
.dropdown-menu a {
	color: #A1A1B5;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.2s ease;
}
.dropdown-menu a:hover {
	color: #FF5A1E;
	padding-left: 25px;
}
.dropdown-menu i {
	width: 20px;
	text-align: center;
}

.btn-admin { color: #FF5A1E; border: 2px solid #FF5A1E; border-radius: 999px; padding: 8px 14px; text-decoration: none; }
.btn-admin:hover { color: #fff; background: #FF5A1E; }

.mobile-menu-toggle { background: none; border: none; color: #fff; font-size: 1.4rem; display: none; }

@media (max-width: 768px) {
	.global-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,13,18,.98); padding: 10px 20px; flex-direction: column; }
	.global-menu.open { display: flex; }
	.mobile-menu-toggle { display: block; }
}

