:root {
	--primary-blue: #3b82f6;
	--secondary-blue: #2563eb;
	--light-blue: #60a5fa;
	--dark-blue: #1e40af;
	--navy-blue: #1e3a8a;
	--sidebar-width: 280px;
	--sidebar-collapsed-width: 80px;
}

* {margin: 0; padding: 0; box-sizing: border-box;}
html {scroll-behavior: smooth;}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
	background: #ffffff !important;
	color: #000000 !important;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
}

.cyber-navbar {
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 9999;
	 
}

.cyber-navbar.scrolled {
	background: #f5f5f7 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	padding: 12px 0 !important;
}

.cyber-navbar::before {
	display: none !important;
}

.navbar-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto !important;
	background: #ffffff !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	padding: 8px 16px !important;
	transition: all 0.3s ease;
}

.cyber-navbar.scrolled .navbar-container {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* Desktop için navbar-right-public - normal düzen */
.navbar-right-public {
	display: flex;
	align-items: center;
	gap: 8px;
}

.navbar-right-public .mobile-toggle {
	display: none;
}

.navbar-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: #000000 !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
}

.navbar-logo:hover {
	transform: scale(1.02);
	opacity: 0.8;
}

.navbar-logo img {
	height: 42px;
	transition: all 0.3s ease;
}

.navbar-logo:hover img {
	transform: scale(1.05);
}

.navbar-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	justify-content: center;
	margin: 0 8px;
}

.nav-link {
	color: #000000 !important;
	text-decoration: none;
	padding: 10px 18px !important;
	border-radius: 10px !important;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease !important;
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}

.nav-link:empty, .nav-link[href=""], .nav-link[href="#"] {
	display: none !important;
}

.nav-link:hover {
	background: #e8f4fd !important;
	color: #3390ec !important;
	transform: translateY(0) !important;
	box-shadow: none !important;
}

.nav-link.active {
	background: #e8f4fd !important;
	color: #3390ec !important;
	font-weight: 700 !important;
	border: none !important;
	box-shadow: none !important;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	cursor: pointer;
	padding: 10px;
	border-radius: 10px !important;
	transition: all 0.3s;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
}

.mobile-toggle:hover {
	background: #f5f5f7 !important;
}

.mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #707579 !important;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.btn-signin {
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	color: #000000 !important;
	padding: 10px 20px !important;
	border-radius: 10px !important;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
}

.btn-signin:hover {
	background: #f5f5f7 !important;
	transform: scale(1.02);
}

.btn-signup {
	background: #3390ec !important;
	border: none !important;
	color: #ffffff !important;
	padding: 10px 20px !important;
	border-radius: 10px !important;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	box-shadow: 0 2px 8px rgba(51, 144, 236, 0.3) !important;
}

.btn-signup:hover {
	background: #2481cc !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(51, 144, 236, 0.4) !important;
}

.nav-dropdown {
	position: relative;
}

.dropdown-trigger {
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	color: #000000 !important;
	padding: 10px 16px !important;
	border-radius: 10px !important;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	white-space: nowrap;
}

.dropdown-trigger .lang-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	flex-shrink: 0;
}

/* Sadece ikon olan dil butonu */
.lang-trigger-only-icon {
	min-width: 44px !important;
	padding: 10px 12px !important;
	justify-content: center !important;
}

.dropdown-trigger:hover {
	background: #f5f5f7 !important;
}

.arrow {
	font-size: 10px;
	transition: transform 0.3s ease;
	color: #707579;
}

.nav-dropdown.active .arrow,
.nav-dropdown.open .arrow {
	transform: rotate(180deg);
}

.dropdown-content {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	border-radius: 12px !important;
	padding: 8px;
	min-width: 200px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
	z-index: 10001;
	animation: dropdownSlide 0.2s ease;
}

.nav-dropdown.active .dropdown-content,
.nav-dropdown.open .dropdown-content {
	display: block;
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-content a {
	display: block;
	padding: 12px 16px;
	color: #000000 !important;
	text-decoration: none;
	border-radius: 8px !important;
	transition: all 0.2s ease;
	font-size: 15px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background: #e8f4fd !important;
	color: #3390ec !important;
}

.dropdown-content a.active {
	background: #e8f4fd !important;
	color: #3390ec !important;
	font-weight: 600;
}

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: var(--sidebar-width);
	height: 100vh;
	background: #ffffff !important;
	border-right: 1px solid #e1e3e6 !important;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05) !important;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	transition: width 0.3s ease;
	overflow-y: auto;
	overflow-x: visible;
}

.sidebar.collapsed {
	width: var(--sidebar-collapsed-width);
}

.sidebar-header-mobile {
	display: none;
}

.sidebar-close-btn {
	display: none;
}

.sidebar-toggle-btn {
	position: fixed;
	top: 110px;
	left: 268px;
	width: 28px;
	height: 28px;
	background: #3390ec !important;
	border: 2px solid #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 1001;
	box-shadow: 0 2px 8px rgba(51, 144, 236, 0.3);
}

.sidebar.collapsed .sidebar-toggle-btn {
	left: 68px;
}

.sidebar-toggle-btn:hover {
	background: #2481cc !important;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(51, 144, 236, 0.4);
}

.sidebar-toggle-btn i {
	color: #ffffff;
	font-size: 14px;
	transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle-btn i {
	transform: rotate(180deg);
}

.sidebar-logo {
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	border-bottom: 1px solid #e1e3e6;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
}

.sidebar.collapsed .sidebar-logo {
	justify-content: center;
	padding: 24px 10px;
}

.sidebar-logo-img {
	height: 40px;
	width: 40px;
	object-fit: contain;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.sidebar.collapsed .sidebar-logo-img {
	height: 40px;
	width: 40px;
}

.sidebar-logo-text {
	font-size: 1.3rem;
	font-weight: 900;
	color: #000000 !important;
	transition: all 0.3s ease;
	opacity: 1;
}

.sidebar.collapsed .sidebar-logo-text {
	opacity: 0;
	width: 0;
	overflow: hidden;
}

.sidebar-logo:hover .sidebar-logo-img {
	transform: scale(1.05);
}

.sidebar-menu {
	flex: 1;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sidebar-link {
	color: #707579 !important;
	text-decoration: none;
	padding: 14px 20px;
	margin: 0 12px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.sidebar.collapsed .sidebar-link {
	justify-content: center;
	padding: 14px 10px;
	margin: 0 8px;
}

.sidebar-link i {
	font-size: 18px;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
}

.sidebar-link span {
	flex: 1;
	transition: opacity 0.3s ease;
}

.sidebar.collapsed .sidebar-link span {
	opacity: 0;
	width: 0;
	overflow: hidden;
}

.sidebar-link:hover {
	background: #e8f4fd !important;
	color: #3390ec !important;
	transform: translateX(4px);
}

.sidebar.collapsed .sidebar-link:hover {
	transform: scale(1.05);
}

.sidebar-link:hover i {
	color: #3390ec !important;
}

.sidebar-link.active {
	background: #e8f4fd !important;
	color: #3390ec !important;
	font-weight: 700;
}

.sidebar-link.active i {
	color: #3390ec !important;
}

.top-navbar {
	position: fixed;
	top: 0;
	left: var(--sidebar-width);
	right: 0;
	z-index: 999;
	background: #ffffff !important;
	border-bottom: 1px solid #e1e3e6 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
	transition: left 0.3s ease;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 30px;
	gap: 20px;
}

.sidebar.collapsed ~ .top-navbar {
	left: var(--sidebar-collapsed-width);
}

.navbar-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.notification-bell {
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	color: #707579 !important;
	padding: 10px 12px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	position: relative;
}

.notification-bell:hover {
	background: #f5f5f7 !important;
	transform: scale(1.05);
}

.bell-icon {
	font-size: 1.2rem;
}

.notification-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ef4444 !important;
	color: white;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 999px;
	min-width: 20px;
	height: 20px;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
	z-index: 10;
	border: 2px solid #ffffff;
}

.notification-badge.show {
	display: flex;
}

.nav-badge, .balance-display {
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	color: #000000 !important;
	padding: 10px 14px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	min-height: 44px;
}

.nav-badge:hover, .balance-display:hover {
	background: #f5f5f7 !important;
}

/* Para Birimi Butonu - Beyaz Stil (Dil ve User ile Aynı) */
.balance-display {
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	color: #000000 !important;
	padding: 10px 14px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	min-height: 44px;
	box-shadow: none !important;
}

.balance-display:hover {
	background: #f5f5f7 !important;
	transform: translateY(0);
	box-shadow: none !important;
}

/* SVG bakiye ikonu - siyah */
.balance-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	flex-shrink: 0;
	color: #000000;
}

.balance-display .arrow {
	color: #707579;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #ffffff !important;
	border: 1px solid #e1e3e6 !important;
	border-radius: 12px;
	padding: 8px;
	min-width: 220px;
	margin-top: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
	z-index: 10001;
	list-style: none;
}

.nav-dropdown.active .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
	display: block;
}

.dropdown-menu a,
.dropdown-menu li a {
	display: block;
	padding: 12px 16px;
	color: #000000 !important;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu li a:hover {
	background: #e8f4fd !important;
	color: #3390ec !important;
}

.dropdown-menu a[href*="signout"],
.dropdown-menu a.signout-link {
	color: #ef4444 !important;
	font-weight: 700;
	margin-top: 8px;
	padding-top: 12px;
	border-top: 1px solid #e1e3e6;
}

.dropdown-menu a[href*="signout"]:hover,
.dropdown-menu a.signout-link:hover {
	background: #fee2e2 !important;
	color: #dc2626 !important;
}

.add-funds-link {
	background: #e8f4fd !important;
	border: 1px solid #3390ec;
	color: #3390ec !important;
	font-weight: 700 !important;
}

.add-funds-link:hover {
	background: #d0e8fb !important;
}

/* Add Funds İkon Stilleri */
.add-funds-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	flex-shrink: 0;
	color: #3390ec;
	transition: all 0.2s ease;
}

.add-funds-link {
	display: flex !important;
	align-items: center;
	gap: 10px;
}

.add-funds-link:hover .add-funds-icon {
	color: #2481cc;
	transform: scale(1.05);
}

.currency-divider {
	height: 1px;
	background: #e1e3e6;
	margin: 8px 12px;
	list-style: none;
}

.mobile-sidebar-toggle {
	display: none;
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 1001;
	background: #ffffff;
	border: 1px solid #e1e3e6;
	padding: 12px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mobile-sidebar-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background: #707579;
	margin: 5px 0;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-sidebar-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-sidebar-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-sidebar-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.main-content {
	min-height: 100vh;
	background: #ffffff !important;
	transition: all 0.3s ease;
	padding: 20px 40px;
}

body:not(.admin-layout) .main-content {
	padding-top: 150px;
}

body.admin-layout .main-content {
	margin-left: var(--sidebar-width);
	margin-top: 70px;
	min-height: calc(100vh - 70px);
	transition: margin-left 0.3s ease;
	padding: 30px 40px 30px 50px;
}

body.admin-layout .sidebar.collapsed ~ * .main-content,
body.admin-layout .sidebar.collapsed ~ .main-content {
	margin-left: var(--sidebar-collapsed-width);
}

.scroll-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 56px;
	height: 56px;
	background: #3390ec !important;
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 24px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(51, 144, 236, 0.3);
	z-index: 1000;
}

.scroll-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 6px 16px rgba(51, 144, 236, 0.4);
}

.scroll-top.show {
	display: flex;
}

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #f5f5f7;
}

::-webkit-scrollbar-thumb {
	background: #e1e3e6;
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: #c1c3c6;
}

/* 🔥 ÖZEL USER DROPDOWN TASARIMI */

.user-dropdown .dropdown-content {
	min-width: 240px !important;
	padding: 0 !important;
	border-radius: 16px !important;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Kullanıcı Bilgi Header */
.user-dropdown-header {
	padding: 20px 20px 16px 20px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 1px solid #e1e3e6;
	display: flex;
	align-items: center;
	gap: 12px;
}

.user-dropdown-avatar {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #3390ec 0%, #2563eb 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(51, 144, 236, 0.25);
}

.user-dropdown-info {
	flex: 1;
	min-width: 0;
}

.user-dropdown-name {
	font-size: 15px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-dropdown-balance {
	font-size: 13px;
	font-weight: 600;
	color: #3390ec;
	display: flex;
	align-items: center;
	gap: 4px;
}

.user-dropdown-balance svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	flex-shrink: 0;
}

/* Menu Items Container */
.user-dropdown-menu {
	padding: 8px;
}

/* Menu Item */
.user-dropdown-item {
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 12px 16px !important;
	color: #374151 !important;
	text-decoration: none;
	border-radius: 10px !important;
	transition: all 0.2s ease;
	font-size: 14px !important;
	font-weight: 500 !important;
	margin-bottom: 2px;
}

.user-dropdown-item svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	flex-shrink: 0;
	color: #6b7280;
	transition: all 0.2s ease;
}

.user-dropdown-item:hover {
	background: #f3f4f6 !important;
	color: #3390ec !important;
	transform: translateX(2px);
}

.user-dropdown-item:hover svg {
	color: #3390ec;
	transform: scale(1.1);
}

/* Divider */
.user-dropdown-divider {
	height: 1px;
	background: #e5e7eb;
	margin: 8px 12px;
}

/* Logout Item - Special Style */
.user-dropdown-logout {
	display: flex !important;
	align-items: center;
	gap: 12px;
	padding: 12px 16px !important;
	color: #ef4444 !important;
	text-decoration: none;
	border-radius: 10px !important;
	transition: all 0.2s ease;
	font-size: 14px !important;
	font-weight: 600 !important;
	margin-top: 4px;
}

.user-dropdown-logout svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	flex-shrink: 0;
	color: #ef4444;
	transition: all 0.2s ease;
}

.user-dropdown-logout:hover {
	background: #fee2e2 !important;
	color: #dc2626 !important;
	transform: translateX(2px);
}

.user-dropdown-logout:hover svg {
	color: #dc2626;
	transform: scale(1.1) rotate(-5deg);
}

/* Animation */
@keyframes userDropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-8px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.user-dropdown.active .dropdown-content,
.user-dropdown.open .dropdown-content {
	animation: userDropdownSlide 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Desktop için içerik hizalama */
@media (min-width: 969px) {
	/* Bottom navigation'ı desktop'ta gizle */
	.bottom-nav {
		display: none !important;
	}
	
	body:not(.admin-layout) .main-content {
		max-width: 1400px !important;
		margin: 0 auto !important;
		padding-left: 5px !important;
		padding-right: 40px !important;
	}
	
	.mobile-header {
		display: none !important;
	}
	
	.mobile-sidebar-toggle {
		display: none !important;
	}
	
	.sidebar-overlay {
		display: none !important;
	}
}

/* 🔥 MOBİL RESPONSIVE - YENİ TASARIM */

@media (max-width: 968px) {
	/* Sidebar Header Mobile - Şık tasarım */
	.sidebar-header-mobile {
		display: none !important;
		align-items: center;
		justify-content: center;
		padding: 20px;
		border-bottom: 1px solid #e1e3e6;
		background: #ffffff;
		position: sticky;
		top: 0;
		z-index: 10;
	}
	
	.sidebar-header-mobile .sidebar-logo {
		border: none !important;
		padding: 0 !important;
		flex: 1;
		justify-content: center;
	}
	
	/* Desktop logo */
	.sidebar-logo-desktop {
		display: flex !important;
	}
	
	/* Sidebar Header Mobile - Mobilde göster */
	.sidebar-header-mobile {
		display: flex !important;
	}
	
	/* Desktop logo'yu mobilde gizle */
	.sidebar > .sidebar-logo-desktop {
		display: none !important;
	}
	
	/* Sidebar Overlay - Smooth fade-in */
	.sidebar-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.4);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
		            visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
		cursor: pointer;
		-webkit-tap-highlight-color: transparent !important;
		-webkit-touch-callout: none !important;
		-webkit-user-select: none !important;
		user-select: none !important;
	}
	
	.sidebar-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	
	/* Overlay'e tıklama efekti yok */
	.sidebar-overlay:active,
	.sidebar-overlay:focus,
	.sidebar-overlay:hover {
		-webkit-tap-highlight-color: transparent !important;
		outline: none !important;
	}
	
	/* Sidebar Mobil - Profesyonel smooth animasyon */
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		z-index: 1001;
		width: 320px !important;
		max-width: 85vw;
		box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12) !important;
		will-change: transform;
	}
	
	.sidebar.mobile-open {
		transform: translateX(0);
	}
	
	/* Desktop toggle butonu gizle */
	.sidebar-toggle-btn {
		display: none !important;
	}
	
	/* 🔥 YENİ MOBİL ÜST NAVBAR TASARIMI */
	.top-navbar {
		left: 0 !important;
		height: 60px;
		padding: 0 12px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		position: fixed;
		top: 0;
		background: #ffffff !important;
		border-bottom: 1px solid #e1e3e6 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
	}
	
	/* Sol taraf: Hamburger menü - Optimize Edilmiş */
	.mobile-sidebar-toggle {
		display: flex !important;
		position: static;
		background: transparent !important;
		border: none !important;
		padding: 6px !important;
		border-radius: 0 !important;
		cursor: pointer;
		flex-direction: column;
		min-width: 36px;
		min-height: 36px;
		align-items: center;
		justify-content: center;
		order: 1;
		flex-shrink: 0;
		transition: all 0.2s ease;
		gap: 2px;
		-webkit-tap-highlight-color: transparent !important;
		-webkit-touch-callout: none !important;
		-webkit-user-select: none !important;
		user-select: none !important;
	}
	
	.mobile-sidebar-toggle:hover {
		background: transparent !important;
	}
	
	.mobile-sidebar-toggle:active {
		background: transparent !important;
		transform: scale(1);
	}
	
	.mobile-sidebar-toggle:focus {
		outline: none !important;
	}
	
	.mobile-sidebar-toggle span {
		display: block;
		width: 20px;
		height: 2.5px;
		background: #000000;
		border-radius: 0;
		transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	}
	
	.mobile-sidebar-toggle span:not(:first-child) {
		margin-top: 0 !important;
	}
	
	/* Hamburger menü açıkken animasyon - Smooth X */
	.sidebar.mobile-open ~ .top-navbar .mobile-sidebar-toggle {
		gap: 0;
	}
	
	.sidebar.mobile-open ~ .top-navbar .mobile-sidebar-toggle span:nth-child(1) {
		transform: rotate(45deg) translate(4px, 4px);
	}
	
	.sidebar.mobile-open ~ .top-navbar .mobile-sidebar-toggle span:nth-child(2) {
		opacity: 0;
		transform: scale(0);
	}
	
	.sidebar.mobile-open ~ .top-navbar .mobile-sidebar-toggle span:nth-child(3) {
		transform: rotate(-45deg) translate(4px, -4px);
	}
	
	/* Sağ taraf: Bakiye + Dil + User */
	.navbar-right {
		display: flex !important;
		align-items: center;
		gap: 6px;
		order: 3;
		margin-left: auto;
		flex-shrink: 0;
	}
	
	/* Bildirim ikonunu gizle */
	.notification-bell {
		display: none !important;
	}
	
	/* Bakiye görünümü - kompakt */
	.currency-dropdown {
		display: flex !important;
	}
	
	.balance-display {
		background: #ffffff !important;
		border: 1px solid #e1e3e6 !important;
		color: #000000 !important;
		border-radius: 10px !important;
		padding: 8px 12px !important;
		min-height: 36px !important;
		font-size: 13px !important;
		font-weight: 600 !important;
		white-space: nowrap;
		gap: 6px !important;
		box-shadow: none !important;
	}
	
	.balance-display .balance-icon {
		width: 16px;
		height: 16px;
		color: #000000;
	}
	
	.balance-display .arrow {
		color: #707579;
		opacity: 0.9;
		font-size: 8px;
	}
	
	.balance-display:hover {
		background: #f5f5f7 !important;
		box-shadow: none !important;
	}
	
	.balance-display span:nth-child(2) {
		max-width: 70px;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	/* Dil dropdown'u - kompakt */
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) {
		display: flex !important;
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger {
		background: #ffffff !important;
		border: 1px solid #e1e3e6 !important;
		border-radius: 8px !important;
		padding: 8px !important;
		min-height: 36px !important;
		min-width: 36px !important;
		font-size: 13px !important;
		gap: 6px !important;
		justify-content: center !important;
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger .lang-icon {
		width: 18px;
		height: 18px;
	}
	
	/* SVG dünya ikonu - Profesyonel */
	.lang-icon {
		width: 18px;
		height: 18px;
		color: #374151;
		stroke: currentColor;
		stroke-width: 2;
		flex-shrink: 0;
		transition: all 0.2s ease;
	}
	
	.dropdown-trigger:hover .lang-icon {
		color: #3390ec;
		transform: scale(1.1);
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger span:first-child {
		display: none;
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger .arrow {
		font-size: 8px;
	}
	
	/* User dropdown - kompakt */
	.user-dropdown {
		display: flex !important;
	}
	
	.nav-badge {
		min-height: 36px !important;
		padding: 6px 10px !important;
		font-size: 13px !important;
		border-radius: 8px !important;
		gap: 4px !important;
	}
	
	.nav-badge .arrow {
		font-size: 8px;
	}
	
	/* User Dropdown Mobil */
	.user-dropdown .dropdown-content {
		min-width: 220px !important;
	}
	
	.user-dropdown-header {
		padding: 16px 16px 12px 16px;
	}
	
	.user-dropdown-avatar {
		width: 44px;
		height: 44px;
		font-size: 18px;
	}
	
	.user-dropdown-name {
		font-size: 14px;
	}
	
	.user-dropdown-balance {
		font-size: 12px;
	}
	
	.user-dropdown-item,
	.user-dropdown-logout {
		padding: 10px 14px !important;
		font-size: 13px !important;
	}
	
	/* Main Content */
	body.admin-layout .main-content {
		margin-left: 0 !important;
		margin-top: 60px !important;
		margin-bottom: 75px !important;
		padding: 20px 16px !important;
		min-height: calc(100vh - 135px);
	}
	
	body.admin-layout .sidebar.collapsed ~ * .main-content,
	body.admin-layout .sidebar.collapsed ~ .main-content {
		margin-left: 0 !important;
	}
	
	/* Bottom Navigation - Profesyonel ve minimal + şeffaflık */
	.bottom-nav {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 65px;
		background: rgba(255, 255, 255, 0.85);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		border-top: 1px solid rgba(229, 231, 235, 0.6);
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
		display: flex;
		align-items: center;
		justify-content: space-around;
		padding: 6px 8px;
		z-index: 900;
	}
	
	.bottom-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		text-decoration: none;
		color: #6b7280;
		font-size: 11px;
		font-weight: 500;
		padding: 8px 12px;
		border-radius: 12px;
		transition: all 0.2s ease;
		min-width: 65px;
		position: relative;
	}
	
	.bottom-nav-item i {
		font-size: 20px;
		transition: all 0.2s ease;
	}
	
	.bottom-nav-item.active {
		color: #3390ec;
		background: transparent;
	}
	
	.bottom-nav-item.active i {
		color: #3390ec;
		transform: translateY(-2px);
	}
	
	.bottom-nav-item:not(.center-btn):not(.active):active {
		transform: scale(0.95);
	}
	
	/* Center button - Profesyonel */
	.bottom-nav-item.center-btn {
		width: 56px;
		height: 56px;
		background: #3390ec;
		border-radius: 50%;
		color: #ffffff;
		font-size: 0;
		margin-top: -28px;
		box-shadow: 0 4px 12px rgba(51, 144, 236, 0.25);
		border: 4px solid #ffffff;
		padding: 0;
		transition: all 0.2s ease;
	}
	
	.bottom-nav-item.center-btn:active {
		transform: translateY(1px) scale(0.96);
		box-shadow: 0 2px 8px rgba(51, 144, 236, 0.25);
	}
	
	.bottom-nav-item.center-btn.active {
		background: #2563eb;
		box-shadow: 0 6px 16px rgba(51, 144, 236, 0.35);
	}
	
	.bottom-nav-item.center-btn i {
		font-size: 24px;
		color: #ffffff;
	}
	
	/* Sidebar linkler */
	.sidebar-link {
		margin: 0 16px !important;
		padding: 14px 16px !important;
	}
	
	.sidebar-menu {
		padding: 16px 0 !important;
	}
	
	/* Cyber Navbar (Public) - Mobil */
	.cyber-navbar {
		top: 10px !important;
		padding: 10px 0 !important;
	}
	
	.navbar-container {
		min-height: 60px !important;
		padding: 10px 16px !important;
		margin: 0 12px !important;
		flex-wrap: wrap;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
	}
	
	/* Logo - Sol */
	.navbar-logo {
		order: 1;
		flex: 0 0 auto;
		margin-right: auto;
	}
	
	.navbar-logo img {
		max-height: 30px !important;
	}
	
	/* Right Container - Dil ve Hamburger */
	.navbar-right-public {
		order: 2;
		display: flex !important;
		align-items: center;
		gap: 8px;
		margin-left: auto;
	}
	
	/* Dil Dropdown */
	.navbar-right-public .nav-dropdown {
		display: flex !important;
	}
	
	.navbar-right-public .nav-dropdown .dropdown-trigger {
		background: #ffffff !important;
		border: 1px solid #e1e3e6 !important;
		padding: 8px 12px !important;
		min-height: 36px !important;
		border-radius: 8px !important;
	}
	
	/* Hamburger Menü */
	.navbar-right-public .mobile-toggle {
		display: flex !important;
	}
	
	/* Sign in/up butonları gizle */
	.navbar-right-public .btn-signin,
	.navbar-right-public .btn-signup {
		display: none !important;
	}
	
	.navbar-menu {
		order: 10;
		flex: 0 0 100%;
		width: 100%;
		height: 0;
		overflow: hidden;
		flex-direction: column;
		opacity: 0;
		transition: all 0.3s ease;
	}
	
	.navbar-menu.active {
		height: auto !important;
		padding-top: 12px !important;
		border-top: 1px solid #e1e3e6 !important;
		opacity: 1 !important;
	}
	
	.navbar-menu .nav-link {
		width: 100% !important;
		justify-content: center !important;
		padding: 10px 16px !important;
		background: #f5f5f7 !important;
		border-radius: 12px !important;
	}
	
	.mobile-buttons-container {
		display: flex !important;
		gap: 12px !important;
		width: 100% !important;
		margin-top: 7px !important;
	}
	
	.mobile-buttons-container .btn-signin,
	.mobile-buttons-container .btn-signup {
		flex: 1 !important;
		display: flex !important;
	}
	
	body:not(.admin-layout) .main-content {
		padding: 120px 20px 40px 20px !important;
	}
}

/* Küçük telefonlar için ekstra ayarlamalar */
@media (max-width: 480px) {
	/* Hamburger menü - küçük ekranlar */
	.mobile-sidebar-toggle {
		min-width: 32px !important;
		min-height: 32px !important;
		padding: 5px !important;
		gap: 2px;
	}
	
	.mobile-sidebar-toggle span {
		width: 18px !important;
		height: 2.2px !important;
	}
	
	.balance-display {
		padding: 7px 10px !important;
		min-height: 34px !important;
		font-size: 12px !important;
		box-shadow: none !important;
	}
	
	.balance-display .balance-icon {
		width: 15px;
		height: 15px;
		color: #000000;
	}
	
	.balance-display span:nth-child(2) {
		max-width: 60px;
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger {
		padding: 7px !important;
		min-height: 34px !important;
		min-width: 34px !important;
		font-size: 12px !important;
	}
	
	.navbar-right > .nav-dropdown:not(.currency-dropdown):not(.user-dropdown) .dropdown-trigger .lang-icon {
		width: 17px;
		height: 17px;
	}
	
	.lang-icon {
		width: 16px !important;
		height: 16px !important;
	}
	
	.nav-badge {
		min-height: 34px !important;
		padding: 6px 8px !important;
		font-size: 12px !important;
	}
	
	.navbar-right {
		gap: 4px;
	}
	
	.bottom-nav {
		height: 60px;
		padding: 4px 6px;
	}
	
	.bottom-nav-item {
		min-width: 60px;
		padding: 6px 10px;
		font-size: 10px;
		gap: 3px;
	}
	
	.bottom-nav-item i {
		font-size: 18px;
	}
	
	.bottom-nav-item.center-btn {
		width: 52px;
		height: 52px;
		margin-top: -26px;
	}
	
	.bottom-nav-item.center-btn i {
		font-size: 22px;
	}
	
	.sidebar {
		width: 280px !important;
		max-width: 90vw !important;
	}
}


