body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url('/static/img/RippleGlowBackground.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

nav {
  background-color: rgba(0,83,82,0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav a img {
  height: 38px;
  cursor: pointer;
  user-select: none;
  outline: none;  
}

nav, nav * {
  user-select: none;
  cursor: default;
}

a {
  outline: none;
}

a:focus {
  outline: none;
}

.nav-account {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  min-width: 0;
}

.nav-account svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.nav-account span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #fff;
}

#accountMenu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: #0e2739;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  min-width: 100%;
  z-index: 1000;
}

#accountMenu a {
  display: block;
  color: #fff;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
}

#accountMenu a:hover {
  background-color: #0c4563;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

main section {
  background-color: rgba(0,83,82,0.85);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 500px;
}

main h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00c4a7;
  text-align: center;
  user-select: none;
}

main p {
  font-size: 14px;
  color: #eee;
  text-align: center;
  user-select: none;
}

.footer {
  background-color: #005352;
  color: white;
  text-align: center;
  padding: 0 15px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  flex-shrink: 0;
  user-select: none;
}

#accountMenu a {
  display: block;
  color: #fff;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
}

#accountMenu a:hover {
  background-color: #0c4563;
}