/* HL2GO Credits System - Frontend Styles */

/* Credits in User Dropdown */
.hl2go-credits-dropdown-item {
	border-bottom: 2px solid rgba(0, 255, 136, 0.2) !important;
	margin-bottom: 8px !important;
}

.hl2go-credits-dropdown-item a {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 16px !important;
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 217, 255, 0.1) 100%) !important;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 136, 0.3);
	transition: all 0.3s ease;
	text-decoration: none !important;
	margin: 0 8px 8px 8px;
}

.hl2go-credits-dropdown-item a:hover {
	background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%) !important;
	border-color: #00ff88;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.hl2go-credits-icon {
	font-size: 18px;
	line-height: 1;
}

.hl2go-credits-balance {
	color: #00ff88 !important;
	font-weight: 700 !important;
	font-size: 18px !important;
}

.hl2go-credits-label {
	color: #00d9ff !important;
	font-size: 14px !important;
}

/* Toast Notifications */
.hl2go-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 16px 24px;
	background: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
	color: #1a1a2e;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
	font-weight: 600;
	z-index: 100001;
	animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hl2go-toast.error {
	background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.hl2go-credits-dropdown-item a {
		padding: 6px 12px !important;
	}

	.hl2go-credits-label {
		display: none;
	}
}
