<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling with background image */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('https://wallpapers.com/images/hd/gaming-servers-1680-x-840-wallpaper-ilhvxvspgarexzqw.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #f5f5f5;
  padding: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 0;
}

/* Gradient Divider */
hr.gradient-line {
  border: 0;
  height: 2px;
  background: linear-gradient(to right, #00ffcc, #0066ff);
  margin: 30px 0;
}

/* Overlay for readability */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Main Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Headings */
h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #00ffcc;
}

/* Paragraphs */
p {
  text-align: center;
  margin-bottom: 10px;
  color: #e0e0e0;
  font-size: 1.1rem;
}

p em {
  color: #00ffcc;
  font-style: italic;
}

/* Horizontal Rule */
hr {
  border: none;
  height: 1px;
  background-color: #444;
  margin: 20px 0;
}

/* Game List Styling */
ul.game-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
}

ul.game-list &gt; li {
  margin-bottom: 15px;
}

/* Nested lists */
ul.game-list ul {
  list-style-type: circle;
  margin-top: 5px;
  padding-left: 20px;
  color: #bbbbbb;
}

ul.game-list ul ul {
  list-style-type: square;
  padding-left: 20px;
  color: #999999;
}

/* Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }
}

/* ðŸ”— Custom Link Styling */
a,
a:visited {
  color: #d81b3e;           /* Rich Crimson Red*/
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #ffffff;           /* White on hover/focus */
  text-decoration: underline;
}
</pre></body></html>