/* Peepsule full-feature nav enhancements */
.ps-nav-desktop { display: none; }
@media (min-width: 960px) {
	.ps-nav-desktop { display: block; }
}
.ps-dd { position: relative; }
.ps-dd-trigger {
	color: rgba(232, 240, 254, 0.88);
	font-weight: 600;
	font-size: 0.875rem;
	padding: 8px 12px;
	border-radius: 10px;
	white-space: nowrap;
	background: transparent;
	border: none;
	cursor: pointer;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s ease;
}
.ps-dd-trigger:hover {
	background: rgba(0, 229, 255, 0.12);
	color: #00e5ff;
	box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}
.ps-dd-chevron { opacity: 0.7; transition: transform 0.2s ease; }
.ps-dd:hover .ps-dd-chevron,
.ps-dd-trigger[aria-expanded="true"] .ps-dd-chevron { transform: rotate(180deg); }
.ps-dd-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	padding: 8px;
	background: rgba(12, 18, 32, 0.96);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border: 1px solid rgba(0, 229, 255, 0.22);
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 229, 255, 0.08);
	z-index: 400;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.ps-dd-panel a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	color: rgba(232, 240, 254, 0.9);
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none !important;
	transition: all 0.15s ease;
}
.ps-dd-panel a:hover {
	background: rgba(0, 229, 255, 0.12);
	color: #00e5ff;
}
.ps-dd-icon {
	width: 1.25rem;
	text-align: center;
	opacity: 0.85;
	font-size: 0.8rem;
}
.ps-dd-danger {
	color: #f87171 !important;
	margin-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 12px !important;
}
.ps-dd-danger:hover {
	background: rgba(248, 113, 113, 0.12) !important;
	color: #fca5a5 !important;
}
.ps-dd-mega {
	flex-direction: row;
	min-width: 480px;
	gap: 8px;
	padding: 14px;
}
.ps-dd-mega-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 140px;
}
.ps-dd-heading {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #00e5ff;
	padding: 4px 12px 8px;
}
.ps-nav-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid rgba(0, 229, 255, 0.2);
	background: rgba(0, 229, 255, 0.06);
	cursor: pointer;
}
@media (min-width: 960px) {
	.ps-nav-burger { display: none; }
}
.ps-burger-line {
	display: block;
	height: 2px;
	width: 100%;
	background: #00e5ff;
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.ps-burger-line.ps-burger-open:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ps-burger-line.ps-burger-open:nth-child(2) { opacity: 0; }
.ps-burger-line.ps-burger-open:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ps-nav-mobile {
	border-top: 1px solid rgba(0, 229, 255, 0.15);
	background: rgba(8, 12, 22, 0.98);
	max-height: min(80vh, 640px);
	overflow-y: auto;
	padding: 12px 16px 24px;
}
@media (min-width: 960px) {
	.ps-nav-mobile { display: none !important; }
}
.ps-mob-section {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 16px;
}
.ps-mob-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #00e5ff;
	padding: 8px 10px 6px;
}
.ps-mob-section a {
	display: block;
	padding: 11px 12px;
	border-radius: 10px;
	color: rgba(232, 240, 254, 0.92);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none !important;
}
.ps-mob-section a:hover {
	background: rgba(0, 229, 255, 0.1);
	color: #00e5ff;
}
.ps-mob-out { color: #f87171 !important; }
.ps-mob-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 8px 4px 4px;
}
[x-cloak] { display: none !important; }
