* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,190,60,.25), transparent 35%),
    linear-gradient(135deg, #050505, #151008, #000);
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page {
  width: min(92%, 950px);
  margin: 40px auto;
  padding: 35px;
  border: 1px solid rgba(255,190,60,.45);
  border-radius: 24px;
  background: rgba(0,0,0,.72);
  box-shadow: 0 0 45px rgba(255,180,45,.3);
}

.logo {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid #ffd36a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #ffd36a;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 25px gold;
  box-shadow: 0 0 35px rgba(255,190,60,.55), inset 0 0 25px rgba(255,190,60,.25);
}

h1, h2 {
  color: #ffd36a;
  text-shadow: 0 0 16px rgba(255,190,60,.55);
}

a {
  color: #ffd36a;
}

.nav {
  margin: 22px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #111;
  background: linear-gradient(135deg, #ffd36a, #b98220);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: bold;
}

.box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,190,60,.08);
  border: 1px solid rgba(255,190,60,.25);
}

.footer {
  margin-top: 30px;
  color: #d6a83f;
  font-size: 14px;
}

/* MysteryWolf global wolf background */
body {
  background-image:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.78)),
    url('/background.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
}
