/* Notification types for main notification system */

/* ── Easter-egg particle animation ── */
@keyframes eggFloat {
	0% {
		transform: translateY(0) translateX(0) rotate(0deg) scale(1);
		opacity: 1;
	}

	15% {
		opacity: 1;
	}

	100% {
		transform: translateY(-110vh) translateX(var(--drift, 0px)) rotate(360deg) scale(0.3);
		opacity: 0;
	}
}

/* ── #scary Easter egg ── */
.scary-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
}

.scary-blackout {
	position: absolute;
	inset: 0;
	background: #000;
	animation: scaryFadeIn .4s ease-out forwards;
}

.scary-reveal {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	clip-path: circle(0% at 50% 50%);
	background: radial-gradient(ellipse at 50% 40%, #1a0000 0%, #000 70%);
	transition: clip-path .8s ease-out;
}

.scary-phase2 .scary-reveal {
	clip-path: circle(85% at 50% 50%);
}

.scary-phase2 .scary-blackout {
	opacity: 0;
	transition: opacity .6s;
}

.scary-fadeout {
	animation: scaryOut .8s ease-in forwards;
}

@keyframes scaryFadeIn {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes scaryOut {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

/* Monster face */
.scary-monster {
	position: relative;
	width: 280px;
	height: 320px;
	animation: scaryShake .12s linear infinite;
}

.scary-phase2 .scary-monster {
	animation: scaryAppear .3s ease-out forwards, scaryShake .08s linear .3s infinite;
}

@keyframes scaryAppear {
	0% {
		transform: scale(0.1) rotate(-10deg);
		opacity: 0;
	}

	60% {
		transform: scale(1.15) rotate(3deg);
		opacity: 1;
	}

	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes scaryShake {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(-3px, 2px) rotate(-1deg);
	}

	50% {
		transform: translate(2px, -2px) rotate(1deg);
	}

	75% {
		transform: translate(-2px, 1px) rotate(-0.5deg);
	}

	100% {
		transform: translate(0, 0) rotate(0deg);
	}
}

/* Eyes */
.scary-eyes {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}

.scary-eye {
	width: 70px;
	height: 70px;
	background: radial-gradient(circle, #ff0000 30%, #880000 70%, #330000);
	border-radius: 50%;
	box-shadow: 0 0 30px #ff0000, 0 0 60px #ff000088, inset 0 0 15px #000;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: scaryEyePulse .5s ease-in-out infinite alternate;
}

.scary-eye.left {
	transform: rotate(-8deg);
}

.scary-eye.right {
	transform: rotate(8deg);
}

.scary-pupil {
	width: 22px;
	height: 35px;
	background: #000;
	border-radius: 50%;
	box-shadow: 0 0 4px #000;
	animation: scaryPupilDart 1.5s ease-in-out infinite;
}

@keyframes scaryEyePulse {
	0% {
		box-shadow: 0 0 30px #ff0000, 0 0 60px #ff000088;
		transform: scale(1);
	}

	100% {
		box-shadow: 0 0 50px #ff0000, 0 0 90px #ff0000aa;
		transform: scale(1.08);
	}
}

@keyframes scaryPupilDart {

	0%,
	100% {
		transform: translateX(0);
	}

	30% {
		transform: translateX(-8px) translateY(3px);
	}

	70% {
		transform: translateX(8px) translateY(-2px);
	}
}

/* Nose */
.scary-nose {
	text-align: center;
	font-size: 18px;
	color: #440000;
	margin-top: 8px;
	filter: blur(0.5px);
}

/* Mouth */
.scary-mouth {
	margin-top: 10px;
	width: 200px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(180deg, #1a0000, #0d0000);
	border-radius: 0 0 100px 100px;
	border: 3px solid #330000;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 0 20px #000, 0 0 15px rgba(255, 0, 0, .3);
	animation: scaryMouthOpen .4s ease-out .3s both;
}

@keyframes scaryMouthOpen {
	0% {
		height: 10px;
	}

	100% {
		height: 80px;
	}
}

.scary-teeth-row {
	display: flex;
	justify-content: center;
	gap: 3px;
	position: absolute;
	left: 0;
	right: 0;
}

.scary-teeth-row.top {
	top: 0;
}

.scary-teeth-row.bottom {
	bottom: 0;
}

.scary-tooth {
	display: block;
	width: 18px;
	height: 22px;
	background: linear-gradient(180deg, #e8e0d0, #a89880);
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}

.scary-teeth-row.bottom .scary-tooth {
	border-radius: 5px 5px 0 0;
	height: 18px;
	background: linear-gradient(0deg, #e8e0d0, #a89880);
}

/* Blood drip */
.scary-drip {
	position: absolute;
	bottom: -30px;
	left: 30%;
	font-size: 24px;
	animation: scaryDrip 1.5s ease-in infinite;
	opacity: 0;
}

.scary-drip.d2 {
	left: 65%;
	animation-delay: .7s;
}

@keyframes scaryDrip {
	0% {
		transform: translateY(-20px);
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	100% {
		transform: translateY(60px);
		opacity: 0;
	}
}

.chat-egg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
	overflow: hidden;
	z-index: 99999;
}

.chat-egg-particle {
	pointer-events: none;
	user-select: none;
	will-change: transform, opacity;
	line-height: 1;
	display: block;
}

.honor-badge {
	margin-left: 6px;
	font-size: 0.95em;
	vertical-align: middle
}

.honor-points-num {
	font-weight: 700;
	margin-left: 6px;
	opacity: 0.95;
	font-size: 0.95em;
	color: var(--accent);
}

.honor-badge[title] {
	cursor: default
}

.notification-info {
	background: #17692a;
	color: #fff;
}

.notification-success {
	background: #217a3a;
	color: #fff;
}

.notification-warning {
	background: #b97a00;
	color: #fff;
}

.notification-error {
	background: #b92a2a;
	color: #fff;
}

.email-log-status-ok {
	color: #2dbf6e;
}

.email-log-status-fail {
	color: #e53;
}

.email-inbox-unread {
	color: #ffd166;
	font-weight: 700;
}

.email-inbox-read {
	color: var(--muted);
}

.chat-balloon {
	display: inline-block;
	max-width: 95%;
	min-width: 20%;
	padding: 10px 16px;
	border-radius: 18px;
	margin: 2px 0;
	font-size: 15px;
	background: #e6eef8;
	color: #232b45;
	box-shadow: 0 2px 8px #00aaff22;
	position: relative;
	word-break: break-word;
}

.chat-balloon-mine {
	background: linear-gradient(135deg, #008c3a 60%, #006622 100%);
	color: #fff;
	border-bottom-right-radius: 4px;
	margin-left: auto;
}

/* Sent message timestamp color for better contrast */
.chat-balloon-mine .small.muted {
	color: #b2ffd6 !important;
}

.chat-balloon-other {
	background: #e6eef8;
	color: #232b45;
	border-bottom-left-radius: 4px;
	margin-right: auto;
}

/* Emoji reactions — pills row below message */
.reaction-pills {
	position: absolute;
	bottom: -8px;
	right: 6px;
	display: inline-flex;
	gap: 3px;
	z-index: 2;
}

.reaction-pill {
	background: var(--bg, #fff);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	cursor: pointer;
	font-size: 13px;
	padding: 1px 6px;
	line-height: 1.4;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: transform 0.15s;
	user-select: none;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #555;
}

.reaction-pill:hover {
	transform: scale(1.15);
}

.reaction-pill.active {
	background: #e3f2fd;
	border-color: #90caf9;
}

.chat-balloon-mine .reaction-pill {
	color: #555;
}

.chat-balloon-mine .reaction-pill.active {
	background: #e3f2fd;
	border-color: #90caf9;
}

.reaction-count {
	font-size: 11px;
	font-weight: 700;
	color: #333;
}

/* Legacy compat */
.thumbsup-reaction {
	display: none;
}

/* Emoji react picker row inside dropdown */
.wa-react-row {
	display: flex;
	gap: 2px;
	padding: 6px 10px;
	justify-content: center;
}

.wa-react-emoji {
	font-size: 20px;
	cursor: pointer;
	padding: 2px 4px;
	border-radius: 6px;
	transition: background 0.12s, transform 0.12s;
	line-height: 1;
}

.wa-react-emoji:hover {
	background: rgba(0, 0, 0, 0.08);
	transform: scale(1.2);
}

/* WhatsApp-style chevron dropdown */
.wa-chevron-wrap {
	position: absolute;
	top: 4px;
	right: 4px;
	z-index: 5;
}

.wa-chevron-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 2px 5px;
	border-radius: 50%;
	color: inherit;
	opacity: 0;
	transition: opacity 0.15s, background 0.15s;
}

.chat-balloon:hover .wa-chevron-btn {
	opacity: 0.55;
}

.wa-chevron-btn:hover {
	opacity: 1 !important;
	background: rgba(0, 0, 0, 0.08);
}

.chat-balloon-mine .wa-chevron-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.wa-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 130px;
	background: var(--bg, #fff);
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	z-index: 100;
	color: var(--text, #232b45);
}

/* Left-side messages: open dropdown to the right so it doesn't overflow */
.chat-balloon-other .wa-dropdown {
	right: auto;
	left: 0;
}

.wa-dropdown.open {
	display: block;
}

.wa-menu-item {
	padding: 9px 14px;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.12s;
	white-space: nowrap;
	user-select: none;
}

.wa-menu-item:hover {
	background: rgba(0, 0, 0, 0.06);
}

.wa-menu-report {
	color: #c62828;
}

.wa-menu-report:hover {
	background: #ffebee;
}

/* Reply quote block inside message balloon */
.chat-reply-quote {
	background: rgba(0, 0, 0, 0.06);
	border-left: 3px solid var(--accent, #00aaff);
	border-radius: 6px;
	padding: 4px 8px;
	margin-bottom: 4px;
	font-size: 12px;
	line-height: 1.3;
	max-width: 100%;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.chat-reply-quote strong {
	font-size: 11px;
	color: var(--accent, #00aaff);
}

.chat-reply-quote span {
	opacity: 0.8;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.chat-balloon-mine .chat-reply-quote {
	background: rgba(255, 255, 255, 0.15);
	border-left-color: rgba(255, 255, 255, 0.6);
}

.chat-balloon-mine .chat-reply-quote strong {
	color: #b2ffd6;
}

/* Reply preview bar above input */
.chat-reply-preview {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: var(--card-bg, #181f2e);
	border-left: 3px solid var(--accent, #00aaff);
	border-radius: 6px 6px 0 0;
	font-size: 13px;
	margin: 0;
	color: var(--text, #e6eef8);
}

.chat-reply-preview-inner {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.chat-reply-preview-inner strong {
	font-size: 12px;
	color: var(--accent, #00aaff);
}

.chat-reply-preview-inner span {
	font-size: 12px;
	color: var(--muted, #7a8599);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.chat-reply-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	padding: 2px 6px;
	border-radius: 50%;
	opacity: 0.6;
	transition: opacity 0.15s;
	color: var(--text, #e6eef8);
}

.chat-reply-close:hover {
	opacity: 1;
}

/* Link warning banner in chat */
.chat-link-warning {
	margin-top: 6px;
	color: #7c2d12;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	padding: 6px 8px;
	border-radius: 8px;
	max-width: 260px;
	white-space: normal;
	line-height: 1.3;
	font-size: 12px;
	display: block;
}

/* Extra bottom padding on balloons to accommodate reaction pill */
.chat-balloon {
	padding-bottom: 14px;
	margin-bottom: 6px;
}

.chat-message-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 2px;
	background: none;
	box-shadow: none;
	padding: 4px 0 2px 0;
}

#chat-input {
	height: 26px;
	padding: 2px 6px;
	font-size: 13px;
	border-radius: 6px;
	border: 1.2px solid #00aaff44;
	background: var(--bg);
	color: var(--text);
	outline: none;
	box-shadow: 0 0 2px #00aaff11;
	transition: border 0.15s, box-shadow 0.15s;
	max-width: 220px;
}

#chat-input:focus {
	border: 1.2px solid var(--accent2);
	box-shadow: 0 0 6px #00aaff33;
}

@media (max-width: 700px) {
	#chat-input {
		height: 22px;
		font-size: 12px;
		max-width: 120px;
		padding: 2px 4px;
	}
}

/* Quick chat input tweaks for main page */
#chat-form {
	margin-top: 8px;
}

#chat-input {
	height: 32px;
	padding: 4px 8px;
	font-size: 15px;
	border-radius: 7px;
	border: 1.5px solid #00aaff55;
	background: var(--bg);
	color: var(--text);
	outline: none;
	box-shadow: 0 0 4px #00aaff22;
	transition: border 0.18s, box-shadow 0.18s;
}

#chat-input:focus {
	border: 1.5px solid var(--accent2);
	box-shadow: 0 0 8px #00aaff55;
}

/* --- Games grid Xbox Store style --- */
.games-title {
	font-size: 2.2rem;
	margin-bottom: 24px;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	letter-spacing: 0.04em;
	text-align: left;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin: 20px 0 0 0;
	padding: 0;
}

/* Keep clan cards from stretching full width when only one exists */
.clans-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
	justify-content: flex-start;
	justify-items: start;
}

.clans-grid .game-card {
	max-width: 320px;
	width: 100%;
}

.game-card {
	display: flex;
	flex-direction: column;
	background: var(--card-bg);
	border-radius: 18px;
	box-shadow: 0 4px 32px #00aaff22, 0 0 0 2px #00ff9922;
	border: 2px solid #00aaff33;
	text-decoration: none;
	color: var(--text);
	transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
	overflow: hidden;
	min-height: 300px;
	position: relative;
}

.game-card:hover {
	transform: translateY(-6px) scale(1.025);
	box-shadow: 0 8px 40px #00ff9944, 0 0 0 3px #00aaff55;
	border-color: var(--accent2);
}

/* toggle button on game cards */
.game-toggle {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.game-toggle.added {
	background: linear-gradient(90deg, #00ff99, #00aaff);
	color: #06121a
}


.game-card-img-wrap {
	width: 100%;
	height: 320px;
	background: #181f2e;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-bottom: 1.5px solid #00aaff33;
}

.game-card-img {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	background: #232b45;
	transition: filter 0.18s;
	display: block;
}

.game-card-img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #232b45 60%, #181f2e 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 2.5rem;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	letter-spacing: 0.04em;
}

.game-card-info {
	padding: 18px 18px 16px 18px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.game-card-title {
	font-size: 1.3rem;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--accent2);
	letter-spacing: 0.03em;
	text-shadow: 0 0 8px #00aaff33;
}

.game-card-desc {
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 0;
	flex: 1 1 auto;
	line-height: 1.5;
}

@media (max-width: 1200px) {
	.games-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 820px) {
	.games-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 560px) {
	.games-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.game-card {
		min-height: 220px;
	}

	.game-card-img-wrap {
		height: 180px;
	}

	.game-card-info {
		padding: 10px 8px 8px 8px;
	}

	.game-card-title {
		font-size: 1rem;
	}
}

/* Unread message badge for navbar */
.unread-badge-navbar {
	display: none;
	position: absolute;
	top: -8px;
	right: -18px;
	min-width: 18px;
	height: 18px;
	background: #e53;
	color: #fff;
	border-radius: 12px;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	padding: 0 5px;
	box-shadow: 0 0 6px #e53;
	font-weight: bold;
	z-index: 2;
}

:root {
	--bg: #10131a;
	--text: #e6eef8;
	--muted: #7a8599;
	--header-bg: linear-gradient(90deg, #1a233a 0%, #232b45 100%);
	--header-text: #e6eef8;
	--card-bg: linear-gradient(135deg, #181f2e 60%, #232b45 100%);
	--accent: #00ff99;
	--accent2: #00aaff;
	--primary: #00aaff;
	--button-bg: linear-gradient(90deg, #232b45 0%, #00aaff 100%);
	--button-text: #fff;
	--glow: 0 0 8px #00ff99, 0 0 16px #00aaff;
}

.theme-dark {
	--bg: #10131a;
	--text: #e6eef8;
	--muted: #7a8599;
	--header-bg: linear-gradient(90deg, #1a233a 0%, #232b45 100%);
	--header-text: #e6eef8;
	--card-bg: linear-gradient(135deg, #181f2e 60%, #232b45 100%);
	--accent: #00ff99;
	--accent2: #00aaff;
	--primary: #00aaff;
	--button-bg: linear-gradient(90deg, #232b45 0%, #00aaff 100%);
	--button-text: #fff;
	--glow: 0 0 8px #00ff99, 0 0 16px #00aaff;
}

.theme-light {
	--bg: #f7faff;
	--text: #232b45;
	--muted: #7a8599;
	--header-bg: linear-gradient(90deg, #e6eef8 0%, #cbe7ff 100%);
	--header-text: #232b45;
	--card-bg: linear-gradient(135deg, #fff 60%, #e6eef8 100%);
	--accent: #0077ff;
	--accent2: #00aaff;
	--primary: #0077ff;
	--button-bg: linear-gradient(90deg, #cbe7ff 0%, #0077ff 100%);
	--button-text: #232b45;
	--glow: 0 0 8px #0077ff, 0 0 16px #00aaff;
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	font-family: 'Segoe UI', 'Arial', 'sans-serif';
	margin: 0;
	padding: 0;
	color: var(--text);
	background: var(--bg);
	transition: background .2s, color .2s;
	min-height: 100vh;
	letter-spacing: 0.01em;
}

header {
	background: var(--header-bg);
	color: var(--header-text);
	padding: 10px 18px;
	padding-top: calc(10px + env(safe-area-inset-top, 0px));
	padding-left: calc(18px + env(safe-area-inset-left, 0px));
	padding-right: calc(18px + env(safe-area-inset-right, 0px));
	display: flex;
	align-items: center;
	box-shadow: 0 2px 16px #00ff9955;
	border-bottom: 2px solid #00aaff44;
}

header h1 {
	display: inline;
	margin: 0;
	font-size: 26px;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	letter-spacing: 0.08em;
	text-shadow: 0 0 8px #00ff99, 0 0 16px #00aaff;
}

header nav {
	margin-left: 24px;
}

header a {
	color: var(--header-text);
	text-decoration: none;
	margin-right: 16px;
	font-weight: 600;
	transition: color 0.2s;
	text-shadow: 0 0 4px #00aaff;
}

header a.gm-dnav-item {
	margin-right: 0;
	text-shadow: none;
}

header a:hover {
	color: var(--accent);
}

.container {
	max-width: 1100px;
	margin: 32px auto;
	padding: 0 20px;
}

.card {
	background: var(--card-bg);
	padding: 20px 18px;
	border-radius: 14px;
	box-shadow: 0 2px 24px #00aaff22, 0 0 0 2px #00ff9922;
	margin-bottom: 18px;
	border: 1.5px solid #00aaff33;
}

.flashes {
	list-style: none;
	padding: 0;
	color: crimson;
	margin: 8px 0
}

footer {
	padding: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
	margin-top: 0
}

.gm-footer {
	margin-top: 48px;
	padding: 0 0 0 0;
	background: #0c0f16;
	color: #e4e8ef;
	border-top: none;
	font-size: 14px;
	letter-spacing: 0.01em;
	position: relative;
	overflow: hidden;
}

.gm-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,170,255,0.4), rgba(168,85,247,0.4), transparent);
}

.theme-dark .gm-footer {
	background: #080a10;
}

/* ── Stats bar ── */
.gm-footer-stats-bar {
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	padding: 14px 20px;
}

.gm-footer-stats-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

.gm-footer-stat {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
	font-size: 12px;
	color: #8b95a8;
	transition: background 0.2s;
}

.gm-footer-stat:hover {
	background: rgba(255,255,255,0.07);
}

.gm-footer-stat-icon {
	font-size: 13px;
	line-height: 1;
}

.gm-footer-stat strong {
	color: #e4e8ef;
	font-weight: 700;
}

.gm-footer-stat--online strong {
	color: #34d399;
}

/* ── Main content grid ── */
.gm-footer-content {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 40px;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 24px 32px;
	align-items: start;
}

.gm-footer-section {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gm-footer-logo-section {
	align-items: flex-start;
}

.gm-footer-logo {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
	object-fit: contain;
	margin-bottom: 6px;
	transition: transform 0.3s;
}

.gm-footer-logo:hover {
	transform: scale(1.08) rotate(-2deg);
}

.gm-footer-title {
	font-size: 1.25em;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #fff;
	margin-bottom: 2px;
}

.gm-footer-tagline {
	font-size: 12px;
	color: #5a6478;
	line-height: 1.4;
}

.gm-footer-about-section {
	align-items: center;
	text-align: center;
}

.gm-footer-about {
	font-size: 13px;
	color: #8b95a8;
	line-height: 1.65;
	max-width: 340px;
}

.gm-footer-contact-section {
	align-items: flex-end;
	text-align: right;
	gap: 4px;
}

.gm-footer-contact-label {
	font-weight: 700;
	color: #e4e8ef;
	font-size: 13px;
	margin-bottom: 4px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gm-footer-email {
	font-size: 13px;
	color: #8b95a8;
}

.gm-footer-email a {
	color: #60a5fa;
	text-decoration: none;
	transition: color 0.2s;
}

.gm-footer-email a:hover {
	color: #93c5fd;
}

.gm-footer-location {
	font-size: 12px;
	color: #4b5563;
	margin-top: 2px;
	display: flex;
	align-items: center;
	gap: 4px;
	justify-content: flex-end;
}

/* ── Bottom bar ── */
.gm-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 16px 24px;
	text-align: center;
}

.gm-footer-copyright {
	font-size: 11px;
	color: #3d4555;
	letter-spacing: 0.02em;
}

/* Light mode footer */
.theme-light .gm-footer {
	background: #f1f3f7;
	color: #1a233a;
}

.theme-light .gm-footer::before {
	background: linear-gradient(90deg, transparent, rgba(0,119,255,0.3), rgba(139,92,246,0.3), transparent);
}

.theme-light .gm-footer-stats-bar {
	background: rgba(0,0,0,0.02);
	border-bottom-color: rgba(0,0,0,0.06);
}

.theme-light .gm-footer-stat {
	background: rgba(0,0,0,0.03);
	border-color: rgba(0,0,0,0.06);
	color: #64748b;
}

.theme-light .gm-footer-stat strong {
	color: #1e293b;
}

.theme-light .gm-footer-title {
	color: #0f172a;
}

.theme-light .gm-footer-about {
	color: #475569;
}

.theme-light .gm-footer-contact-label {
	color: #1e293b;
}

.theme-light .gm-footer-email,
.theme-light .gm-footer-email a {
	color: #2563eb;
}

.theme-light .gm-footer-location {
	color: #94a3b8;
}

.theme-light .gm-footer-tagline {
	color: #94a3b8;
}

.theme-light .gm-footer-copyright {
	color: #94a3b8;
}

.theme-light .gm-footer-bottom {
	border-top-color: rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
	.gm-footer-content {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 20px 24px;
		text-align: center;
	}

	.gm-footer-logo-section {
		align-items: center;
	}

	.gm-footer-contact-section {
		align-items: center;
		text-align: center;
	}

	.gm-footer-location {
		justify-content: center;
	}

	.gm-footer-stats-inner {
		gap: 4px;
	}

	.gm-footer-stat {
		padding: 4px 10px;
		font-size: 11px;
	}
}

form label {
	display: block;
	margin: 8px 0
}

button,
.button {
	padding: 10px 18px;
	border-radius: 8px;
	border: none;
	background: var(--button-bg);
	color: var(--button-text);
	cursor: pointer;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: var(--glow);
	transition: background 0.2s, box-shadow 0.2s, color 0.2s;
	outline: none;
}

button:hover,
.button:hover {
	background: linear-gradient(90deg, #00ff99 0%, #00aaff 100%);
	color: #10131a;
	box-shadow: 0 0 16px #00ff99, 0 0 32px #00aaff;
}

.theme-light button:hover,
.theme-light .button:hover {
	background: linear-gradient(90deg, #0077ff 0%, #00aaff 100%);
	color: #fff;
	box-shadow: 0 0 8px rgba(0, 119, 255, 0.3), 0 0 16px rgba(0, 170, 255, 0.2);
}

.muted {
	color: var(--muted)
}

.user-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px
}

.user-item {
	padding: 12px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	border-radius: 8px
}

/* player avatar in lists */
.player-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Chat layout helpers: left = user list, right = message area */
.chat-layout {
	display: flex;
	gap: 12px;
	max-width: 1800px;
	width: 100%;
}

.chat-layout .chat-left {
	width: 264px;
}

.chat-layout .chat-right {
	flex: 1;
	max-width: 680px;
	min-width: 0;
}

@media (max-width: 700px) {
	.chat-layout {
		flex-direction: column;
	}

	.chat-layout .chat-left {
		width: 100%;
	}

	.chat-layout .chat-right {
		min-width: 0;
		max-width: 100%;
	}

	/* Make quick chat window more compact on phones */
	#chat-window {
		height: 240px !important;
	}

	.chat-left ul#user-list {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}
}

/* Responsive chat form: allow input to fill available width and wrap on small screens */
.chat-form-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.chat-form-row button,
.chat-form-row #emoji-btn {
	flex: 0 0 auto;
}

.chat-form-row #chat-input {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	height: 36px;
}

@media (max-width:700px) {
	.chat-form-row {
		flex-wrap: wrap;
	}

	.chat-form-row #chat-input {
		order: 2;
		width: 100%;
		height: 40px;
	}

	.chat-form-row button[type=submit] {
		order: 3;
		width: 100%;
	}

	.chat-form-row #emoji-btn {
		order: 1;
	}
}

/* Ensure chat-right doesn't force horizontal overflow */
.chat-right {
	min-width: 0;
}

/* Chat user selector styling */

.user-select {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 8px;
	border-radius: 8px;
	background: linear-gradient(90deg, #181f2e 60%, #232b45 100%);
	box-shadow: 0 0 8px #00aaff33;
	border: 1.5px solid #00aaff33;
	margin-bottom: 4px;
	transition: background 0.2s, box-shadow 0.2s;
}

.user-select:hover {
	background: linear-gradient(90deg, #232b45 60%, #00aaff 100%);
	box-shadow: 0 0 16px #00ff99, 0 0 32px #00aaff;
}

.user-select.is-selected {
	background: linear-gradient(90deg, #1c3b2b 60%, #00ff99 100%);
	box-shadow: 0 0 16px #00ff99, 0 0 32px #00ff9955;
	border-color: #00ff99;
}

.user-select img {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #00aaff99;
	box-shadow: 0 0 6px #00aaff55;
}

/* Avatar used inside find-gamers cards */
.find-avatar {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.06);
	display: block;
}

.user-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--muted);
	border-radius: 6px;
	display: inline-block;
	margin-right: 8px;
	position: relative;
	background: #181f2e;
	transition: border 0.2s, background 0.2s;
}

.user-checkbox:checked {
	background: var(--accent2);
	border-color: var(--accent2);
	box-shadow: 0 0 8px #00aaff;
}

.user-checkbox:checked::after {
	content: '✓';
	color: #fff;
	position: absolute;
	left: 4px;
	top: 0;
	font-size: 14px;
}

.user-radio {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--muted);
	border-radius: 50%;
	display: inline-block;
	margin-right: 8px;
	position: relative;
	background: #181f2e;
	transition: border 0.2s, background 0.2s;
}

.user-radio:checked {
	border-color: var(--accent2);
	box-shadow: 0 0 8px #00aaff;
}

.user-radio:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent2);
}

/* online/offline indicator dots */

.status-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-left: 8px;
	vertical-align: middle;
	box-shadow: 0 0 8px #00ff99;
	border: 2px solid #232b45;
}

.status-online {
	background: #00ff99;
	box-shadow: 0 0 8px #00ff99, 0 0 16px #00ff99;
}

.status-offline {
	background: #ff3b3b;
	box-shadow: 0 0 8px #ff3b3b, 0 0 16px #ff3b3b;
}

/* Admin stats card (notifications panel) */
.admin-stat-card {
	background: #151c2a;
	border: 1px solid #00aaff33;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 0 16px #00aaff22;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
}

.admin-stat-title {
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text);
}

.admin-stat-value {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent2);
}

.admin-stat-sub {
	font-size: 0.9rem;
	color: var(--muted);
	font-weight: 500;
}

.admin-stat-bar {
	height: 14px;
	background: #2b333f;
	border-radius: 8px;
	overflow: hidden;
}

.admin-stat-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--accent2), #00d1ff);
}

/* News modal */
.news-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

.news-modal.open {
	display: flex;
}

.news-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.news-modal-card {
	position: relative;
	background: var(--card-bg);
	border-radius: 14px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
	padding: 18px;
	max-width: 720px;
	width: 92%;
	max-height: 85vh;
	overflow: auto;
	z-index: 2001;
}

.news-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: transparent;
	border: none;
	color: var(--text);
	font-size: 20px;
	cursor: pointer;
}


.theme-toggle {
	background: transparent;
	border: 1.5px solid #00aaff99;
	color: var(--header-text);
	padding: 7px 14px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: 0 0 8px #00aaff55;
	margin-left: auto;
}

.theme-toggle:hover {
	background: linear-gradient(90deg, #00ff99 0%, #00aaff 100%);
	color: #10131a;
	box-shadow: 0 0 16px #00ff99, 0 0 32px #00aaff;
}

.small {
	font-size: 13px;
}

/* country flag emoji styling */

.country-flag {
	margin-left: 8px;
	font-size: 16px;
	vertical-align: middle;
	filter: drop-shadow(0 0 2px #00aaff);
}

/* prefer emoji-capable fonts so regional indicator flags render as emoji on Windows */
.country-flag,
.emoji-btn,
#emoji-btn {
	font-family: "Segoe UI Emoji", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
}

.country-flag-img {
	width: 20px;
	height: 16px;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
	filter: drop-shadow(0 0 2px #00aaff);
}

/* role badges */

.role-badge {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 999px;
	font-size: 13px;
	margin-left: 10px;
	vertical-align: middle;
	text-transform: capitalize;
	font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
	box-shadow: 0 0 8px #00aaff55;
}

.role-badge.role-admin {
	background: linear-gradient(90deg, #7c3aed 0%, #00aaff 100%);
	color: #fff;
}

.role-badge.role-moderator {
	background: linear-gradient(90deg, #06b6d4 0%, #00ff99 100%);
	color: #fff;
}

.role-badge.role-advertiser {
	background: linear-gradient(90deg, #f59e0b 0%, #00ff99 100%);
	color: #111;
}

.role-badge.role-basic {
	background: #232b45;
	color: #fff;
}

/* small admin icon in header */

.role-icon {
	font-size: 18px;
	display: inline-block;
	padding: 7px;
	border-radius: 8px;
	background: rgba(0, 170, 255, 0.08);
	margin-right: 8px;
	box-shadow: 0 0 8px #00aaff55;
}


@media (max-width: 600px) {
	header {
		flex-direction: column;
		align-items: flex-start;
	}

	header nav {
		margin-left: 0;
		margin-top: 10px;
	}

	.container {
		padding: 0 8px;
	}

	.card {
		padding: 12px 6px;
	}
}

/* Overrides for floating chat panel */

/* --- Floating chat panel fixes (Jan 2026) --- */
/* --- Floating chat panel classic layout (Jan 2026 revert/fix) --- */
.gm-chat-panel {
	width: 720px;
	max-width: 96vw;
	height: 520px;
	min-width: 280px;
	border-radius: 12px;
	box-shadow: 0 8px 32px #0008;
	background: var(--card-bg);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.gm-chat-panel .chat-layout {
	display: flex;
	flex-direction: row;
	height: 100%;
	gap: 0;
}

.gm-chat-panel .chat-left {
	width: 25%;
	min-width: 220px;
	max-width: 320px;
	overflow-y: auto;
	border-right: 1px solid #e0e0e033;
	background: rgba(0, 0, 0, 0.03);
}

.gm-chat-panel .chat-right {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gm-chat-panel #emoji-picker {
	position: absolute;
	bottom: 60px;
	left: 0;
	z-index: 1300;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 24px #0005;
	min-width: 180px;
	padding: 8px;
}

.gm-chat-panel #chat-window {
	flex: 1 1 auto;
	min-height: 0;
	max-height: 340px;
	height: 300px !important;
	overflow-y: auto;
	margin-bottom: 4px;
}

.gm-chat-panel .chat-form-row {
	display: flex;
	gap: 6px;
	align-items: center;
	padding: 4px 0 4px 0;
}

.gm-chat-panel .chat-form-row #chat-input {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	height: 34px;
	font-size: 14px;
}

.gm-chat-panel .chat-form-row button,
.gm-chat-panel .chat-form-row #emoji-btn {
	flex: 0 0 auto;
	height: 34px;
	font-size: 15px;
	padding: 0 10px;
}

.gm-chat-panel .user-meta {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
	max-width: 100%;
}

.gm-chat-panel .user-name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	font-size: 12px;
	max-width: 70px;
}

.gm-chat-panel .chat-unread-badge {
	display: none;
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 16px;
	height: 16px;
	background: #e53;
	color: #fff;
	border-radius: 12px;
	font-size: 11px;
	line-height: 16px;
	text-align: center;
	padding: 0 4px;
	box-shadow: 0 0 6px #e53;
	font-weight: bold;
	z-index: 2;
}

@media (max-width: 700px) {
	.gm-chat-panel {
		width: 98vw;
		min-width: 0;
		height: 70vh;
		max-width: 100vw;
	}

	.gm-chat-panel .chat-left {
		width: 90px;
		max-width: 120px;
	}

	.gm-chat-panel .user-name {
		max-width: 40px;
		font-size: 11px;
	}
}

/* --- Ads --- */
.promo-slot {
	margin: 12px auto;
	text-align: center;
	background: transparent;
	display: block;
	position: relative;
}

.promo-slot img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.promo-badge {
	position: absolute;
	top: 6px;
	left: 6px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	padding: 3px 6px;
	border-radius: 999px;
	text-transform: uppercase;
	z-index: 2;
}

.promo-click-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	text-decoration: none;
}

.promo-size-320x50 {
	display: none;
}

.promo-size-728x90,
.promo-size-300x600 {
	display: none;
}

.promo-size-300x250,
.promo-size-336x280 {
	display: block;
}

@media (max-width: 600px) {
	.promo-size-320x50 {
		display: block;
	}

	.promo-size-728x90,
	.promo-size-300x600 {
		display: none;
	}

	.promo-row {
		grid-template-columns: 1fr !important;
		justify-items: center;
	}

	.promo-slot {
		max-width: 50% !important;
		width: auto !important;
		height: auto !important;
	}

	.promo-slot img {
		max-width: 100%;
		height: auto;
	}
}

@media (min-width: 900px) {

	.promo-size-728x90,
	.promo-size-300x600 {
		display: block;
	}
}

/* --- Profile: Platforms section --- */
.platforms-fieldset {
	border: 0;
	padding: 0;
	margin: 12px 0 0 0;
}

.platforms-legend {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 8px;
}

.platforms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 12px;
}

.platform-card {
	display: block;
	background: var(--card-bg);
	border: 1px solid rgba(0, 170, 255, 0.18);
	border-radius: 14px;
	padding: 12px;
	box-shadow: 0 8px 24px rgba(0, 170, 255, 0.08);
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.platform-card:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 255, 153, 0.6);
	box-shadow: 0 10px 28px rgba(0, 255, 153, 0.16);
}

.platform-card:has(input[type="checkbox"]:checked) {
	border-color: rgba(0, 255, 153, 0.8);
	box-shadow: 0 10px 28px rgba(0, 255, 153, 0.22);
}

.platform-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.platform-check {
	display: flex;
	align-items: center;
	gap: 8px;
}

.platform-name {
	font-weight: 700;
}

.platform-field {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.platform-label {
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.platform-field input[type="text"],
.platform-field input:not([type]) {
	width: 100%;
}

/* --- OAuth connections --- */
.oauth-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.oauth-card {
	background: var(--card-bg);
	border: 1px solid rgba(0, 170, 255, 0.18);
	border-radius: 14px;
	padding: 12px;
	box-shadow: 0 8px 24px rgba(0, 170, 255, 0.08);
}

.oauth-title {
	font-weight: 700;
}

/* --- User profile page --- */
.profile-hero {
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.12), rgba(0, 255, 153, 0.12));
	border: 1px solid rgba(0, 170, 255, 0.25);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	margin-bottom: 12px;
}

.profile-cover {
	position: relative;
	height: 180px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.35), rgba(0, 255, 153, 0.35));
	background-size: cover;
	background-position: center;
	overflow: hidden;
	margin-bottom: 12px;
}

.profile-cover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}

.profile-hero-body {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.profile-avatar-wrap {
	width: 84px;
	height: 84px;
	border-radius: 20px;
	overflow: hidden;
	border: 2px solid rgba(0, 170, 255, 0.4);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	background: var(--card-bg);
}

.profile-avatar {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-hero-main h2 {
	margin: 0 0 6px 0;
}

.profile-meta {
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 14px;
}

.profile-bio {
	font-weight: 600;
}

.profile-actions {
	margin-top: 10px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.profile-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 16px;
}

.profile-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 8px 0 14px 0;
}

.profile-tab {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(0, 170, 255, 0.12);
	border: 1px solid rgba(0, 170, 255, 0.25);
	text-decoration: none;
	color: var(--text);
	font-size: 13px;
	font-weight: 600;
}

.profile-tab:hover {
	border-color: rgba(0, 255, 153, 0.6);
}

.profile-card {
	background: var(--card-bg);
	border: 1px solid rgba(0, 170, 255, 0.18);
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 8px 24px rgba(0, 170, 255, 0.08);
	margin-bottom: 12px;
}

.profile-card h3 {
	margin: 0 0 10px 0;
}

.profile-media img {
	max-width: 100%;
	max-height: 220px;
	border-radius: 12px;
	object-fit: cover;
}

.profile-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.admin-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 6px 0 16px;
}

.admin-tab {
	appearance: none;
	background: #101827;
	color: var(--text);
	padding: 8px 14px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid #213149;
	box-shadow: 0 1px 6px #00aaff1a;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.admin-tab.active {
	background: var(--accent);
	color: #071018;
	border-color: transparent;
}

.platform-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.platform-row img {
	height: 18px;
}

.platform-name {
	font-weight: 700;
}

.platform-tag {
	color: var(--text);
}

.platform-online {
	color: #1bbf6b;
	font-weight: 700;
}

.platform-link {
	margin-left: 6px;
}

.profile-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.profile-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(0, 170, 255, 0.12);
	border: 1px solid rgba(0, 170, 255, 0.25);
	font-size: 13px;
	color: var(--text);
	text-decoration: none;
}

.profile-tag:hover {
	border-color: rgba(0, 255, 153, 0.6);
}

@media (max-width: 900px) {
	.profile-layout {
		grid-template-columns: 1fr;
	}
}

/* --- Clans pages --- */
.clan-cover {
	position: relative;
	height: 220px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(0, 170, 255, 0.35), rgba(0, 255, 153, 0.35));
	background-size: cover;
	background-position: center;
	overflow: hidden;
	margin-bottom: 12px;
}

.clan-cover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.55));
}

.clan-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
}

/* ================================================
   COMPREHENSIVE LIGHT THEME OVERRIDES
   ================================================ */

/* --- Core page & body --- */
.theme-light body,
.theme-light {
	background: #f7faff;
	color: #232b45;
}

/* --- Header --- */
.theme-light header {
	background: linear-gradient(90deg, #e6eef8, #cbe7ff);
	color: #232b45;
	box-shadow: 0 2px 16px rgba(0, 119, 255, 0.12);
	border-bottom-color: rgba(0, 170, 255, 0.18);
}

.theme-light header h1 {
	text-shadow: 0 0 8px rgba(0, 119, 255, 0.3), 0 0 16px rgba(0, 170, 255, 0.2);
}

.theme-light header a {
	color: #232b45;
}

/* --- Footer --- */
.theme-light .gm-footer {
	background: #e6eef8;
	color: #1a233a;
}

.theme-light .gm-footer-title {
	color: #1a233a;
}

.theme-light .gm-footer-about {
	color: #232b45;
}

.theme-light .gm-footer-contact-label,
.theme-light .gm-footer-email,
.theme-light .gm-footer-email a {
	color: #0077b6;
}

.theme-light .gm-footer-location {
	color: #555;
}

/* --- Generic dark card/section backgrounds --- */
.theme-light .game-card,
.theme-light .sidebar-panel,
.theme-light .search-bar,
.theme-light .chat-meta-panel,
.theme-light .honor-bar-bg,
.theme-light .notification-list li,
.theme-light .notification-select-dropdown,
.theme-light .notification-select-trigger,
.theme-light .notification-select-options li {
	background: #fff;
	border-color: #d1d5db;
	color: #232b45;
}

/* --- Cards / Sections (template <style> overrides) --- */
.theme-light .prof-section,
.theme-light .gv-section,
.theme-light .gv-section-inner,
.theme-light .cv-section,
.theme-light .cv-section-inner,
.theme-light .user-section-card,
.theme-light .user-content-card,
.theme-light .wwa-card,
.theme-light .wwa-intro,
.theme-light .vid-card,
.theme-light .report-box,
.theme-light .admin-vid-card,
.theme-light .admin-mid-card,
.theme-light .qr-scans-table-wrap,
.theme-light .qr-scans-card,
.theme-light .post-card,
.theme-light .reply-box,
.theme-light .poll-box,
.theme-light .new-thread-form,
.theme-light .edit-form,
.theme-light .add-form,
.theme-light .contact-fav,
.theme-light .post-request-card,
.theme-light .request-card,
.theme-light .admin-stat-card,
.theme-light .coming-soon-card {
	background: #fff !important;
	border-color: #d1d5db !important;
	color: #232b45;
}

/* --- Hero sections --- */
.theme-light .user-hero-section,
.theme-light .user-content-section {
	background: linear-gradient(135deg, #e6eef8, #f0f6ff, #dbeafe) !important;
}

.theme-light .user-hero-overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(247, 250, 255, 0.85)) !important;
}

/* --- Gaming page --- */
.theme-light .gaming-hero-border {
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06) !important;
}

/* --- Text colors --- */
.theme-light .prof-section-title,
.theme-light .prof-meta h2,
.theme-light .plat-name,
.theme-light .gv-hero-title,
.theme-light .gv-player-name,
.theme-light .gv-clan-name,
.theme-light .gv-request-user,
.theme-light .gv-info-value,
.theme-light .cv-hero-title,
.theme-light .cv-section-title,
.theme-light .cv-member-name,
.theme-light .cv-game-name,
.theme-light .cv-stat-value,
.theme-light .user-display-name,
.theme-light .user-username,
.theme-light .user-card-header,
.theme-light .user-section-title,
.theme-light .vid-card-title,
.theme-light .report-box h4,
.theme-light .admin-tab-panel>h2,
.theme-light .notification-section h4,
.theme-light .user-name,
.theme-light .cell-name,
.theme-light .highlight-game-name,
.theme-light .highlight-username,
.theme-light .username,
.theme-light .gm-player-role,
.theme-light h1,
.theme-light h2,
.theme-light h3,
.theme-light h4 {
	color: #1e293b !important;
}

/* Muted text */
.theme-light .prof-meta .prof-stats,
.theme-light .prof-field label,
.theme-light .prof-field>span,
.theme-light .prof-tab,
.theme-light .pref-chip,
.theme-light .toggle-label,
.theme-light .gv-hero-desc,
.theme-light .gv-player-sub,
.theme-light .gv-clan-sub,
.theme-light .gv-info-label,
.theme-light .gv-empty,
.theme-light .gv-disc-time,
.theme-light .gv-request-msg,
.theme-light .gv-notify-label,
.theme-light .gv-rating-avg .max,
.theme-light .gv-rating-avg .cnt,
.theme-light .cv-hero-meta span,
.theme-light .cv-member-sub,
.theme-light .cv-game-players,
.theme-light .cv-stat-label,
.theme-light .user-info-label,
.theme-light .user-stat-label,
.theme-light .rating-label,
.theme-light .my-rating-info,
.theme-light .vid-card-date,
.theme-light .admin-rpt-date,
.theme-light .admin-rpt-reason,
.theme-light .qr-modal-close,
.theme-light .qr-modal-stat .lbl,
.theme-light .qr-modal-hint,
.theme-light .scan-total,
.theme-light .empty-msg,
.theme-light .tag {
	color: #64748b !important;
}

/* Semi-muted text */
.theme-light .prof-meta .prof-stats strong,
.theme-light .prof-tab:hover,
.theme-light .pref-chip:hover,
.theme-light .user-info-value,
.theme-light .user-card-list li {
	color: #334155 !important;
}

.theme-light .user-card-list li strong {
	color: #64748b !important;
}

/* --- Form inputs, selects, textareas --- */
.theme-light input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="color"]),
.theme-light select,
.theme-light textarea,
.theme-light .prof-field input,
.theme-light .prof-field select,
.theme-light .prof-field textarea,
.theme-light .plat-input,
.theme-light .gv-disc-input,
.theme-light .game-select,
.theme-light .quick-btn span,
.theme-light .time-input,
.theme-light .message-input,
.theme-light .when-custom-input,
.theme-light .search-input-wrapper,
.theme-light .ep-search {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #232b45 !important;
}

.theme-light .prof-field input:focus,
.theme-light .prof-field select:focus,
.theme-light .prof-field textarea:focus,
.theme-light input:focus,
.theme-light select:focus,
.theme-light textarea:focus {
	border-color: #0077ff !important;
	box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.12) !important;
}

/* --- Chips, tags, toggles --- */
.theme-light .pref-chip,
.theme-light .game-chip {
	background: #f1f5f9 !important;
	border-color: #cbd5e1 !important;
	color: #475569 !important;
}

.theme-light .pref-chip:hover,
.theme-light .game-chip:hover {
	border-color: #0077ff !important;
	color: #0077ff !important;
}

.theme-light .pref-chip:has(input:checked),
.theme-light .game-chip:has(input:checked) {
	background: rgba(0, 119, 255, 0.1) !important;
	border-color: rgba(0, 119, 255, 0.4) !important;
	color: #0055cc !important;
}

.theme-light .toggle-sw .slider {
	background: #cbd5e1 !important;
}

.theme-light .toggle-sw .slider::before {
	background: #fff !important;
}

.theme-light .toggle-switch {
	background: #cbd5e1 !important;
}

/* --- Platform cards --- */
.theme-light .plat-card {
	background: #f8fafc !important;
	border-color: #d1d5db !important;
}

.theme-light .plat-card:has(input[type=checkbox]:checked) {
	border-color: rgba(0, 119, 255, 0.4) !important;
	background: rgba(0, 119, 255, 0.04) !important;
}

/* --- Tabs --- */
.theme-light .prof-tab {
	color: #64748b !important;
}

.theme-light .prof-tab:hover {
	color: #1e293b !important;
}

.theme-light .prof-tab.active {
	color: #0077ff !important;
}

.theme-light .prof-tabs {
	border-bottom-color: #e2e8f0 !important;
}

/* --- Admin tabs --- */
.theme-light .admin-tab {
	background: #f1f5f9 !important;
	border-color: #cbd5e1 !important;
	color: #475569 !important;
}

.theme-light .admin-tab.active {
	background: #0077ff !important;
	color: #fff !important;
}

.theme-light .admin-tab:hover:not(.active) {
	background: #e2e8f0 !important;
}

/* --- Tables --- */
.theme-light th,
.theme-light thead th,
.theme-light .honor-table th,
.theme-light .admin-ads-table th,
.theme-light .admin-warnings-table th {
	background: #e6eef8 !important;
	color: #1e293b !important;
	border-bottom-color: #cbd5e1 !important;
}

.theme-light td {
	border-bottom-color: #e2e8f0 !important;
	color: #334155;
}

.theme-light tbody tr {
	border-bottom-color: #e2e8f0 !important;
}

.theme-light .admin-users-table tbody tr {
	border-bottom-color: #e2e8f0 !important;
}

/* --- Buttons (secondary/back) --- */
.theme-light [class*="-btn-sec"],
.theme-light [class*="-btn-back"],
.theme-light .btn-cancel,
.theme-light .btn-quote,
.theme-light .mod-btn,
.theme-light .btn-sub-thread,
.theme-light .thread-mod-btn,
.theme-light .cat-actions button,
.theme-light .cat-move button,
.theme-light .btn-add-option,
.theme-light .forum-report-dialog .btn-cancel,
.theme-light .admin-users-table .btn {
	background: #f1f5f9 !important;
	border-color: #cbd5e1 !important;
	color: #334155 !important;
}

.theme-light [class*="-btn-sec"]:hover,
.theme-light [class*="-btn-back"]:hover,
.theme-light .btn-cancel:hover,
.theme-light .btn-quote:hover,
.theme-light .mod-btn:hover {
	background: #e2e8f0 !important;
}

/* --- Pagination --- */
.theme-light .forum-pagination a {
	background: #f1f5f9 !important;
	color: #334155 !important;
}

/* --- Forum / Post specific --- */
.theme-light .post-sidebar {
	background: #f1f5f9 !important;
	border-right-color: #d1d5db !important;
}

.theme-light .post-topbar {
	background: #f8fafc !important;
	border-bottom-color: #d1d5db !important;
}

.theme-light .post-avatar-placeholder {
	background: #e2e8f0 !important;
	border-color: #cbd5e1 !important;
}

.theme-light .post-role.basic {
	background: #e2e8f0 !important;
	color: #475569 !important;
}

.theme-light .post-edited {
	border-top-color: #d1d5db !important;
}

.theme-light .post-topbar .post-actions a,
.theme-light .post-topbar .post-actions button {
	border-color: #cbd5e1 !important;
}

.theme-light .post-image {
	border-color: #d1d5db !important;
}

.theme-light .post-card {
	border-color: #d1d5db !important;
}

/* Forum table headers */
.theme-light .cat-card-head,
.theme-light .forum-footer-header,
.theme-light .thread-table thead th {
	background: linear-gradient(90deg, #e6eef8, #dbeafe) !important;
	border-bottom-color: #cbd5e1 !important;
	color: #1e293b !important;
}

.theme-light .ff-stats,
.theme-light .ff-latest {
	border-color: #d1d5db !important;
}

.theme-light .thread-table tbody tr {
	border-bottom-color: #e2e8f0 !important;
}

/* Forum form inputs */
.theme-light .reply-box textarea,
.theme-light .forum-report-dialog textarea,
.theme-light .poll-option-row input,
.theme-light .form-group textarea,
.theme-light .form-group select {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #232b45 !important;
}

/* Forum report dialog */
.theme-light .forum-report-dialog {
	border-color: #d1d5db !important;
	background: #fff !important;
}

/* Emoji picker */
.theme-light .emoji-picker {
	background: #fff !important;
	border-color: #d1d5db !important;
}

.theme-light .ep-header {
	border-bottom-color: #e2e8f0 !important;
}

.theme-light .ep-cats {
	border-bottom-color: #e2e8f0 !important;
}

.theme-light .emoji-btn {
	background: #fff !important;
	border-color: #cbd5e1 !important;
}

/* --- Videos --- */
.theme-light .vid-embed-box,
.theme-light .admin-rpt-embed {
	background: #f1f5f9 !important;
	border-color: #d1d5db !important;
}

/* --- Profile specific --- */
.theme-light .prof-header {
	background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(147, 51, 234, 0.05)) !important;
	border-color: rgba(0, 0, 0, 0.06) !important;
}

.theme-light .prof-banner-wrap {
	background: linear-gradient(135deg, #e2e8f0, #dbeafe) !important;
}

.theme-light .prof-avatar {
	border-color: rgba(0, 119, 255, 0.3) !important;
}

.theme-light .fav-item {
	background: #f1f5f9 !important;
}

/* QR Modal */
.theme-light .qr-modal-content {
	background: #fff !important;
	border-color: #d1d5db !important;
}

/* --- User profile page --- */
.theme-light .user-avatar img,
.theme-light .user-avatar div {
	border-color: #f7faff !important;
}

.theme-light .user-avatar-placeholder {
	background: #e2e8f0 !important;
	border-color: #cbd5e1 !important;
	color: #64748b !important;
}

.theme-light .user-rating-badge {
	background: #fff !important;
}

/* --- Game page --- */
.theme-light .game-card .game-toggle {
	background: var(--button-bg) !important;
}

/* --- Gaming page --- */
.theme-light .game-modal-content {
	background: #fff !important;
	border-color: #d1d5db !important;
}

/* --- Chat --- */
.theme-light .chat-room-list-container {
	background: #f1f5f9 !important;
}

/* --- Notification section --- */
.theme-light .notification-section h3 {
	border-bottom-color: #e2e8f0 !important;
}

/* --- Site alert / PWA banner --- */
.theme-light .gm-site-alert {
	background: #e6eef8 !important;
	border-bottom-color: #cbd5e1 !important;
	color: #1e293b !important;
}

.theme-light .gm-pwa-banner {
	background: linear-gradient(135deg, #e6eef8, #dbeafe) !important;
}

.theme-light .gm-pwa-banner-text {
	color: #334155 !important;
}

.theme-light .gm-pwa-banner-text strong {
	color: #1e293b !important;
}

.theme-light .gm-pwa-banner-text span {
	color: #64748b !important;
}

.theme-light .gm-pwa-btn-close {
	color: #94a3b8 !important;
}

.theme-light .gm-pwa-btn-close:hover {
	color: #334155 !important;
}

/* --- Cookie banner --- */
.theme-light #gm-cookie-banner {
	background: #fff !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	color: #334155 !important;
}

/* --- Bottom nav / mobile bar --- */
.theme-light .bottom-bar,
.theme-light [style*="border-top: 1px solid rgba(255,255,255"] {
	border-top-color: #e2e8f0 !important;
}

/* --- Scrollbar --- */
.theme-light ::-webkit-scrollbar-track {
	background: #f1f5f9 !important;
}

.theme-light ::-webkit-scrollbar-thumb {
	background: #cbd5e1 !important;
	border-color: #f1f5f9 !important;
}

.theme-light ::-webkit-scrollbar-thumb:hover {
	background: #94a3b8 !important;
}

/* --- Admin users table --- */
.theme-light .admin-users-table thead th {
	background: linear-gradient(180deg, #e6eef8, #dbeafe) !important;
	border-bottom-color: #cbd5e1 !important;
	color: #1e293b !important;
}

.theme-light .admin-users-table .btn-ban,
.theme-light .admin-users-table .btn-chat-off,
.theme-light .admin-users-table .btn-forum-off {
	background: #fef2f2 !important;
}

.theme-light .admin-users-table .action-dropdown {
	background: #fff !important;
	border-color: #d1d5db !important;
}

.theme-light .admin-users-table .role-form select {
	background: #fff !important;
	border-color: #cbd5e1 !important;
}

.theme-light .admin-users-table .cell-ip code {
	background: #f1f5f9 !important;
}

.theme-light .admin-users-table .user-avatar-mini.no-avatar {
	background: #e2e8f0 !important;
}

.theme-light .admin-stat-bar {
	background: #e2e8f0 !important;
}

/* --- Find gamers --- */
.theme-light .contact-fav {
	background: #f1f5f9 !important;
}

.theme-light .contact-fav:hover {
	background: #e2e8f0 !important;
}

.theme-light .contact-profile {
	background: #dbeafe !important;
}

.theme-light .tag {
	background: #f1f5f9 !important;
	color: #64748b !important;
}

.theme-light .when-datetime-panel {
	background: #fff !important;
	border-color: #cbd5e1 !important;
}

/* --- Online dot --- */
.theme-light .online-dot {
	border-color: #fff !important;
}

/* --- Admin table action buttons --- */
.theme-light .admin-ad-thumb {
	border-color: #d1d5db !important;
	background: #f1f5f9 !important;
}

/* --- Admin edit row --- */
.theme-light .edit-row td {
	background: #f8fafc !important;
}

/* --- Misc dark fallback images/avatars --- */
.theme-light .coming-soon-placeholder {
	background: linear-gradient(135deg, #e2e8f0, #cbd5e1) !important;
}

/* --- Index page --- */
.theme-light .gm-player-badge.level-newcomer {
	border-color: #94a3b8 !important;
}

/* --- General link colors (in light mode) --- */
.theme-light a {
	color: #0055cc;
}

.theme-light a:hover {
	color: #003d99;
}

/* --- All rgba(255,255,255,...) borders → dark borders in light mode --- */
.theme-light .gv-btn-secondary,
.theme-light .cv-btn-secondary {
	background: #f1f5f9 !important;
	border-color: #cbd5e1 !important;
	color: #334155 !important;
}

/* Info boxes / detail wraps */
.theme-light .gv-info-box,
.theme-light .cv-stat-box,
.theme-light .cv-detail-wrap,
.theme-light .gv-request-when-badge {
	background: #f8fafc !important;
	border-color: #e2e8f0 !important;
}

/* Notify slider */
.theme-light .gv-notify-slider {
	background: #cbd5e1 !important;
}

/* Admin form shared patterns */
.theme-light .form-row input,
.theme-light .form-row select,
.theme-light .edit-row input,
.theme-light .edit-row select {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #232b45 !important;
}

/* --- Admin table general --- */
.theme-light table thead th {
	background: #e6eef8 !important;
	color: #1e293b !important;
	border-bottom: 2px solid #cbd5e1 !important;
}

.theme-light table td {
	border-bottom-color: #e2e8f0 !important;
}

/* --- User item (sidebar/list) --- */
.theme-light .user-item {
	background: rgba(0, 0, 0, 0.02) !important;
}

.theme-light .user-item:hover {
	background: rgba(0, 0, 0, 0.04) !important;
}

/* Lobby badge content hover */
.theme-light .lobby-badge-content:hover {
	background: rgba(0, 0, 0, 0.03) !important;
}

/* Gaming page hero section */
.theme-light [style*="background"][style*="#0a0f1a"],
.theme-light [style*="background"][style*="#111827"] {
	background: linear-gradient(180deg, #e6eef8, #f7faff) !important;
}

/* QR scans table */
.theme-light .qr-scans-table-wrap thead th {
	color: #64748b !important;
	border-bottom-color: #d1d5db !important;
}

.theme-light .qr-scans-table-wrap tbody td {
	color: #334155 !important;
	border-bottom-color: #e2e8f0 !important;
}

/* Admin form wrapper borders */
.theme-light .admin-add-form {
	border-color: #cbd5e1 !important;
	border-style: dashed !important;
}

.theme-light .poll-section {
	border-color: #cbd5e1 !important;
}

/* Responsive forum post sidebar (mobile) */
@media (max-width: 700px) {
	.theme-light .post-sidebar {
		border-bottom-color: #d1d5db !important;
		border-right: none !important;
	}

	/* Compact header for app-like mobile layout */
	.container {
		margin-top: 8px !important;
		padding: 0 10px !important;
	}

	footer {
		margin-bottom: 0 !important;
		padding-bottom: 4px !important;
	}

	/* Hide register/login links in header (bottom bar has them) */
	header .mobile-hide-bnav {
		display: none !important;
	}

	/* Show settings icon only on mobile */
	header .mobile-show-bnav {
		display: inline !important;
	}

	/* Welcome hero tiles: compact 4-column single row */
	.wc-tiles-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr !important;
		gap: 4px !important;
	}

	.wc-tile {
		padding: 6px 2px !important;
		font-size: .68em !important;
		gap: 3px !important;
		flex-direction: column;
		text-align: center;
	}

	.wc-tile span:first-child {
		font-size: 1.2em !important;
	}

	/* Show only first 4 tiles */
	.wc-tiles-grid .wc-tile:nth-child(n+5) {
		display: none !important;
	}
}

/* Footer bottom bar */
.theme-light .gm-footer-bottom {
	border-top-color: #d1d5db !important;
	color: #64748b !important;
}

/* --- Profile field select (language etc.) --- */
.prof-field-select {
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #e2e8f0;
}

.theme-light .prof-field-select {
	background: #fff !important;
	border-color: #cbd5e1 !important;
	color: #232b45 !important;
}

/* --- Theme toggle buttons --- */
.theme-btn-dark {
	background: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #e2e8f0;
}

.theme-btn-light {
	background: #f1f5f9;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #1e293b;
}

.theme-light .theme-btn-dark {
	background: #334155 !important;
	border-color: #94a3b8 !important;
	color: #f1f5f9 !important;
}

.theme-light .theme-btn-light {
	background: #0077ff !important;
	border-color: #0055cc !important;
	color: #fff !important;
}