/* Playsaurus Account Screen (Main Menu) */
#ACCOUNTSCREEN {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

#ACCOUNTSCREEN .account-frame {
	background: linear-gradient(135deg, #6a5a42 0%, #4a3a2a 50%, #3a2a1a 100%);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.3);
	border: 2px solid #8b7355;
}

#ACCOUNTSCREEN .account-popup {
	background-color: #6a6a6a;
	background-image: url('../Shared/Assets/UI/lilpopup_background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 30px 40px;
	max-width: 400px;
	width: 85vw;
	position: relative;
	border-radius: 6px;
}

#ACCOUNTSCREEN .account-title {
	text-align: center;
	margin-bottom: 20px;
}

#ACCOUNTSCREEN .account-title .account-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

#ACCOUNTSCREEN .account-info {
	text-align: center;
	margin-bottom: 25px;
}

#ACCOUNTSCREEN .account-profile-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 12px;
}

#ACCOUNTSCREEN .account-avatar-frame {
	display: inline-block;
	padding: 5px;
	flex-shrink: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, #8b7355 0%, #5a4a3a 50%, #8b7355 100%);
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#ACCOUNTSCREEN #accountAvatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #4a5a6a;
	object-fit: cover;
	display: block;
}

#ACCOUNTSCREEN #accountUsername {
	color: #FFFFFF;
	font-family: 'KanitM', sans-serif;
	font-size: 22px;
	margin: 0 0 6px 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9), -1px -1px 2px rgba(0,0,0,0.5);
}

#ACCOUNTSCREEN #accountMemberSince {
	color: #FFFFFF;
	font-family: 'KanitM', sans-serif;
	font-size: 13px;
	margin: 0;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.9), -1px -1px 2px rgba(0,0,0,0.5);
}

#ACCOUNTSCREEN .account-points-box {
	background: rgba(12, 22, 48, 0.85);
	border-radius: 10px;
	padding: 6px 12px;
	text-align: center;
	border: 1px solid rgba(100, 130, 220, 0.3);
	cursor: pointer;
}

#ACCOUNTSCREEN .points-vault-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(60, 80, 140, 0.9);
	border-radius: 20px;
	padding: 2px 8px;
	font-family: 'KanitM', sans-serif;
	font-size: 9px;
	color: #ffffff;
	letter-spacing: 0.8px;
	margin-bottom: 4px;
}

#ACCOUNTSCREEN .points-value {
	font-family: 'KanitM', sans-serif;
	font-size: 24px;
	color: #ffffff;
	line-height: 1;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
	display: block;
}

#ACCOUNTSCREEN .points-unit-label {
	font-family: 'KanitM', sans-serif;
	font-size: 14px;
	color: #7799ff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

#ACCOUNTSCREEN .account-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

#ACCOUNTSCREEN .account-buttons-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}


#ACCOUNTSCREEN .account-btn {
	width: 143px;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

#ACCOUNTSCREEN .account-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

#ACCOUNTSCREEN .account-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

#ACCOUNTSCREEN .btn-green {
	background-image: url('../Shared/Assets/UI/start_button.webp');
}

#ACCOUNTSCREEN .btn-red {
	background-image: url('../Shared/Assets/UI/start_button.webp');
}

#ACCOUNTSCREEN .btn-close {
	background-image: url('../Shared/Assets/UI/stop_button.webp');
	margin-top: 5px;
}

#ACCOUNTSCREEN .account-verify-notice {
	text-align: center;
	padding: 10px 20px;
}

#ACCOUNTSCREEN .account-verify-text {
	color: #ffcc44;
	font-family: 'KanitM', sans-serif;
	font-size: 15px;
	margin: 0 0 20px 0;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.9), -1px -1px 2px rgba(0,0,0,0.5);
	line-height: 1.4;
}

#ACCOUNTSCREEN .account-verify-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

/* Playsaurus Login Screen (PC) */
#LOGINSCREEN {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

#LOGINSCREEN .login-frame {
	background: linear-gradient(135deg, #6a5a42 0%, #4a3a2a 50%, #3a2a1a 100%);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.3);
	border: 2px solid #8b7355;
}

#LOGINSCREEN .login-popup {
	background-color: #6a6a6a;
	background-image: url('../Shared/Assets/UI/lilpopup_background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 30px 40px;
	max-width: 360px;
	width: 85vw;
	position: relative;
	border-radius: 6px;
}

#LOGINSCREEN .account-title {
	text-align: center;
	margin-bottom: 20px;
}

#LOGINSCREEN .account-title .account-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px;
}

.login-form input {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	font-size: 16px;
	font-family: 'KanitM', sans-serif;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid #8b7355;
	border-radius: 4px;
	color: #ffffff;
	outline: none;
}

.login-form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.login-form input:focus {
	border-color: #07ddc9;
	background: rgba(0, 0, 0, 0.6);
}

.password-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.password-wrapper input {
	padding-right: 40px;
}

.password-toggle {
	position: absolute;
	right: 8px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.6;
}

.password-toggle:hover {
	opacity: 1;
}

.password-toggle:active {
	opacity: 0.8;
}

.password-toggle img {
	width: 22px;
	height: 22px;
	display: block;
}

.login-error {
	color: #ff6b6b;
	font-size: 13px;
	font-family: 'KanitM', sans-serif;
	text-align: center;
	min-height: 16px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#LOGINSCREEN .account-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

#LOGINSCREEN .account-btn {
	width: 143px;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

#LOGINSCREEN .account-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

#LOGINSCREEN .account-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

#LOGINSCREEN .btn-green {
	background-image: url('../Shared/Assets/UI/start_button.webp');
}

#LOGINSCREEN .btn-close {
	background-image: url('../Shared/Assets/UI/stop_button.webp');
	margin-top: 5px;
}

.login-main-buttons {
	display: flex;
	flex-direction: row;
	gap: 8px;
	justify-content: center;
}

.forgot-password-link {
	text-align: right;
	margin-top: -5px;
}

.forgot-password-link a {
	color: #07ddc9;
	font-family: 'KanitM', sans-serif;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Account button tooltip (PC only) */
#accountBtnTooltip {
	display: none;
	position: absolute;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(15, 15, 15, 0.92);
	color: #ffffff;
	font-family: 'KanitM', sans-serif;
	font-size: 13px;
	padding: 5px 10px;
	border-radius: 4px;
	white-space: nowrap;
	pointer-events: none;
	z-index: 20;
	border: 1px solid rgba(139, 115, 85, 0.6);
	text-shadow: none;
}

/* Playsaurus Register Screen (PC) */
#REGISTERSCREEN {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

#REGISTERSCREEN .login-frame {
	background: linear-gradient(135deg, #6a5a42 0%, #4a3a2a 50%, #3a2a1a 100%);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.3);
	border: 2px solid #8b7355;
}

#REGISTERSCREEN .register-popup {
	background-color: #6a6a6a;
	background-image: url('../Shared/Assets/UI/lilpopup_background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 25px 35px;
	max-width: 380px;
	width: 85vw;
	position: relative;
	border-radius: 6px;
}

#REGISTERSCREEN .account-title {
	text-align: center;
	margin-bottom: 16px;
}

#REGISTERSCREEN .account-title .account-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

#REGISTERSCREEN .account-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}

#REGISTERSCREEN .account-btn {
	width: 143px;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

#REGISTERSCREEN .account-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

#REGISTERSCREEN .account-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

#REGISTERSCREEN .btn-green {
	background-image: url('../Shared/Assets/UI/start_button.webp');
}

#REGISTERSCREEN .btn-close {
	background-image: url('../Shared/Assets/UI/stop_button.webp');
	margin-top: 4px;
}

.tos-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-family: 'KanitM', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	user-select: none;
}

.tos-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: #07ddc9;
}

.tos-label a {
	color: #07ddc9;
	text-decoration: underline;
	cursor: pointer;
}

/* Playsaurus Cloud Saves Screen (PC) */
#CLOUDSAVESSCREEN {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

#CLOUDSAVESSCREEN .login-frame {
	background: linear-gradient(135deg, #6a5a42 0%, #4a3a2a 50%, #3a2a1a 100%);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.3);
	border: 2px solid #8b7355;
}

#CLOUDSAVESSCREEN .cloud-saves-popup {
	background-color: #6a6a6a;
	background-image: url('../Shared/Assets/UI/lilpopup_background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 25px 35px;
	max-width: 480px;
	width: 85vw;
	position: relative;
	border-radius: 6px;
}

#CLOUDSAVESSCREEN .account-title {
	text-align: center;
	margin-bottom: 16px;
}

#CLOUDSAVESSCREEN .account-title .account-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.cloud-saves-list {
	max-height: 280px;
	overflow-y: auto;
	margin-bottom: 14px;
	scrollbar-width: thin;
	scrollbar-color: #8b7355 rgba(0,0,0,0.3);
}

.cloud-saves-loading,
.cloud-saves-empty {
	text-align: center;
	font-family: 'KanitM', sans-serif;
	font-size: 15px;
	color: rgba(255,255,255,0.7);
	padding: 20px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.cloud-save-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0,0,0,0.35);
	border: 1px solid rgba(139,115,85,0.5);
	border-radius: 6px;
	padding: 8px 10px;
	margin-bottom: 6px;
	gap: 10px;
}

.cloud-save-info {
	flex: 1;
	min-width: 0;
}

.cloud-save-name {
	font-family: 'KanitM', sans-serif;
	font-size: 14px;
	color: #ffffff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cloud-save-details {
	font-family: 'KanitM', sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.75);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	margin-top: 2px;
}

.cloud-save-time {
	font-family: 'KanitM', sans-serif;
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	margin-top: 2px;
}

.cloud-save-delete-btn {
	flex-shrink: 0;
	height: 28px;
	padding: 0 10px;
	font-size: 13px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-image: url('../Shared/Assets/UI/stop_button.webp');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
	min-width: 60px;
}

.cloud-save-delete-btn:hover {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.cloud-save-delete-btn:active {
	transform: scale(0.95);
}

.cloud-save-delete-btn:disabled {
	opacity: 0.5;
	cursor: default;
	transform: none;
	filter: none;
}

#CLOUDSAVESSCREEN .account-buttons {
	display: flex;
	justify-content: center;
}

#CLOUDSAVESSCREEN .account-btn {
	width: 143px;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

#CLOUDSAVESSCREEN .account-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

#CLOUDSAVESSCREEN .account-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

#CLOUDSAVESSCREEN .btn-close {
	background-image: url('../Shared/Assets/UI/stop_button.webp');
}

/* Playsaurus Rewards Screen */
#REWARDSSCREEN {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	justify-content: center;
	align-items: center;
}

#REWARDSSCREEN .account-frame {
	background: linear-gradient(135deg, #6a5a42 0%, #4a3a2a 50%, #3a2a1a 100%);
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.3);
	border: 2px solid #8b7355;
}

#REWARDSSCREEN .rewards-popup {
	background-color: #6a6a6a;
	background-image: url('../Shared/Assets/UI/lilpopup_background.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 25px 35px;
	max-width: 480px;
	width: 85vw;
	position: relative;
	border-radius: 6px;
}

#REWARDSSCREEN .account-title {
	text-align: center;
	margin-bottom: 16px;
}

#REWARDSSCREEN .account-title .account-logo {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.rewards-title {
	text-align: center;
	color: #FFFFFF;
	font-family: 'KanitM', sans-serif;
	font-size: 20px;
	margin: 0 0 6px 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9), -1px -1px 2px rgba(0,0,0,0.5);
}

.rewards-note {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'KanitM', sans-serif;
	font-size: 12px;
	font-style: italic;
	margin: 0 0 12px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.rewards-list {
	max-height: 280px;
	overflow-y: auto;
	margin-bottom: 14px;
	scrollbar-width: thin;
	scrollbar-color: #8b7355 rgba(0,0,0,0.3);
}

.reward-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0,0,0,0.35);
	border: 1px solid rgba(139,115,85,0.5);
	border-radius: 6px;
	padding: 8px 10px;
	margin-bottom: 6px;
	gap: 10px;
}

.reward-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
}

.reward-info {
	flex: 1;
	min-width: 0;
}

.reward-label {
	font-family: 'KanitM', sans-serif;
	font-size: 14px;
	color: #ffffff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.reward-time {
	font-family: 'KanitM', sans-serif;
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	margin-top: 2px;
}

.reward-message {
	font-family: 'KanitM', sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.75);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	margin-top: 2px;
}

.rewards-loading,
.rewards-empty {
	display: none;
	text-align: center;
	font-family: 'KanitM', sans-serif;
	font-size: 15px;
	color: rgba(255,255,255,0.7);
	padding: 60px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.rewards-unsupported {
	display: none;
	text-align: center;
	font-family: 'KanitM', sans-serif;
	font-size: 12px;
	color: #ffcc44;
	padding: 6px 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

#REWARDSSCREEN .account-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

#REWARDSSCREEN .account-btn {
	width: 143px;
	height: 40px;
	padding: 0 20px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

#REWARDSSCREEN .account-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

#REWARDSSCREEN .account-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

#REWARDSSCREEN .btn-close {
	background-image: url('../Shared/Assets/UI/stop_button.webp');
}

#REWARDSSCREEN .btn-green {
	background-image: url('../Shared/Assets/UI/start_button.webp');
}

.reward-claim-btn {
	flex-shrink: 0;
	width: 90px;
	height: 30px;
	padding: 0;
	font-size: 14px;
	font-family: 'KanitM', sans-serif;
	cursor: pointer;
	border: none;
	background-image: url('../Shared/Assets/UI/start_button.webp');
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-color: transparent;
	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	transition: transform 0.1s ease, filter 0.1s ease;
	outline: none;
}

.reward-claim-btn:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

.reward-claim-btn:active {
	transform: scale(0.97);
	filter: brightness(0.95);
}

.reward-claim-btn:disabled {
	filter: brightness(0.5);
	cursor: default;
	transform: none;
}

/* Notification dot for pending rewards */
.notification-dot {
	display: none;
	position: absolute;
	top: -3px;
	right: -3px;
	width: 12px;
	height: 12px;
	background: #ff4444;
	border-radius: 50%;
	border: 2px solid #3a2a1a;
	pointer-events: none;
	z-index: 5;
}

#playsaurusAccountBtn .notification-dot {
	top: -2px;
	right: -2px;
	width: 14px;
	height: 14px;
}

#ACCOUNTSCREEN .account-btn {
	position: relative;
}
