/* =========================================================================
   Reset
   ========================================================================= */
* {
  margin: 0;
  padding: 0;
}

/* =========================================================================
   Base Layout
   ========================================================================= */
body {
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 16px;
  color: #454545;
  background-color: #eeeeee;
  background-image: url("header2.png"), url("bg.png");
  background-repeat: no-repeat, repeat;
  background-position: center top, 0 0;
  background-attachment: scroll, scroll;
  background-size: auto, auto;
}

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

#header {
  width: 800px;
  height: 1px;
  float: middle;
  padding: 0;
  margin: 0 auto;
  color: #454545;
}

#navigation {
  width: 800px;
  float: middle;
  padding: 0;
  margin: 435px auto 0 auto;
  color: #333;
}

#body {
  width: 800px;
  float: middle;
  padding: 15px;
  margin: 0 auto;
  color: #454545;
}

#footer {
  width: 500px;
  height: 114px;
  float: middle;
  padding: 10px 0;
  margin: 0 auto;
  color: #454545;
  background-image: url("footer.png");
  background-repeat: no-repeat;
  background-position: left top;
}

#footer p {
  font-size: 14px !important;
  text-align: center;
}

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0);
}

.nav li {
  flex: 1;
  text-align: center;
}

.nav li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #454545;
  font-size: 16px;
}

.nav li a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #454545;
}

/* =========================================================================
   Sample Link + Copy Button
   ========================================================================= */
.samplelink {
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(187, 187, 187, 0.3);
  color: #636363;
  border: 1px solid #fff;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 14px;
  text-align: center;
}

.copy-button {
  width: 100px;
  margin: 5px auto 0 !important;
  padding: 10px !important;
  background: rgba(187, 187, 187, 0.3);
  color: #636363;
  border: 1px solid #fff;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s;
}

.copy-button:hover {
  background: #f0f0f0;
}

/* =========================================================================
   Forms CSS - Unified
   ========================================================================= */
.custom_input {
  display: flex;
  align-items: center;
  margin-bottom: 5px !important;
}

.custom_input label {
  width: 120px;
  display: inline-block;
  text-align: right;
  margin-right: 10px;
}

.custom_input .input,
form[class^="show_"] input[type="text"],
form[class^="show_"] input[type="email"],
form[class^="show_"] input[type="password"],
form[class^="show_"] input[type="url"],
form[class^="show_"] select,
form[class^="show_"] textarea {
  width: 300px;
  display: block;
  padding: 10px;
  margin-bottom: 5px;
  font-size: 20px;
  background: rgba(187, 187, 187, 0.3);
  color: #636363;
  border: 1px solid #fff;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s ease;
}

.custom_input .input:focus,
form[class^="show_"] input:focus,
form[class^="show_"] select:focus,
form[class^="show_"] textarea:focus {
  background: rgba(187, 187, 187, 0.6);
}

/* Placeholder */
.custom_input .input::placeholder,
form[class^="show_"] ::placeholder {
  color: #f0f0f0;
}

/* Buttons */
.custom_input input[type="submit"],
form[class^="show_"] input[type="submit"],
form[class^="show_"] input[type="reset"] {
  width: auto;
  padding: 10px 20px;
  margin-top: 10px;
  background: rgba(187, 187, 187, 0.3);
  color: #636363;
  border: 1px solid #fff;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.custom_input input[type="submit"]:hover,
form[class^="show_"] input[type="submit"]:hover,
form[class^="show_"] input[type="reset"]:hover {
  background: rgba(187, 187, 187, 0.5);
}

/* Form structure */
form[class^="show_"] p {
  margin-bottom: 15px;
}

form[class^="show_"] span[class$="_label"] {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #636363;
}

form[class^="show_"] textarea {
  min-height: 60px;
  resize: vertical;
}

form[class^="show_"] select {
  margin-bottom: 5px;
}

/* Radio & Checkbox */
form[class^="show_"] input[type="radio"],
form[class^="show_"] input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
}

form[class^="show_"] span[class*="_field_label"] {
  display: inline;
  margin-left: 5px;
  font-weight: normal;
}

/* Groups */
.show_join_email_settings_yes,
.show_join_email_settings_no,
.show_update_email_settings_leave,
.show_update_email_settings_yes,
.show_update_email_settings_no,
.show_join_send_account_info_yes {
  display: block !important;
  margin: 3px 0;
}

/* Password fields */
.show_join_password_field,
.show_update_password_field,
.show_join_password_field2,
.show_update_password_field2 {
  width: 300px;
  display: block;
}

.show_join_password_field2,
.show_update_password_field2 {
  margin-top: 5px;
}

/* =========================================================================
   Typography
   ========================================================================= */
p {
  margin: 20px;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 20px;
}

a, p a {
  color: #b7608f;
}

a:hover, p a:hover {
  color: #9d9daf;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-family: "MinskaLocal", "Gabriela", serif;
  color: #85bfdb;
  text-transform: lowercase;
}

h1 { font-size: 30px; font-weight: bold; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; margin-top: 20px; }

/* =========================================================================
   Stats
   ========================================================================= */
.stats {
  margin: 20px;
  padding-bottom: 10px;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 18px;
  color: #454545;
}

.stats a {
  color: #b7608f;
}

.stats a:hover {
  color: #9d9daf;
}

/* =========================================================================
   Codes & Sort List
   ========================================================================= */
.show_sort_list,
.codesort a {
  color: #b7608f;
}

.show_sort_list:hover,
.codesort a:hover {
  color: #9d9daf;
}

#codes ul {
  display: flex;
  justify-content: center;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}

#codes li {
  display: inline;
}

#codes p {
  text-align: center;
}

#codes p img {
  margin: 0 auto;
}

.show_sort_list {
  margin-left: 100px;
  padding: 0;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 20px;
  list-style: none;
}

.show_sort_list li {
  margin: 5px 0;
}

.show_sort_list a {
  color: #b7608f;
  text-decoration: none;
}

.show_sort_list a:hover {
  color: #9d9daf;
  text-decoration: underline;
}


@font-face {
  font-family: "MinskaLocal";
  src: url("minska.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "GabrielaLocal";
  src: url("Gabriela-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

b, strong {
  color: #9faa75;
  font-weight: bold;
}

#codes img {
  margin: 1px;
  padding: 4px;
  background-color: rgba(255,255,255,.7);
  border: 0 solid #3C3C3F;
}


/* =========================================================================
   WEBRINGS
   ========================================================================= */
#fanlistings {
  margin: 20px;
  font-family: "GabrielaLocal", "Gabriela", serif;
  text-shadow: 1px 1px 0px #fff;
  font-size: 10px;
}