/* ==UserStyle==
@name         SteamStat.us - Re-Remastered - Lime Green/Purple Style
@version      20241115.16.03
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  Lime Green/Purple Theme
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
@downloadURL none
==/UserStyle== */

@document domain("steamstat.us") {
	.title {
		margin: 10px 0;
		background: linear-gradient(
			145deg,
			#32cd32,
			#8a2be2
		);
		background-clip: text;
		color: #32cd32;
		font-weight: 300;
		font-size: 2.6em;
		/* Lime Green/Purple Status Title */
		text-align: center;
		text-shadow: 1px 1px 1px rgb(55 10 63 / 90%); /* Black shadow added */
		-webkit-text-fill-color: transparent;
	}

	a {
		color: #8a2be2;
		font-weight: 700;
		text-decoration: none;
		text-shadow: 1px 1px 1px rgb(0 0 0 / 60%); /* Black shadow added */
	}

	a:hover {
		color: #32cd32;
		text-decoration: underline;
	}

	.pull-right,
	.service .status {
		float: right;
		text-align: right;
	}

	.good {
		/* Lime Green */
		color: #32cd32;
		text-shadow: 1px 1px 2px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	.minor {
		/* Light Purple */
		color: #9370db;
		font-weight: 700;
		text-shadow: 1px 1px 2px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	.major {
		/* Bright Lime */
		color: #adff2f;
		font-weight: 700;
		text-shadow: 1px 1px 2px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	#js-refresh {
		/* Refreshing in idk seconds */
		color: #8a2be2;
		font-weight: bolder;
		text-shadow: 0 0 2px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	.services,
	#psa,
	noscript {
		position: relative;
		box-shadow: 0 4px 8px rgb(0 0 0 / 40%);
		border: 1px solid #8a2be2;
		border-radius: 3px;
		background: linear-gradient(
			145deg,
			#1c8e1c,
			#7016c3
		);
		color: #f8f8f2;
		font-size: 1em;
		line-height: 1.5;
		text-shadow: 0 0 5px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	body {
		margin: 0;
		background: linear-gradient(
			145deg,
			#32cd32,
			#8a2be2
		);
		color: #32cd32;
		font-weight: 300;
		font-size: 16px;
		font-family: Roboto, Arial, sans-serif;
		text-shadow: 1px 1px 3px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	[data-tooltip]::before {
		/* Time since last status change Box */
		visibility: hidden;
		opacity: 0%;
		overflow: hidden;
		content: attr(data-tooltip);
		font-size: 0.9em;
		white-space: pre;
		word-wrap: break-word;
		position: absolute;
		top: 0;
		left: 2%;
		z-index: 1;
		transition:
			visibility 0s,
			opacity 0.3s ease-in-out;
		border-radius: 6px;
		background: #21222c;
		padding: 8px;
		width: 96%;
		color: #32cd32;
		font-style: italic;
		font-weight: 300;
		text-align: left;
		text-shadow: 1px 1px 3px rgb(0 0 0 / 80%); /* Black shadow added */
	}

	[data-tooltip]:hover::before {
		visibility: visible;
		opacity: 100%;
	}
}
