body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url('assets/loading_screen.png') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #333;
  text-align: center;
  overflow: hidden;
}

/* Container (maintenance text) */

.container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 700px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Header */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(60, 60, 60, 0.7);
  color: #fff;
  padding: 5px 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.x-link,
.discord-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.x-logo,
.discord-logo {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  border-radius: 6px;
}

.discord-link {
  margin-left: 8px;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(60, 60, 60, 0.7);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  z-index: 1000;
}

.footer-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-separator {
  color: #bbb;
  margin: 0 4px;
}
