@keyframes bell-glow-pulse {
	0% {
		filter: drop-shadow(0 0 5px var(--neon-blue, #0ff)) drop-shadow(0 0 8px var(--neon-blue, #0ff4));
	}
	50% {
		filter: drop-shadow(0 0 8px var(--neon-blue, #0ff4)) drop-shadow(0 0 14px var(--neon-blue, #0ff2));
	}
	100% {
		filter: drop-shadow(0 0 5px var(--neon-blue, #0ff)) drop-shadow(0 0 8px var(--neon-blue, #0ff4));
	}
}

.logout-alert {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.logout-alert.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.logout-message {
	background: rgba(10, 15, 31, 0.95);
	border: 1px solid rgba(0, 224, 255, 0.25);
	border-radius: 0.6rem;
	padding: 0.9rem 1.8rem;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	text-align: center;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
}

.notify-btn .notify-icon svg {
	filter: drop-shadow(0 0 5px var(--neon-blue, #0ff)) drop-shadow(0 0 8px var(--neon-blue, #0ff4));
	transition: filter 0.2s;
	animation: bell-glow-pulse 2.2s infinite;
}
.notify-btn:hover .notify-icon svg,
.notify-btn:focus .notify-icon svg {
	filter: drop-shadow(0 0 12px var(--neon-blue, #0ff)) drop-shadow(0 0 20px var(--neon-blue, #0ff8));
	animation: none;
}
/* Notification Bell Glow */
.notify-btn .notify-icon svg {
	filter: drop-shadow(0 0 6px var(--neon-blue, #0ff)) drop-shadow(0 0 12px var(--neon-blue, #0ff6));
	transition: filter 0.2s;
}
.notify-btn:hover .notify-icon svg,
.notify-btn:focus .notify-icon svg {
	filter: drop-shadow(0 0 10px var(--neon-blue, #0ff)) drop-shadow(0 0 18px var(--neon-blue, #0ff8));
}
/* Recent Activity Section Header - Cyan Text */
.dashboard-card.recent-activity h3 {
	color: var(--neon-blue, #0ff);
	text-shadow: 0 0 8px var(--neon-blue, #0ff6);
}
/* Dashboard Section SVG Icon Glow */
.dashboard-card h3 svg,
.dashboard-card h3 span > svg {
	filter: drop-shadow(0 0 6px var(--neon-blue, #0ff)) drop-shadow(0 0 12px var(--neon-blue, #0ff6));
	transition: filter 0.2s;
}
.dashboard-card:hover h3 svg,
.dashboard-card:hover h3 span > svg {
	filter: drop-shadow(0 0 10px var(--neon-blue, #0ff)) drop-shadow(0 0 18px var(--neon-blue, #0ff8));
}
/* Navbar SVG Icon Glow */
.dashboard-vertical-navbar svg {
	filter: none;
	transition: none;
}
.dashboard-vertical-navbar li.active svg,
.dashboard-vertical-navbar a:hover svg,
.dashboard-vertical-navbar a:focus svg {
	filter: none;
}
.dashboard-profile-content .dashboard-quicklinks {
	display: flex;
	gap: 1.2rem;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 0.2rem 0 0.2rem 0;
	margin: 1.2rem 0 1.7rem 0;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1.5px solid #23283a;
}
.dashboard-profile-content .dashboard-quicklinks a {
	color: #b0b6c3 !important;
	background: transparent;
	border-radius: 0;
	padding: 0.4rem 0.7rem 0.4rem 0.7rem;
	font-family: 'Orbitron', Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1.05rem;
	transition: color 0.2s, border-bottom 0.18s;
	box-shadow: none;
	text-decoration: none;
	display: inline-block;
	border-bottom: 2px solid transparent;
}
.dashboard-profile-content .dashboard-quicklinks a:hover, .dashboard-profile-content .dashboard-quicklinks a:focus {
	color: var(--neon-blue, #0ff) !important;
	background: transparent;
	border-bottom: 2px solid var(--neon-blue, #0ff);
	box-shadow: none;
}
/* Dashboard Quicklinks - grey text */
.dashboard-profile-content .dashboard-quicklinks a {
	color: #b0b6c3 !important;
	transition: color 0.2s;
}
.dashboard-profile-content .dashboard-quicklinks a:hover, .dashboard-profile-content .dashboard-quicklinks a:focus {
	color: var(--neon-blue, #0ff) !important;
}
/* Your Stats Section */

/* Redesigned Your Stats Section */
.dashboard-card.dashboard-stats {
	background: var(--glass-bg);
	border-radius: 0.875rem;
	overflow: hidden;
	box-shadow: 0 0 20px 0 var(--neon-blue), 0 1px 12px #0008;
	padding: 1.5rem 1.2rem;
	color: var(--text-main);
	min-width: 260px;
	flex: 1 1 320px;
	margin-bottom: 1.2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 480px;
	transition: box-shadow 0.25s;
}
.dashboard-card.dashboard-stats h3 {
	font-family: 'Orbitron', Arial, sans-serif;
	color: var(--neon-blue, #0ff);
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 1.2rem;
	letter-spacing: 0.09em;
	text-shadow: 0 0 8px var(--neon-blue, #0ff);
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.dashboard-card.dashboard-stats .stats-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}
.dashboard-card.dashboard-stats .stat-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(90deg, var(--secondary-bg, #23283a) 80%, transparent 100%);
	border-radius: 0.5rem;
	overflow: hidden;
	padding: 0.85rem 1.2rem;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--text-main, #eaf6ff);
	box-shadow: 0 1px 6px 0 #0ff2;
	position: relative;
	transition: background 0.2s, box-shadow 0.2s;
	cursor: pointer;
	margin-bottom: 0.1rem;
}
.dashboard-card.dashboard-stats .stat-item:hover {
	background: linear-gradient(90deg, var(--neon-blue, #0ff) 0%, var(--secondary-bg, #23283a) 100%);
	box-shadow: 0 2px 16px 0 var(--neon-blue, #0ff6);
}
.dashboard-card.dashboard-stats .stat-left {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}
.dashboard-card.dashboard-stats .stat-icon {
	font-size: 1.45rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 0.5rem;
	background: var(--stat-icon-bg, #23283a);
	box-shadow: 0 0 8px 0 var(--neon-blue, #0ff3);
	margin-right: 0.1rem;
}
.dashboard-card.dashboard-stats .stat-tournaments .stat-icon {
	color: var(--neon-blue, #0ff);
	background: #1a2233;
}
.dashboard-card.dashboard-stats .stat-clubs .stat-icon {
	color: var(--neon-green, #0f0);
	background: #1a3322;
}
.dashboard-card.dashboard-stats .stat-streams .stat-icon {
	color: var(--neon-purple, #a0f);
	background: #221a33;
}
.dashboard-card.dashboard-stats .stat-points .stat-icon {
	color: var(--success, #0fa);
	background: #1a332a;
}
.dashboard-card.dashboard-stats .stat-value {
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--neon-purple, #a0f);
	letter-spacing: 0.03em;
	min-width: 2.5rem;
	text-align: right;
	transition: color 0.2s;
}
.dashboard-card.dashboard-stats .stat-item:hover .stat-value {
	color: var(--neon-blue, #0ff);
}
.dashboard-card.dashboard-stats .stat-separator {
	height: 1px;
	background: linear-gradient(90deg, #222 0%, #444 100%);
	margin: 0.1rem 0 0.1rem 0;
	border: none;
	opacity: 0.4;
}
@media (max-width: 700px) {
	.dashboard-card.dashboard-stats {
		padding: 1.1rem 0.5rem 0.7rem 0.5rem;
		max-width: 100%;
	}
	.dashboard-card.dashboard-stats .stat-item {
		font-size: 0.98rem;
		padding: 0.7rem 0.7rem;
	}
	.dashboard-card.dashboard-stats .stat-icon {
		font-size: 1.1rem;
		width: 1.5rem;
		height: 1.5rem;
	}
	.dashboard-card.dashboard-stats .stat-value {
		font-size: 1.1rem;
	}
}
.dashboard-card.recent-activity .activity-icon {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin-right: 0.7rem;
	flex-shrink: 0;
	display: inline-block;
	box-shadow: 0 0 6px var(--neon-purple);
	background: var(--neon-purple);
	vertical-align: middle;
}
.dashboard-card.recent-activity .activity-icon.join {
	background: var(--neon-blue);
	box-shadow: 0 0 6px var(--neon-blue);
}
.dashboard-card.recent-activity .activity-icon.club {
	background: #00ffb4;
	box-shadow: 0 0 6px #00ffb4;
}
.dashboard-card.recent-activity .activity-icon.stream {
	background: #ff2dff;
	box-shadow: 0 0 6px #ff2dff;
}
.dashboard-card.recent-activity .activity-label {
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--neon-blue);
	margin-right: 0.3rem;
	letter-spacing: 0.04em;
	vertical-align: middle;
}
.dashboard-card.recent-activity .activity-icon.club + .activity-label {
	color: #00ffb4;
}
.dashboard-card.recent-activity .activity-icon.stream + .activity-label {
	color: #ff2dff;
}
.dashboard-card.recent-activity .activity-detail {
	color: var(--text-main);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.02rem;
	font-weight: 500;
	margin-left: 0.1rem;
	vertical-align: middle;
}
/* Recent Activity Section */
.dashboard-card.recent-activity {
	background: var(--glass-bg);
	border-radius: 0.875rem;
	overflow: hidden;
	box-shadow: 0 0 20px 0 var(--neon-purple), 0 1px 12px #0008;
	padding: 1.5rem 1.2rem;
	color: var(--text-main);
	min-width: 260px;
	flex: 1 1 320px;
	margin-bottom: 1.2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.dashboard-card.recent-activity h3 {
	font-family: 'Orbitron', Arial, sans-serif;
	color: var(--neon-blue, #0ff) !important;
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 1.1rem;
	letter-spacing: 0.09em;
	text-shadow: 0 0 8px var(--neon-blue, #0ff6);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.dashboard-card.recent-activity ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.dashboard-card.recent-activity li {
	display: flex;
	align-items: center;
	background: var(--secondary-bg);
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 0 8px var(--neon-purple)11;
	padding: 0.85rem 1.2rem;
	margin-bottom: 0.5rem;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--text-main);
	position: relative;
	transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
	border-left: 4px solid var(--neon-purple);
}
.dashboard-card.recent-activity li:last-child {
	margin-bottom: 0;
}
.dashboard-card.recent-activity li:hover {
	background: rgba(123,0,255,0.10);
	color: var(--neon-purple);
	box-shadow: 0 0 16px var(--neon-purple);
	transform: scale(1.02);
}
.dashboard-card.recent-activity .activity-icon {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--neon-purple);
	box-shadow: 0 0 6px var(--neon-purple);
	margin-right: 0.7rem;
	flex-shrink: 0;
}
.dashboard-card.recent-activity li:not(:last-child)::after {
	content: '';
	display: block;
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: -0.25rem;
	height: 1px;
	background: linear-gradient(90deg, var(--neon-purple) 0%, transparent 100%);
	opacity: 0.18;
}
@media (max-width: 700px) {
	.dashboard-card.recent-activity {
		padding: 1rem 0.5rem;
	}
	.dashboard-card.recent-activity li {
		font-size: 0.98rem;
		padding: 0.7rem 0.7rem;
	}
	.dashboard-card.recent-activity h3 {
		font-size: 1.08rem;
	}
}
/* Upcoming Tournaments Section */
.dashboard-card.upcoming-tournaments {
	background: var(--glass-bg);
	border-radius: 0.875rem;
	overflow: hidden;
	box-shadow: 0 0 20px 0 var(--neon-blue), 0 1px 12px #0008;
	padding: 1.5rem 1.2rem;
	color: var(--text-main);
	min-width: 260px;
	flex: 1 1 320px;
	margin-bottom: 1.2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.dashboard-card.upcoming-tournaments h3 {
	font-family: 'Orbitron', Arial, sans-serif;
	color: var(--neon-blue);
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 1.1rem;
	letter-spacing: 0.09em;
	text-shadow: 0 0 8px var(--neon-blue);
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.dashboard-card.upcoming-tournaments ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.dashboard-card.upcoming-tournaments li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--secondary-bg);
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0 0 8px var(--neon-blue)11;
	padding: 0.85rem 1.2rem;
	margin-bottom: 0.5rem;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--text-main);
	position: relative;
	transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
	border-left: 4px solid var(--neon-blue);
}
.dashboard-card.upcoming-tournaments li:last-child {
	margin-bottom: 0;
}
.dashboard-card.upcoming-tournaments li:hover {
	background: rgba(0,224,255,0.10);
	color: var(--neon-blue);
	box-shadow: 0 0 16px var(--neon-blue);
	transform: scale(1.02);
}
.dashboard-card.upcoming-tournaments .tournament-name {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.dashboard-card.upcoming-tournaments .tournament-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--neon-blue);
	box-shadow: 0 0 6px var(--neon-blue);
	margin-right: 0.5rem;
}
.dashboard-card.upcoming-tournaments .tournament-date {
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 1.02rem;
	color: var(--neon-purple);
	font-weight: 700;
	letter-spacing: 0.04em;
}
.dashboard-card.upcoming-tournaments li:not(:last-child)::after {
	content: '';
	display: block;
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: -0.25rem;
	height: 1px;
	background: linear-gradient(90deg, var(--neon-blue) 0%, transparent 100%);
	opacity: 0.18;
}
@media (max-width: 700px) {
	.dashboard-card.upcoming-tournaments {
		padding: 1rem 0.5rem;
	}
	.dashboard-card.upcoming-tournaments li {
		font-size: 0.98rem;
		padding: 0.7rem 0.7rem;
	}
	.dashboard-card.upcoming-tournaments h3 {
		font-size: 1.08rem;
	}
}
/* Split Layout */
.dashboard-split-layout {
	display: flex;
	min-height: 100vh;
	width: 100%;
	background: var(--primary-bg);
}

/* Prevent horizontal scroll on logged-in pages */
html, body {
	width: 100%;
	overflow-x: hidden;
}

/* Vertical Navbar */
.dashboard-vertical-navbar {
	width: 280px;
	min-width: 220px;
	max-width: 400px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.92) 100%);
	backdrop-filter: blur(12px);
	border-right: 1px solid rgba(74, 124, 184, 0.15);
	box-shadow: 4px 0 32px 0 rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 20;
}

.navbar-brand {
	width: 100%;
	padding: 0;
	border-bottom: 1px solid rgba(74, 124, 184, 0.15);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.navbar-brand a {
	display: inline-block;
	line-height: 0;
	transition: all 0.3s ease;
}

.navbar-brand .navbar-logo {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 0 12px rgba(138, 92, 246, 0.3));
	transition: all 0.3s ease;
	transform: scale(1.1);
}

.navbar-brand a:hover .navbar-logo {
	filter: drop-shadow(0 0 20px rgba(138, 92, 246, 0.5)) brightness(1.1);
}

.dashboard-vertical-navbar ul {
	list-style: none;
	margin: 0;
	padding: 0 1rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.dashboard-vertical-navbar li {
	width: 100%;
}
.dashboard-vertical-navbar a {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(226, 232, 240, 0.7);
	text-decoration: none;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.dashboard-vertical-navbar a .nav-icon-wrapper {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(74, 124, 184, 0.1);
	border: 1px solid rgba(74, 124, 184, 0.15);
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.dashboard-vertical-navbar a:hover,
.dashboard-vertical-navbar li.active a {
	background: rgba(74, 124, 184, 0.12);
	color: rgba(255, 255, 255, 0.95);
}
.dashboard-vertical-navbar a:hover .nav-icon-wrapper,
.dashboard-vertical-navbar li.active a .nav-icon-wrapper {
	background: rgba(138, 92, 246, 0.2);
	border-color: rgba(138, 92, 246, 0.4);
	box-shadow: 0 0 16px rgba(138, 92, 246, 0.3), inset 0 0 12px rgba(138, 92, 246, 0.15);
}
.dashboard-vertical-navbar .logout-btn {
	margin-top: auto;
	color: rgba(248, 113, 113, 0.8);
}
.dashboard-vertical-navbar .logout-btn:hover {
	background: rgba(248, 113, 113, 0.1);
	color: rgba(248, 113, 113, 1);
}
.dashboard-vertical-navbar .logout-btn:hover .nav-icon-wrapper {
	background: rgba(248, 113, 113, 0.15);
	border-color: rgba(248, 113, 113, 0.3);
	box-shadow: 0 0 12px rgba(248, 113, 113, 0.25);
}

/* Hamburger Menu Button */
.navbar-hamburger {
	display: none;
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 30;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	gap: 6px;
	padding: 0;
	width: 28px;
	height: 24px;
}

.navbar-hamburger span {
	width: 100%;
	height: 2.5px;
	background: rgba(138, 92, 246, 0.8);
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
}

.navbar-hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.navbar-hamburger.active span:nth-child(2) {
	opacity: 0;
}

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

.navbar-hamburger:hover span {
	background: rgba(138, 92, 246, 1);
	box-shadow: 0 0 8px rgba(138, 92, 246, 0.5);
}

.dashboard-vertical-navbar {
	position: fixed;
	left: 0;
	transition: left 0.3s ease;
	width: 280px;
}
.dashboard-vertical-navbar.open {
	left: 0;
}

.dashboard-main-content {
	margin-left: 280px;
	transition: margin-left 0.3s ease;
	padding-top: 4rem;
	flex: 1;
	padding: 3.5rem 3.5rem 2.5rem 3.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	background: linear-gradient(120deg, var(--primary-bg) 80%, var(--glass-bg) 100%);
	min-width: 0;
}

.dashboard-main-content.navbar-open {
	margin-left: 280px;
}
.dashboard-user-info {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 1.2rem;
}
.user-avatar-block img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 2.5px solid var(--neon-blue);
	box-shadow: 0 0 12px var(--neon-blue);
	background: #111827;
}
.user-greeting {
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: var(--neon-blue);
	letter-spacing: 0.13em;
	text-shadow: 0 0 12px var(--neon-blue);
}
.notify-btn {
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	position: relative;
	padding: 0;
	margin-left: 1.2rem;
}
.notify-icon {
	font-size: 2rem;
	color: var(--neon-purple);
	text-shadow: 0 0 8px var(--neon-purple);
}
.notify-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: var(--neon-blue);
	border-radius: 50%;
	position: absolute;
	top: 2px;
	right: 2px;
	box-shadow: 0 0 8px var(--neon-blue);
	border: 2px solid #0A0F1F;
}

.dashboard-quicklinks {
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}
.dashboard-quicklinks a {
	font-family: 'Orbitron', Arial, sans-serif;
	color: var(--neon-purple);
	background: rgba(123,0,255,0.08);
	border-radius: 1.1rem;
	padding: 0.6rem 1.3rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 0 8px var(--neon-purple)33;
	transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.dashboard-quicklinks a:hover {
	color: var(--neon-blue);
	background: rgba(0,224,255,0.12);
	box-shadow: 0 0 12px var(--neon-blue)33;
}

.dashboard-cards {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.dashboard-card {
	background: var(--glass-bg);
	border-radius: 0.875rem;
	overflow: hidden;
	box-shadow: 0 0 16px 0 var(--neon-blue), 0 1px 12px #0008;
	padding: 1.5rem 1.2rem;
	color: var(--text-main);
	min-width: 280px;
	flex: 1 1 320px;
	margin-bottom: 1.2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.dashboard-card h3 {
	/* Upcoming Tournaments Styling */
	.dashboard-card.upcoming-tournaments {
		border-left: 4px solid var(--neon-blue);
		box-shadow: 0 0 16px 0 var(--neon-blue), 0 1px 12px #0008;
	}
	.dashboard-card.upcoming-tournaments ul li {
		background: var(--glass-bg);
		border-left: 4px solid var(--neon-blue);
		color: var(--text-main);
		font-family: 'Orbitron', Arial, sans-serif;
		font-size: 1.08rem;
		font-weight: 600;
		margin-bottom: 0.5rem;
		padding: 0.8rem 1.2rem;
		border-radius: 0.8rem;
		box-shadow: 0 0 8px var(--neon-blue)22;
		transition: background 0.18s, color 0.18s, box-shadow 0.18s;
	}
	.dashboard-card.upcoming-tournaments ul li:hover {
		background: rgba(0,224,255,0.10);
		color: var(--neon-blue);
		box-shadow: 0 0 16px var(--neon-blue);
	}
	font-family: 'Orbitron', Arial, sans-serif;
	color: var(--neon-purple);
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: 0.09em;
	text-shadow: 0 0 8px var(--neon-purple);
}
.dashboard-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.dashboard-card ul li {
	background: var(--secondary-bg);
	border-radius: 0.5rem;
	overflow: hidden;
	padding: 0.7rem 1rem;
	color: var(--text-main);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1rem;
	box-shadow: 0 0 8px var(--neon-blue)11;
}
.dashboard-stats .stats-list {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 0.7rem;
}
.stat-item {
	background: var(--glass-bg);
	border-radius: 0.875rem;
	overflow: hidden;
	padding: 1.1rem 1.5rem;
	color: var(--neon-blue);
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: 0 0 8px var(--neon-blue)22;
	min-width: 120px;
	text-align: center;
}
.stat-item span {
	display: block;
	font-size: 1.5rem;
	color: var(--neon-purple);
	font-weight: 800;
	margin-top: 0.3rem;
}

@media (max-width: 1100px) {
	.dashboard-split-layout {
		flex-direction: row;
	}
	.dashboard-vertical-navbar {
		width: 280px;
		position: fixed;
		left: 0;
		top: 0;
		height: 100vh;
		border-right: 1px solid rgba(74, 124, 184, 0.15);
		border-bottom: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 0;
		box-shadow: 4px 0 32px 0 rgba(0, 0, 0, 0.5);
		z-index: 20;
	}
	.dashboard-vertical-navbar ul {
		flex-direction: column;
		gap: 0.4rem;
		padding: 0 1rem;
	}
	.dashboard-main-content {
		padding: 2.5rem 1.5rem 1.5rem 1.5rem;
		margin-left: 280px;
	}
}

@media (max-width: 768px) {
	.navbar-hamburger {
		display: flex;
	}
	
	.dashboard-vertical-navbar {
		position: fixed;
		left: -280px;
		transition: left 0.3s ease;
		width: 280px;
		height: 100vh;
		z-index: 25;
	}
	
	.dashboard-vertical-navbar.open {
		left: 0;
	}
	
	.dashboard-main-content {
		margin-left: 0;
		padding: 2.5rem 1.5rem 1.5rem 1.5rem;
		gap: 1.5rem;
	}
	
	.dashboard-main-content.navbar-open {
		margin-left: 0;
	}
}

@media (max-width: 700px) {
	.dashboard-main-content {
		padding: 1rem 0.2rem;
		gap: 1.2rem;
	}
	.dashboard-cards {
		flex-direction: column;
		gap: 1.2rem;
	}
	.dashboard-user-info {
		flex-direction: column;
		gap: 1rem;
		align-items: flex-start;
	}
	.dashboard-quicklinks {
		gap: 0.7rem;
	}
	.dashboard-card {
		min-width: 0;
		padding: 1rem 0.7rem;
	}
	.stat-item {
		min-width: 90px;
		padding: 0.7rem 0.8rem;
	}
}

/* Dashboard Theme - Neon Glassmorphism */

:root {
	--neon-blue: #00e0ff;
	--neon-purple: #7b00ff;
	--primary-bg: #0a0f1f;
	--secondary-bg: #101624;
	--glass-bg: rgba(16, 22, 36, 0.85);
	--text-main: #e6e8ef;
	--radius-xl: 1.2rem;
}

body {
	background: var(--primary-bg);
	color: var(--text-main);
	font-family: 'Inter', Arial, sans-serif;
	margin: 0;
	min-height: 100vh;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: var(--secondary-bg);
	padding: 1.2rem 3rem;
	box-shadow: 0 2px 24px 0 #000a;
	border-bottom: 1.5px solid var(--neon-purple);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(6px);
	gap: 0;
}

.navbar-logo a {
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--neon-blue);
	letter-spacing: 0.18em;
	text-shadow: 0 0 12px var(--neon-blue), 0 0 24px var(--neon-purple);
	text-transform: uppercase;
	user-select: none;
	transition: color 0.2s, text-shadow 0.2s;
	text-decoration: none;
}
.navbar-logo a:hover {
	color: var(--neon-purple);
	text-shadow: 0 0 16px var(--neon-purple), 0 0 32px var(--neon-blue);
	text-decoration: none;
}
.navbar-links {
	display: flex;
	gap: 2.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.navbar-links li {
	display: flex;
	align-items: center;
}
.navbar-links a {
	color: var(--text-main);
	text-decoration: none;
	font-weight: 700;
	font-family: 'Orbitron', Arial, sans-serif;
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	padding: 0.3em 0.7em;
	border-radius: var(--radius-xl);
	transition: color 0.2s, box-shadow 0.2s, background 0.2s, text-shadow 0.2s, transform 0.2s;
	position: relative;
}
.navbar-links li a:hover {
	color: var(--neon-blue);
	background: rgba(0,224,255,0.08);
	box-shadow: 0 0 8px var(--neon-blue);
	text-shadow: 0 0 8px var(--neon-blue);
	transform: scale(1.08);
}
.navbar-links .logout-btn {
	background: transparent;
	color: var(--neon-blue) !important;
	border: 2px solid var(--neon-blue);
	border-radius: var(--radius-xl);
	padding: 0.3em 1.2em;
	margin-left: 1.2em;
	font-weight: 800;
	font-family: 'Orbitron', Arial, sans-serif;
	text-shadow: none;
	box-shadow: none;
	outline: none;
	transition: background 0.18s, color 0.18s, border 0.18s, transform 0.18s;
}
.navbar-links .logout-btn:hover,
.navbar-links .logout-btn:active,
.navbar-links .logout-btn:focus {
	background: transparent;
	color: var(--neon-blue) !important;
	border-color: var(--neon-blue);
	transform: none;
	outline: none;
}

/* Example glass card for dashboard content */
.dashboard-glass-card {
	background: var(--glass-bg);
	border-radius: 2rem;
	box-shadow: 0 0 32px 0 var(--neon-blue), 0 1px 24px #0008;
	padding: 2rem 1.2rem;
	margin: 2.5rem auto;
	max-width: 1200px;
	color: var(--text-main);
}

/* New Dashboard Styles */

/* Welcome Banner */
.welcome-banner {
	background: linear-gradient(90deg, #5B21B6 0%, #7C3AED 50%, #047481 100%);
	border-radius: 1.5rem;
	padding: 2.5rem 3rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.welcome-content {
	flex: 1;
}

.welcome-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem 0;
}

.welcome-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.view-profile-btn {
	background: linear-gradient(135deg, #D946EF 0%, #EC4899 100%);
	color: #fff;
	border: none;
	padding: 0.9rem 2rem;
	border-radius: 0.75rem;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.view-profile-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

/* Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.stat-card {
	background: rgba(30, 35, 50, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	transition: all 0.3s;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.stat-icon {
	width: 60px;
	height: 60px;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.stat-winrate .stat-icon {
	background: rgba(139, 92, 246, 0.2);
	border: 2px solid rgba(139, 92, 246, 0.4);
}

.stat-kd .stat-icon {
	background: rgba(6, 182, 212, 0.2);
	border: 2px solid rgba(6, 182, 212, 0.4);
}

.stat-matches .stat-icon {
	background: rgba(236, 72, 153, 0.2);
	border: 2px solid rgba(236, 72, 153, 0.4);
}

.stat-achievements .stat-icon {
	background: rgba(59, 130, 246, 0.2);
	border: 2px solid rgba(59, 130, 246, 0.4);
}

.stat-info {
	flex: 1;
}

.stat-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.25rem;
}

.stat-value {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
}

.stat-winrate .stat-value {
	color: #A78BFA;
}

.stat-kd .stat-value {
	color: #22D3EE;
}

.stat-matches .stat-value {
	color: #F472B6;
}

.stat-achievements .stat-value {
	color: #60A5FA;
}

/* Dashboard Grid */
.dashboard-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1.25rem;
}

.dashboard-section {
	background: rgba(30, 35, 50, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.875rem;
	overflow: hidden;
	padding: 1.5rem;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.section-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}

.view-all-link {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: #A78BFA;
	text-decoration: none;
	transition: color 0.3s;
}

.view-all-link:hover {
	color: #C4B5FD;
}

/* Recent Matches */
.recent-matches-section {
	grid-column: 1;
	grid-row: 1 / 3;
}

.matches-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.match-item {
	background: rgba(20, 25, 40, 0.6);
	border-radius: 0.75rem;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	transition: all 0.3s;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.match-item:hover {
	background: rgba(25, 30, 45, 0.8);
	border-color: rgba(255, 255, 255, 0.1);
}

.match-status {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.status-victory {
	background: #10B981;
	box-shadow: 0 0 8px #10B981;
}

.status-defeat {
	background: #EF4444;
	box-shadow: 0 0 8px #EF4444;
}

.match-details {
	flex: 1;
}

.match-game {
	font-family: 'Orbitron', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.25rem;
}

.match-time {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

.match-result {
	text-align: right;
}

.match-outcome {
	font-family: 'Orbitron', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.match-outcome.victory {
	color: #10B981;
}

.match-outcome.defeat {
	color: #EF4444;
}

.match-score {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Notifications */
.notifications-section {
	grid-column: 2;
	grid-row: 1;
}

.notifications-list {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.notification-item {
	padding: 1rem;
	background: rgba(20, 25, 40, 0.6);
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s;
}

.notification-item:hover {
	background: rgba(25, 30, 45, 0.8);
	border-color: rgba(255, 255, 255, 0.1);
}

.notification-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: #fff;
	margin-bottom: 0.5rem;
}

.notification-time {
	font-family: 'Inter', sans-serif;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Upcoming Tournaments */
.tournaments-section {
	grid-column: 1;
	grid-row: 3;
}

.tournaments-list {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.tournament-item {
	padding: 1rem;
	background: rgba(20, 25, 40, 0.6);
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s;
}

.tournament-item:hover {
	background: rgba(25, 30, 45, 0.8);
	border-color: rgba(255, 255, 255, 0.1);
}

.tournament-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tournament-name {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
}

.tournament-date {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Quick Actions */
.quick-actions-section {
	grid-column: 2;
	grid-row: 2 / 4;
}

.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.action-btn {
	width: 100%;
	color: #fff;
	border: none;
	padding: 1rem;
	border-radius: 0.875rem;
	overflow: hidden;
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.join-tournament-btn {
	background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.join-tournament-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
}

.start-stream-btn {
	background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
	box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.start-stream-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6);
}

.find-club-btn {
	background: rgba(30, 35, 50, 0.8);
	border: 2px solid #A855F7;
	box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.find-club-btn:hover {
	background: rgba(40, 45, 60, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Performance Trend */
.performance-trend-section {
	grid-column: 2;
	grid-row: 4;
	background: linear-gradient(135deg, rgba(88, 28, 135, 0.4) 0%, rgba(59, 7, 100, 0.6) 100%);
}

.performance-content {
	text-align: left;
}

.performance-value {
	font-family: 'Orbitron', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #10B981;
	margin-bottom: 0.5rem;
}

.performance-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Trend KPIs */
.trend-meta { display:grid; grid-template-columns: repeat(3,1fr); gap: 0.875rem; margin: 1rem 0 0.75rem 0; }
.trend-kpi { background: rgba(20,25,40,0.45); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.5rem; padding: 0.6rem 0.75rem; display:flex; align-items:center; justify-content:space-between; }
.kpi-label { font-family:'Inter',sans-serif; color: rgba(255,255,255,0.7); font-size:0.85rem; }
.kpi-value { font-family:'Orbitron',sans-serif; color:#fff; font-weight:800; letter-spacing:0.02em; }
.kpi-value.positive { color:#10B981; text-shadow: 0 0 10px #10B98155; }
.kpi-value.negative { color:#EF4444; text-shadow: 0 0 10px #EF444455; }

/* Trend Chart */
.trend-chart { width: 100%; height: 140px; border-radius: 0.5rem; background: rgba(0,0,0,0.06); border: 1px solid rgba(255,255,255,0.06); overflow:hidden; position: relative; }
.sparkline { width:100%; height:100%; display:block; }
.sparkline-grid line { stroke: rgba(255,255,255,0.08); stroke-width: 0.8; }
.sparkline-path { filter: drop-shadow(0 2px 6px rgba(16,185,129,0.28)); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.sparkline-area { opacity: 0.9; }

/* Sparkline hover marker */
.sparkline-hover .hover-line { stroke: rgba(255,255,255,0.18); stroke-width: 0.8; }
.sparkline-hover .hover-dot { fill: #10B981; stroke: #ffffff; stroke-width: 0.5; filter: drop-shadow(0 0 4px rgba(16,185,129,0.6)); }

/* Sparkline tooltip */
.sparkline-tooltip { position: absolute; display: none; padding: 4px 6px; font-family: 'Inter', sans-serif; font-size: 0.75rem; color: #fff; background: rgba(20,25,40,0.92); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; box-shadow: 0 6px 16px rgba(0,0,0,0.35); pointer-events: none; white-space: nowrap; transform: translate(-50%, -110%); }

/* Trend Footer */
.trend-footer { margin-top: 0.75rem; display:flex; align-items:center; justify-content:space-between; gap: 1rem; }
.trend-delta { font-family:'Inter',sans-serif; font-size:0.9rem; color: rgba(255,255,255,0.8); }
.trend-delta.positive { color:#10B981; }
.trend-delta.negative { color:#EF4444; }
.trend-controls { display:flex; align-items:center; gap: 0.5rem; }
.trend-chip { background: rgba(20,25,40,0.6); border:1px solid rgba(255,255,255,0.08); color:#C4B5FD; font-family:'Inter',sans-serif; font-weight:600; font-size:0.8rem; padding: 0.35rem 0.65rem; border-radius: 999px; cursor:pointer; transition: all 0.2s ease; }
.trend-chip:hover { background: rgba(20,25,40,0.8); border-color: rgba(255,255,255,0.18); }
.trend-chip.active { background: #7C3AED; color:#fff; border-color: #7C3AED; box-shadow: 0 0 12px #7C3AED77; }

/* Weekly Goals */
.weekly-goals-section {
	grid-column: 1;
	grid-row: 4;
}
.goals-list {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}
.goal-item { background: rgba(20,25,40,0.6); border: 1px solid rgba(255,255,255,0.06); border-radius: 0.5rem; padding: 0.9rem 1rem; }
.goal-top { display:flex; align-items:center; justify-content:space-between; margin-bottom: 0.5rem; }
.goal-label { font-family:'Inter',sans-serif; color:#fff; font-weight:600; }
.goal-value { font-family:'Inter',sans-serif; color:rgba(255,255,255,0.6); font-size:0.875rem; }
.goal-bar { height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.goal-progress { height:100%; width:0; background: linear-gradient(90deg,#A78BFA,#7C3AED); box-shadow: 0 0 10px #7C3AED66; }
.goal-progress.goal-green { background: linear-gradient(90deg,#34D399,#10B981); box-shadow: 0 0 10px #10B98166; }
.goal-progress.goal-cyan { background: linear-gradient(90deg,#22D3EE,#06B6D4); box-shadow: 0 0 10px #06B6D466; }

/* Friends Online */
.friends-online-section { grid-column: 2; grid-row: 5; }
.friends-count { font-family:'Inter',sans-serif; color:rgba(255,255,255,0.6); font-size:0.875rem; font-weight:600; }

/* Friends filter bar */
.friends-filter-bar { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:1rem; margin-bottom:0.875rem; }
.friends-tabs { display:flex; align-items:center; gap:0.5rem; background:rgba(0,0,0,0.2); padding:0.25rem; border-radius:8px; }
.friends-tab { background:transparent; border:none; color:rgba(255,255,255,0.6); font-family:'Inter',sans-serif; font-weight:600; font-size:0.875rem; padding:0.5rem 0.75rem; border-radius:6px; cursor:pointer; transition:all 0.2s ease; display:flex; align-items:center; gap:0.4rem; position:relative; }
.friends-tab:hover { background:rgba(255,255,255,0.05); color:rgba(255,255,255,0.9); }
.friends-tab.active { background:#5865F2; color:#fff; box-shadow:0 2px 8px rgba(88,101,242,0.3); }
.friends-tab svg { width:16px; height:16px; }
.friends-search { flex:1; display:flex; justify-content:flex-end; }
.friends-search input { width: 180px; max-width: 220px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #e8ecf3; font-family:'Inter',sans-serif; font-size:0.85rem; padding: 0.45rem 0.65rem; border-radius: 8px; transition: border-color 0.2s ease, background 0.2s ease; }
.friends-search input:focus { outline: none; border-color: #5865F2; background: rgba(255,255,255,0.08); box-shadow: 0 0 0 2px rgba(88,101,242,0.2); }
.add-friend-btn { background:#5865F2; border:none; color:#fff; font-family:'Inter',sans-serif; font-weight:600; font-size:0.875rem; padding:0.5rem 1rem; border-radius:6px; cursor:pointer; transition:all 0.2s ease; }
.add-friend-btn:hover { background:#4752C4; transform:translateY(-1px); box-shadow:0 4px 12px rgba(88,101,242,0.4); }

/* Friends online count header */
.friends-online-header { font-family:'Inter',sans-serif; font-size:0.8rem; font-weight:700; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:0.75rem; padding:0 0.25rem; }

.friends-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:0; }
.friend-item { display:flex; align-items:center; gap:0.75rem; background:transparent; border:none; border-radius:0.5rem; padding:0.65rem 0.75rem; transition:all 0.2s ease; cursor:pointer; }
.friend-item:hover { background:rgba(255,255,255,0.03); }

/* Avatar with status indicator */
.friend-avatar-wrapper { position:relative; flex-shrink:0; }
.friend-avatar { width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,#7C3AED33,#06B6D433); display:inline-flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-family:'Inter',sans-serif; }
.friend-avatar::after { content:attr(data-initial); font-size:0.75rem; letter-spacing:0.02em; }
.friend-status-indicator { position:absolute; bottom:0; right:0; width:12px; height:12px; border-radius:50%; border:2px solid var(--secondary-bg,#1a1f2e); }
.friend-status-indicator.online { background:#10B981; box-shadow:0 0 8px #10B981; }
.friend-status-indicator.idle { background:#F59E0B; box-shadow:0 0 8px #F59E0B; }
.friend-status-indicator.dnd { background:#F87171; box-shadow:0 0 8px #F87171; display:flex; align-items:center; justify-content:center; }
.friend-status-indicator.dnd::before { content:''; width:6px; height:1.5px; background:#fff; display:block; }
.friend-status-indicator.invisible { background:#6B7280; box-shadow:0 0 6px #6B7280; }
.friend-status-indicator.offline { background:#6B7280; box-shadow:0 0 6px #6B7280; }

.friend-info { flex:1; min-width:0; display:flex; flex-direction:column; gap:0.15rem; }
.friend-name { display:block; font-family:'Inter',sans-serif; font-weight:600; font-size:0.95rem; color:#fff; }
.friend-game { display:block; font-family:'Inter',sans-serif; font-size:0.8rem; color:rgba(255,255,255,0.5); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* Friend action buttons */
.friend-actions { display:flex; align-items:center; gap:0.5rem; opacity:0; transition:opacity 0.2s ease; }
.friend-item:hover .friend-actions { opacity:1; }
.friend-action-btn { background:rgba(255,255,255,0.05); border:none; color:rgba(255,255,255,0.7); width:36px; height:36px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:all 0.2s ease; padding:0; }
.friend-action-btn:hover { background:rgba(255,255,255,0.1); color:#fff; }
.friend-action-btn svg { width:20px; height:20px; }

.friend-status { width:10px; height:10px; border-radius:50%; box-shadow: 0 0 8px currentColor; }
.friend-status.online { color:#10B981; background:#10B981; }
.friend-status.busy { color:#F59E0B; background:#F59E0B; }
.friend-status.offline { color:#6B7280; background:#6B7280; box-shadow: 0 0 8px #6B7280; }

/* Achievements */
.achievements-section { grid-column: 1; grid-row: 5; }
.badges-grid { display:grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 0.875rem; }
.badge-card { background: rgba(20,25,40,0.6); border:1px solid rgba(255,255,255,0.06); border-radius:0.5rem; padding:0.9rem; display:flex; align-items:center; gap:0.6rem; }
.badge-icon { width:34px; height:34px; border-radius:0.5rem; display:inline-flex; align-items:center; justify-content:center; font-weight:900; color:#0A0A0A; }
.badge-icon.gold { background: #F59E0B; color:#111827; box-shadow: 0 0 12px #F59E0B55; }
.badge-icon.cyan { background: #06B6D4; color:#06131a; box-shadow: 0 0 12px #06B6D455; }
.badge-icon.purple { background: #A78BFA; color:#0b0a18; box-shadow: 0 0 12px #A78BFA55; }
.badge-icon.pink { background: #EC4899; color:#180612; box-shadow: 0 0 12px #EC489955; }
.badge-label { font-family:'Inter',sans-serif; color:#fff; font-weight:600; }

/* Page Content Sections */
.page-content {
	width: 100%;
}

@media (max-width: 900px) {
	.navbar {
		flex-direction: column;
		align-items: stretch;
		padding: 1rem 1.2rem;
	}
	.navbar-links {
		flex-direction: column;
		gap: 1.1rem;
		margin-top: 0.7rem;
	}
	.navbar-logo {
		margin-bottom: 0.7rem;
	}
	.dashboard-glass-card {
		padding: 1.2rem 0.7rem;
	}
	
	.dashboard-grid {
		grid-template-columns: 1fr;
	}
	
	.recent-matches-section {
		grid-column: 1;
		grid-row: auto;
	}
	
	.notifications-section {
		grid-column: 1;
		grid-row: auto;
	}
	
	.tournaments-section {
		grid-column: 1;
		grid-row: auto;
	}
	
	.quick-actions-section {
		grid-column: 1;
		grid-row: auto;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.welcome-banner {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
		padding: 2rem 1.5rem;
	}
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
	.dashboard-main-content {
		padding: 3rem 2.5rem 2rem 2.5rem;
		gap: 2rem;
	}
	
	.welcome-banner {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.welcome-content {
		text-align: center;
	}
	
	.view-profile-btn {
		align-self: center;
	}
}

@media (max-width: 768px) {
	.navbar-hamburger {
		display: flex;
	}
	
	.dashboard-vertical-navbar {
		position: fixed;
		left: -280px;
		transition: left 0.3s ease;
		width: 280px;
	}
	
	.dashboard-vertical-navbar.open {
		left: 0;
	}
	
	.dashboard-main-content {
		margin-left: 0;
		padding: 2.5rem 1.5rem 1.5rem 1.5rem;
		gap: 1.5rem;
	}
	
	.dashboard-main-content.navbar-open {
		margin-left: 0;
	}
	
	.welcome-banner {
		padding: 1.5rem 1.5rem;
		border-radius: 12px;
		gap: 1.5rem;
	}
	
	.welcome-title {
		font-size: 1.5rem;
	}
	
	.welcome-subtitle {
		font-size: 0.85rem;
	}
	
	.view-profile-btn {
		width: 100%;
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.stat-card {
		padding: 1.2rem;
	}
	
	.stat-card .stat-value {
		font-size: 1.5rem;
	}
	
	.dashboard-section {
		padding: 1.5rem;
		gap: 1rem;
	}
	
	.section-header {
		gap: 0.8rem;
	}
	
	.section-title {
		font-size: 1rem;
	}
	
	.dashboard-card {
		padding: 1.2rem;
	}
	
	.your-stats-container {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.friends-list {
		max-height: 300px;
		overflow-y: auto;
	}
	
	.friend-item {
		padding: 0.8rem 1rem;
	}
	
	.badges-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8rem;
	}
	
	.badge-card {
		padding: 0.8rem;
	}
}

@media (max-width: 480px) {
	.navbar-hamburger {
		top: 0.75rem;
		left: 0.75rem;
		width: 24px;
		gap: 5px;
	}
	
	.navbar-hamburger span {
		height: 2px;
	}
	
	.dashboard-main-content {
		padding: 2rem 1rem 1rem 1rem;
		gap: 1.2rem;
		padding-top: 3.5rem;
	}
	
	.welcome-banner {
		padding: 1rem 1rem;
		gap: 1rem;
		border-radius: 8px;
	}
	
	.welcome-title {
		font-size: 1.2rem;
	}
	
	.welcome-subtitle {
		font-size: 0.75rem;
	}
	
	.view-profile-btn {
		padding: 0.5rem 0.8rem;
		font-size: 0.85rem;
	}
	
	.stats-grid {
		gap: 0.8rem;
	}
	
	.stat-card {
		padding: 1rem;
	}
	
	.stat-card .stat-value {
		font-size: 1.2rem;
	}
	
	.stat-card .stat-label {
		font-size: 0.75rem;
	}
	
	.dashboard-section {
		padding: 1.2rem;
	}
	
	.section-title {
		font-size: 0.9rem;
	}
	
	.dashboard-card {
		padding: 1rem;
	}
	
	.friend-item {
		padding: 0.6rem 0.8rem;
		gap: 0.8rem;
	}
	
	.friend-avatar {
		width: 36px;
		height: 36px;
		font-size: 0.7rem;
	}
	
	.friend-name {
		font-size: 0.85rem;
	}
	
	.friend-game {
		font-size: 0.7rem;
	}
	
	.friend-actions {
		gap: 0.4rem;
	}
	
	.friend-action-btn {
		width: 28px;
		height: 28px;
	}
	
	.badges-grid {
		grid-template-columns: 1fr;
		gap: 0.6rem;
	}
	
	.badge-card {
		padding: 0.6rem;
		font-size: 0.8rem;
	}
	
	.badge-icon {
		font-size: 1.5rem;
	}
}

/* Global responsive refinements for shared layouts */
@media (max-width: 1200px) {
	.page-header {
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.page-header-content {
		flex: 1 1 100%;
	}

	.page-header .create-tournament-btn,
	.page-header .btn-create-club {
		width: 100%;
		justify-content: center;
	}

	.tournament-controls {
		flex-wrap: wrap;
		align-items: stretch;
		gap: 1rem;
	}

	.tournament-search {
		flex: 1 1 280px;
		min-width: 260px;
	}

	.tournament-filters {
		flex-wrap: wrap;
	}

	.tournaments-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}

	.featured-streams-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	}

	.streams-grid {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	}

	.recommended-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.inbox-layout {
		grid-template-columns: 280px 1fr 260px;
	}
}

@media (max-width: 992px) {
	.dashboard-main-content {
		padding: 2.5rem 1.5rem 1.5rem 1.5rem;
		gap: 1.5rem;
	}

	.tournament-actions {
		flex-wrap: wrap;
	}

	.carousel-container {
		height: 320px;
	}

	.carousel-content {
		left: 1.5rem;
		right: 1.5rem;
		bottom: 2rem;
	}

	.carousel-title {
		font-size: 2.2rem;
	}

	.featured-streams-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.streams-grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

	.recommended-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	}

	.inbox-layout {
		grid-template-columns: 1fr;
		height: auto;
		min-height: 0;
		gap: 1rem;
	}

	.inbox-sidebar,
	.inbox-details {
		min-height: 0;
	}
}

@media (max-width: 768px) {
	.page-header {
		align-items: flex-start;
		gap: 0.6rem;
	}

	.page-header-content h1.page-title {
		font-size: 1.6rem;
	}

	.page-header .create-tournament-btn,
	.page-header .btn-create-club {
		width: 100%;
	}

	.tournament-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.tournament-search,
	.tournament-filters {
		width: 100%;
	}

	.tournament-details {
		grid-template-columns: 1fr;
	}

	.tournament-actions {
		flex-direction: column;
	}

	.carousel-container {
		height: 260px;
	}

	.carousel-content {
		bottom: 1.5rem;
		left: 1.25rem;
	}

	.carousel-title {
		font-size: 1.8rem;
	}

	.featured-streams-grid,
	.streams-grid {
		grid-template-columns: 1fr;
	}

	.recommended-grid {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}

	.inbox-sidebar,
	.inbox-details {
		width: 100%;
	}

	.inbox-main {
		min-height: 340px;
	}
}

@media (max-width: 600px) {
	.dashboard-main-content {
		padding: 2rem 1rem 1rem 1rem;
	}

	.tournaments-grid {
		grid-template-columns: 1fr;
	}

	.tournament-card {
		padding: 1.25rem;
	}

	.tournament-card-header {
		align-items: flex-start;
	}

	.tournament-icon {
		width: 52px;
		height: 52px;
	}

	.carousel-title {
		font-size: 1.6rem;
	}

	.trend-meta {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.trend-controls {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}
