
body {
  background-color: #95d7f7;
  margin: 0;
  font-family: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#container {
  width: 950px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
#title {
  width: 404px;
  height: 140px;
  margin: 50px auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#title h1 {
  font-size: 28px;
  color: #333;
  margin: 0;
}

/* Header */
#header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}


.header-section {
  width: 213px;
  height: 216px;
  border: 4px solid white;
  border-radius: 10px;
  display: flex;              /* enables flexbox inside the section */
  justify-content: center;    /* centers image horizontally */
  align-items: center;        /* centers image vertically */
}

.header-section img {
  max-width: 100%;            /* ensures image scales down if needed */
  height: auto;               /* keeps aspect ratio */
}


.pink   { background-color: #f174ae; }
.purple { background-color: #866fa5; }
.teal   { background-color: #6bc8bd; }
.orange { background-color: #fbb474; }

/* Navigation */
#nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: space-between;
}

#nav li {
  position: relative;
  overflow: hidden;
  width: 138px;
  height: 32px;
  border: 4px solid white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 32px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

#nav a:hover {
  letter-spacing: 3px;
}

/* Default colors */
.nav-item.teal   { background-color: #6bc8bd; }
.nav-item.blue   { background-color: #6b8ac8; }
.nav-item.orange { background-color: #fbb474; }
.nav-item.pink   { background-color: #f174ae; }
.nav-item.yellow { background-color: #f8e58d; color: #333; }
.nav-item.purple { background-color: #866fa5; }



/* Body Section */
#bodysection {
  background-color: #dcf2fc;
  border: 4px solid white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 15px;
  text-align: left;
}

/* Footer */
#footer {
  width: 600px;
  height: 100px;
  margin: 15px auto 50px;

}


#footer p {
  font-size: 14px !important;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 0px #95d7f7;
  font-size: 20px;
}

#footer a {
color: #ffffff;
}




/* =========================================================================
   Sample Link + Copy Button
   ========================================================================= */
.samplelink {
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  background-color: #6bc8bd;
  color: #636363;
  border: 4px solid white;
  border-radius: 10px;
  font-family: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  text-align: center;
}

.copy-button {
  width: 100px;
  margin: 5px auto 0 !important;
  padding: 10px !important;
  background-color: #6bc8bd;
  color: #636363;
  border: 4px solid white;
  border-radius: 10px;
  font-family: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  text-align: center;
  transition: background 0.2s;
}

.copy-button:hover {
  background-color: #86d2c9;
  text-shadow: 1px 1px 0px #fff;
}

/* =========================================================================
   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-color: #866fa5;
  color: #ffffff;
  outline: none;
  box-sizing: border-box;
  transition: 0.3s ease;
  border: 4px solid white;
  border-radius: 10px;
}

.custom_input .input:focus,
form[class^="show_"] input:focus,
form[class^="show_"] select:focus,
form[class^="show_"] textarea:focus {
  background-color: #9682b1;
}

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

/* 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-color: #95d7f7;
  color: #636363;
  border: 4px solid #fff;
  border-radius: 10px;
  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(165, 220, 250, 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: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #57486b;
  text-shadow: 1px 1px 0px #fff;
  font-size: 20px;
}

p a, a, body a {
  color: #f174ae;
}

p a:hover, a:hover, body a:hover {
  color: #6bc8bd;
}

h1, h2, h3 {
  margin-bottom: 20px;
  font-family: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  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: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 1px 1px 0px #fff;
  font-size: 18px;
  color: #454545;
}

.stats a {
  color: #f174ae;
}

.stats a:hover {
  color: #6bc8bd;
}

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

.show_sort_list:hover,
.codesort a:hover {
  color: #6bc8bd;
}

#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: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 1px 1px 0px #fff;
  font-size: 20px;
  list-style: none;
}

.show_sort_list li {
  margin: 5px 0;
}

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

.show_sort_list a:hover {
  color: #6bc8bd;
  text-decoration: underline;
}

b, strong {
  color: #6b8ac8;
  font-weight: bold;
}

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



.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  padding: 0 10px;
  background-color: #fbb474;
  color: #ffffff;
  text-decoration: none;
  border: 4px solid #ffffff;
  border-radius: 10px;
  font-family: sans-serif;
  font-size: 14px;
  transition: background-color 0.3s ease, font-size 0.2s ease, height 0.2s ease;
}

.pagination a:hover {
  background-color: #fcc695;
}

.pagination a.current {
  font-size: 16px;
  height: 36px;
  background-color: #fbb474;
  font-weight: bold;
}



/* =========================================================================
   WEBRINGS
   ========================================================================= */
#fanlistings {
  margin: 20px;
  font-family: "Delius", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #57486b;
  text-shadow: 1px 1px 0px #fff;
  font-size: 10px;
}





