body {
  margin: 0;
  background: #0f0f0f;
  color: #e8e2d6;
  font-family: Verdana, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("noise.png");
  opacity: 0.04;
  pointer-events: none;
}


#wrapper {
  width: 900px;
  margin: 0 auto;
}

#header {
  height: 350px;
border-bottom: 1px solid #b89b5e;
}

#header::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
}

#frame {
  display: flex;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
}

#nav {
  width: 220px;
  padding: 25px;
}

#nav h2 {
  margin-bottom: 14px;
}

#nav a {
  display: block;
  margin-bottom: 8px;
text-transform: uppercase;
font-size: 14px;
  letter-spacing: 0.06em;
}

#nav a:hover {
  color: #ffffff;
  padding-left: 4px;
}

#nav a:active {
  color: #ffffff;
}


#content {
  width: 680px;
  padding: 25px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

.panel {
  background: linear-gradient(
    to bottom,
    #1f2a3a,
    #182231
  );
  border: 1px solid #b89b5e;
  padding: 20px;
  margin-bottom: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.6);
position: relative;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184,155,94,0.35);
  pointer-events: none;
}.panel input,
.panel select,
.panel textarea {
  max-width: 100%;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #b89b5e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
font-size: 18px;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #b89b5e;
  margin-top: 8px;
}


a {
  color: #b89b5e;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

#header {
  height: 350px;
  background: url("new_header.png") right center no-repeat;
  background-size: cover;
  border-bottom: 1px solid #3a3a3a;
  position: relative;
}

em {
  color: #d6c38a;
}

p {
  line-height: 1.6;
}

#frame {
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

#title {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  letter-spacing: 0.1em;
  color: #b89b5e;
text-shadow: 0 0 6px rgba(184,155,94,0.3);
}

.title-line {
  width: 80px;
  height: 1px;
  background: #b89b5e;
  margin: 8px 0 10px 0;
}

.stats-content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  background-image: url("stats2.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;

  padding-right: 180px;
}

.stats-text {
  flex: 1;
}

.stats-image img {
  height: 100%;
  width: auto;
  border: 1px solid #b89b5e;
  margin-left: 20px;
  display: block;
}

/* All Enthusiast forms */

.panel form p {
  margin-bottom: 14px;
}

.panel form label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Inputs */

.panel form input[type="text"],
.panel form input[type="email"],
.panel form input[type="password"],
.panel form input[type="url"],
.panel form select,
.panel form textarea {
  width: 240px;
  background: #0f0f0f;
  border: 1px solid #b89b5e;
  color: #e8e2d6;
  padding: 4px 6px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

/* Radio buttons */

.panel form input[type="radio"] {
  margin-right: 4px;
}

/* Submit buttons */

.panel form input[type="submit"] {
  background: #1f2a3a;
  border: 1px solid #b89b5e;
  color: #e8e2d6;
  padding: 6px 14px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.panel form input[type="submit"]:hover {
  background: #182231;
}