.nb-header {
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.nb-container {
	width: 1360px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	align-content: center;
	padding: var(--padding-20) var(--padding-40);
	padding-bottom: 0px;
	box-sizing: border-box;
	gap: 8px 16px;
	max-width: 1360px;
	margin: 0 auto;
}

/* Nav items wrapper */
.nb-nav-items {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

/* Profile link (person icon) */
.nb-profile-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	white-space: nowrap;
	border-radius: 50%;
	padding: 6px;
	transition: background 0.2s ease;
	width: 32px;
	height: 32px;
	line-height: 1;
}

.nb-profile-link:hover {
	background: rgba(128, 128, 128, 0.15);
}

.nb-profile-icon {
	display: block;
	width: 22px;
	height: 22px;
}

.nb-logo-img {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--padding-0) var(--padding-15);
	box-sizing: border-box;
	min-width: 255px;
	cursor: pointer;
}

.nb-logo {
	height: 51.2px;
	width: 177px;
	position: relative;
	object-fit: cover;
}


.nb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--padding-0) var(--padding-15);
	box-sizing: border-box;
	gap: var(--gap-22);
	min-width: 255px;
}

.nb-play-btn {
	height: 24px;
	width: 24px;
	box-shadow: 0px 17.416667938232422px 52.78px rgba(255, 210, 0, 0.19), 0px 7.2762675285339355px 22.05px rgba(255, 210, 0, 0.14), 0px 3.8902409076690674px 11.79px rgba(255, 210, 0, 0.11), 0px 2.1808369159698486px 6.61px rgba(255, 210, 0, 0.09), 0px 1.1582261323928833px 3.51px rgba(255, 210, 0, 0.08), 0px 0.4819638729095459px 1.46px rgba(255, 210, 0, 0.05);
	border-radius: 8.48px;
	background-color: var(--color-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
}

.nb-play-icon {
	height: 16px;
	width: 16px;
	position: relative;
	flex-shrink: 0;
}

.nb-faq-link {
	height: var(--height-22);
	width: 35px;
	font-size: 16px;
	position: relative;
}

.nb-faq-text {
	position: relative;
	line-height: var(--lh-17_4);
	cursor: pointer;
}

.nb-login-link {
	height: var(--height-22);
	width: 80px;
	font-size: 16px;
	position: relative;
}

/* ========== Responsive Navbar ========== */

@media (max-width: 768px) {
	.nb-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: var(--padding-12) var(--padding-15) !important;
		gap: var(--gap-6);
	}
	.nb-logo-img {
		min-width: unset;
		padding: var(--padding-0) var(--padding-5);
		width: 100%;
		justify-content: center;
	}
	.nb-logo {
		height: 78px;
		width: 270px;
	}
	.nb-nav-items {
		width: 100%;
		justify-content: center;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.nb-container {
		padding: var(--padding-10) var(--padding-10) !important;
	}
	.nb-logo {
		height: 68px;
		width: 235px;
	}

	.nb-nav-items {
		gap: 8px;
	}
	.nb-profile-icon {
		width: 20px;
		height: 20px;
	}
}

/* ========== Dark mode logo toggle ========== */
.nb-logo-dark {
	display: none;
}

[data-theme="dark"] .nb-logo-light {
	display: none;
}

[data-theme="dark"] .nb-logo-dark {
	display: flex;
}
