SteamStat.us - Re-Remastered USA Style

SteamStat.us - Re-Remastered USA Red/White/Blue Style

/* ==UserStyle==
@name         SteamStat.us - Re-Remastered USA Style
@version      20241115.16.03
@namespace    https://github.com/Nick2bad4u/UserStyles
@description  SteamStat.us - Re-Remastered USA Red/White/Blue Style
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@author       Nick2bad4u
@license      UnLicense
==/UserStyle== */

@-moz-document domain("steamstat.us") {
  .title {
    /* USA Red/White/Blue Status Title */
    text-align: center;
    margin: 10px 0;
    font-size: 2.6em;
    font-weight: 300;
    color: #ff0000; /* Red */
    text-shadow: 1px 1px 1px rgba(0, 0, 128, 0.9); /* Navy blue shadow */
    background: linear-gradient(145deg, #ff0000, #0000ff); /* Red to Blue gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  a {
    color: #0000ff; /* Blue */
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.6); /* White shadow */
    font-weight: bold;
  }

  a:hover {
    color: #ff0000; /* Red */
    text-decoration: underline;
  }

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

  .good {
    /* White */
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Black shadow */
  }

  .minor {
    /* Sky Blue */
    color: #87ceeb;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Black shadow */
    font-weight: bold;
  }

  .major {
    /* Bright Red */
    color: #ff4500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Black shadow */
    font-weight: bold;
  }

  #js-refresh {
    /* Refreshing in idk seconds */
    color: #0000ff; /* Blue */
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.8); /* White shadow */
    font-weight: bolder;
  }

  .services,
  #psa,
  noscript {
    position: relative;
    background: linear-gradient(145deg, #ff0000, #0000ff); /* Red to Blue gradient */
    border: 1px solid #ffffff; /* White border */
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8); /* Black shadow */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    color: #ffffff; /* White text */
  }

  body {
    margin: 0;
    color: #ffffff; /* White text */
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Black shadow */
    font-weight: 300;
    background: linear-gradient(145deg, #ff0000, #0000ff); /* Red to Blue gradient */
  }

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

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