.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 0;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}
.header-content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	gap: 20px;
	border: none;
	border-radius: 0;
	padding: 24px 40px;
	position: relative;
	z-index: 1;
}
.header-content,
.header-logo {
	display: flex;
	align-items: center;
}
.header-logo {
	flex-shrink: 0;
	z-index: 2;
}
.header-logo img {
	height: 40px;
	width: auto;
}
.header-logo-name {
	margin-left: 12px;
	font-size: 20px;
	font-weight: 500;
	color: #1a1a1a;
	letter-spacing: 0.02em;
	text-transform: none;
	white-space: nowrap;
	font-family: Manrope, sans-serif;
}
.header-nav-desktop {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	pointer-events: none;
}
.header-nav-desktop .header-nav-item {
	pointer-events: auto;
}
.header-nav-mobile {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 0;
}
.header-nav-item {
	color: rgba(26, 26, 26, 0.7);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.2s;
	position: relative;
	padding: 8px 0;
}
.header-nav-item:hover {
	color: #1a1a1a;
}
.header-nav-item.active {
	color: #0500ff;
	background: none;
	box-shadow: none;
	background-image: var(--sunrent-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-connect-btn {
	background: #0500ff;
	color: #ffffff;
	border: none;
	padding: 12px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
	font-family: Manrope, sans-serif;
	white-space: nowrap;
	box-shadow: none;
	height: 44px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
.header-connect-btn:hover {
	background: #3333ff;
}
.header-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	z-index: 2;
}
.header-language {
	position: relative;
	margin-right: 10px;
}
.header-language-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px;
	background: #0500ff22;
	border: 1px solid #0500ff;
	border-radius: 999px;
	color: #0500ff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	font-family: Manrope, sans-serif;
	height: 44px;
	box-sizing: border-box;
}
.header-language-btn:hover {
	background: #0500ff21;
}
.header-language-flag {
	width: 20px;
	height: 20px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 2px;
	flex-shrink: 0;
}
.header-language-arrow {
	font-size: 10px;
	color: #0500ff;
	transition: transform 0.2s;
}
.header-language-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 12px;
	padding: 8px;
	min-width: 180px;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.header-language-item {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 12px;
	background: transparent;
	border: none;
	border-radius: 999px;
	color: rgba(26, 26, 26, 0.9);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	font-family: Manrope, sans-serif;
	text-align: left;
}
.header-language-item:hover {
	background: rgba(5, 0, 255, 0.1);
	color: #1a1a1a;
}
.header-language-item.active {
	background: rgba(5, 0, 255, 0.12);
	background-image: var(--sunrent-gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-language-item .header-language-flag {
	width: 18px;
	height: 18px;
}
.header-right-desktop {
	display: flex;
}
.header-burger {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 101;
	flex-shrink: 0;
	margin-left: auto;
}
.header-burger span {
	width: 24px;
	height: 2px;
	background: #000000;
	border-radius: 2px;
	transition: all 0.3s;
}
.header-burger:hover span {
	background: var(--sunrent-gradient);
}
.header-mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 8px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 12px;
	padding: 20px;
	z-index: 99;
}
.header-mobile-actions {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.header-language-mobile {
	width: 100%;
}
.header-language-mobile .header-language-btn {
	width: 100%;
	justify-content: space-between;
}
.header-language-mobile
	.header-language-btn
	> span:not(.header-language-arrow) {
	color: #0500ff;
}
.header-language-dropdown-mobile {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	margin-top: 8px;
	width: 100%;
}
.header-connect-btn-mobile {
	width: 100%;
}
@media (max-width: 1024px) {
	.header-nav-desktop,
	.header-right-desktop {
		display: none;
	}
	.header {
		padding: 0;
	}
	.header-content {
		margin: 0 auto;
		padding: 20px 24px;
		justify-content: center;
	}
	.header-logo img {
		height: 32px;
	}
}
@media (max-width: 768px) {
	.header-content {
		padding: 18px 20px;
	}
	.header-logo img {
		height: 30px;
	}
	.header-logo-name {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.header {
		padding: 0;
	}
	.header-content {
		margin: 0 auto;
		padding: 16px 20px;
		gap: 12px;
	}
	.header-logo img {
		height: 28px;
	}
	.header-mobile-menu {
		margin-top: 4px;
		padding: 16px;
	}
	.header-nav-mobile {
		gap: 12px;
	}
	.header-nav-item {
		font-size: 14px;
		padding: 10px 0;
	}
	.header-mobile-actions {
		margin-top: 16px;
		padding-top: 16px;
		gap: 12px;
	}
}
