/**
 * Main Styles for Plebapalooza Theme
 */
.marquee {
  height: 50px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  background-color: #fff;
  z-index: 10;
  top: 0;
}
@media (max-width: 550px) {
  .marquee {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0); /* Force hardware acceleration */
    transform: translate3d(0, 0, 0);
  }
}
.marquee__inner {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0); /* Force hardware acceleration */
  transform: translate3d(0, 0, 0);
}
.marquee__content {
  height: 100%;
  display: flex;
  animation: marquee 20s linear infinite;
  -webkit-animation: marquee 20s linear infinite; /* Ensure WebKit animation */
  will-change: transform; /* Performance optimization */
  -webkit-transform: translate3d(0, 0, 0); /* Force hardware acceleration */
  transform: translate3d(0, 0, 0);
}
.marquee__content img {
  height: 100%;
  width: auto;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@media (max-width: 550px) {
  #wpadminbar {
    display: none;
  }
}

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 2;
}
.banner__image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 550px) {
  .banner__image {
    width: 100vw;
  }
}

.game {
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 12px 20px 20px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.game__description {
  margin-bottom: 20px;
}
.game__description-tagline {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}
.game__description-tagline-complete {
  color: #ff9920;
}
.game__description-tagline-learn {
  color: #fff;
}
.game__description-tagline-win {
  color: #ff9920;
}
@media (max-width: 430px) {
  .game__description-tagline-win {
    display: block;
    text-align: center;
  }
}
.game__description-bonus {
  background-color: #ff9920;
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
  display: inline-block;
  border-radius: 0;
}
.game__description-bonus em {
  font-style: normal;
}
.game__description-bonus u {
  text-decoration: underline;
}
.game__title {
  font-size: 40px;
  margin-bottom: 5px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}
.game__title-on {
  color: #41ad49;
}
.game__title-off {
  color: #98080c;
}
.game__title-bracket {
  color: #fff;
  display: inline-block;
  margin: 0 -2px;
  position: relative;
}
.game__title-bracket:first-of-type {
  margin-right: -5px;
}
.game__title-bracket:last-of-type {
  margin-left: -5px;
}
.game__subtitle {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ff9920;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
}
.game__subtitle-status {
  color: #4CAF50;
}
.game__prize {
  background-color: #333;
  border: 1px solid #fff;
  display: inline-block;
  padding: 10px 16px 4px 16px;
  margin-bottom: 15px;
  border-radius: 0px;
  color: #ff9920;
  font-size: 24px;
  font-family: "Luckiest Guy", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}
.game__wallet-info {
  margin: 6px auto;
  max-width: 90%;
}
.game__wallet-label {
  font-size: 16px;
  margin-bottom: 0px;
  color: #fff;
  line-height: 1.2;
}
.game__wallet-address {
  display: inline-block;
  font-family: monospace;
  font-size: 14px;
  word-break: break-all;
  color: #4da3fd;
  transition: all 0.2s ease;
  text-decoration: underline;
}
.game__wallet-address:hover {
  color: #ff9920;
  text-decoration: none;
}
.game__user-welcome {
  margin: 30px auto;
  padding: 20px;
  background-color: rgba(65, 173, 73, 0.1);
  border: 1px solid rgba(65, 173, 73, 0.3);
  border-radius: 5px;
  max-width: 450px;
  position: relative;
}
.game__user-welcome h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #41ad49;
}
.game__user-welcome p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #fff;
}
.game__user-welcome p:last-child {
  margin-bottom: 0;
}
.game__welcome-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.game__welcome-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}
.game__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px auto;
  width: 80%;
  max-width: 450px;
}
.game__form {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 0;
}
.game__form-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.game__form-input {
  width: 96%;
  padding: 10px;
  border: 2px solid #F9A825;
  background-color: #fff;
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
  border-radius: 0;
}
.game__form-input:focus {
  outline: none;
  border-color: #4CAF50;
}
.game__form-error {
  color: #ff3b30;
  font-size: 14px;
  margin: 10px 0;
  padding: 8px;
  background-color: rgba(255, 59, 48, 0.1);
  border-radius: 4px;
  display: none;
}
.game__form-disclaimer {
  font-size: 12px;
  font-style: italic;
  margin: 10px 0;
  color: #FFF;
  line-height: 1.3;
}
.game__form-disclaimer a {
  color: #00aeef;
  text-decoration: underline;
}
.game__form-button {
  background-color: #ff9920;
  color: #000000;
  border: none;
  padding: 10px 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s;
}
.game__form-button:hover {
  background-color: rgb(248.3169642857, 158.0959821429, 12.1830357143);
}
.game__form-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.game__confirmation {
  text-align: center;
  padding: 20px;
  background-color: rgba(52, 199, 89, 0.1);
  border-radius: 8px;
  margin: 20px 0;
}
.game__confirmation-title {
  color: #f7931a;
  font-size: 28px;
  margin-bottom: 15px;
}
.game__confirmation-message {
  font-size: 18px;
  margin-bottom: 10px;
}
.game__confirmation-follow {
  font-size: 16px;
  opacity: 0.8;
}

@keyframes wallet-highlight {
  0% {
    box-shadow: 0 0 0 rgba(65, 173, 73, 0);
  }
  50% {
    box-shadow: 0 0 10px rgba(65, 173, 73, 0.5);
  }
  100% {
    box-shadow: 0 0 0 rgba(65, 173, 73, 0);
  }
}
.windows-os .game__prize {
  padding-top: 4px;
}

.sponsors {
  width: 100%;
  padding: 20px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sponsors__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

.sponsors-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  max-width: 100%;
  padding: 0 20px;
}

.sponsor-box {
  background-color: #272727;
  border: 2px solid #bf8733;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
}

.sponsor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .sponsor-content {
    flex-direction: column;
  }
}

.sponsor-logo {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.sponsor-logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
}
@media (max-width: 600px) {
  .sponsor-logo {
    width: 100%;
    margin-bottom: 15px;
  }
}

.sponsor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sponsor-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.sponsor-link {
  color: #4da3fd;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.sponsor-link:hover {
  text-decoration: underline;
  color: #ff9920;
}

.entry-header {
  background: #000 !important;
  text-align: center;
  margin-bottom: 30px;
  background-color: transparent;
  padding: 15px 0;
}

.entry-title {
  color: #fff;
  font-family: "Luckiest Guy", cursive;
  font-size: 32px;
  margin: 0;
  letter-spacing: 1px;
}

.speed-wallet-integration {
  background: #ff9518;
  color: #fff;
  padding: 8px 16px 10px 16px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px auto;
  font-family: inherit;
  z-index: 2;
}
.speed-wallet-integration__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.speed-wallet-integration__balance {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  font-size: 1.7rem;
  font-weight: bold;
}
.speed-wallet-integration__balance img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.speed-wallet-integration__header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  color: #000000;
}
.speed-wallet-integration__sub {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #fff;
}
.speed-wallet-integration__form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  gap: 4px;
  background: none;
  box-shadow: none;
  padding: 0;
  position: relative;
}
.speed-wallet-integration__form-logo {
  width: 40px;
  height: 40px;
  margin-right: 6px;
  border-radius: 6px;
  background: unset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.speed-wallet-integration__form-input-container {
  position: relative;
  border: 2px solid #222;
}
.speed-wallet-integration__form-input {
  font-size: 14px;
  padding: 0 70px 0 12px;
  border: none;
  border-radius: 2px;
  margin-right: 0;
  outline: none;
  color: #000;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  height: 36px;
}
.speed-wallet-integration__form-go {
  font-size: 1.2rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  outline: none;
  position: absolute;
  right: 2px;
  top: 2px;
  height: 32px;
}
.speed-wallet-integration__form-go:hover {
  color: #e09a3d;
}
.speed-wallet-integration__app-link {
  font-size: 14px;
  margin-top: 2px;
  color: #fff;
}
.speed-wallet-integration__app-link a {
  color: #000;
  text-decoration: underline;
  font-style: italic;
  font-weight: 500;
}
.speed-wallet-integration__app-link a:hover {
  color: #fff;
  text-decoration: underline;
}

.contest-questions {
  margin: 32px auto 0 auto;
  max-width: 600px;
  width: 100%;
  position: relative;
  padding: 0 30px;
  z-index: 2;
}

.contest-question {
  background: #000;
  border-radius: 0px;
  margin-bottom: 9px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.contest-question__toggle {
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 18px 24px;
  border: none;
  text-align: center;
  cursor: pointer;
  outline: none;
  border-bottom: 2px solid #333333;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contest-question__content {
  background: #ff9518;
  padding: 12px 16px 8px 16px;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 0px;
  text-align: center;
  border: 1px solid #333333;
  border-top: 0px;
}
.contest-question__locked {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.contest-question__locked img {
  display: block;
  margin: 0 auto;
  height: 48px;
  width: auto;
}
.contest-question__clue-toggle {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  margin-top: 10px;
}
.contest-question__clue-toggle label {
  font-weight: bold;
  color: #000;
  background: #fff;
  border-radius: 16px;
  padding: 4px 16px;
  cursor: pointer;
  font-size: 1rem;
}
.contest-question__clue-toggle label input[type=radio] {
  margin-right: 6px;
}
.contest-question__clue-text {
  margin-bottom: 18px;
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 0px;
  padding: 5px 10px;
}
.contest-question__sponsor {
  background: #FFF;
  margin: 18px 0 18px 0;
}
.contest-question__sponsor-title {
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 10px;
  border-radius: 0px;
}
.contest-question__sponsor img {
  max-width: 220px;
  max-height: 140px;
  display: block;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.contest-question__guess-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
.contest-question__guess-form-inner {
  position: relative;
  border: 2px solid #222;
  width: 100%;
}
.contest-question__guess-input {
  font-size: 14px;
  padding: 0 80px 0 12px;
  border: none;
  border-radius: 2px;
  margin-right: 0;
  outline: none;
  color: #000;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  height: 36px;
  width: 100%;
}
.contest-question__guess-btn {
  font-size: 1rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 1px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  outline: none;
  position: absolute;
  right: 2px;
  top: 2px;
  height: 32px;
}
.contest-question__guess-btn:hover {
  color: #e09a3d;
}
.contest-question__guess-message {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 4px;
  min-height: 18px;
}

.contest-question__status-icon {
  margin-left: 10px;
  display: flex;
  align-items: center;
  height: 24px;
  width: auto;
}
.contest-question__toggle:not(.contest-question__toggle--locked) .contest-question__status-icon:empty {
  display: none;
  width: 0;
  margin: 0;
}

.contest-question__sats-display {
  font-size: 1.1rem;
  color: #ff9518;
  white-space: nowrap;
}

.contest-question__toggle--locked {
  cursor: not-allowed !important;
  opacity: 0.6;
}
.contest-question__toggle--locked span:first-child {
  display: none;
}
.contest-question__toggle--locked .contest-question__status-icon {
  margin: 0;
}

.sponsors {
  width: 100%;
  padding: 20px 0px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sponsors__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

.sponsors-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px 0;
  max-width: 100%;
  padding: 0 20px;
}

.sponsor-box {
  background-color: #272727;
  border: 2px solid #bf8733;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
}

.sponsor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .sponsor-content {
    flex-direction: column;
  }
}

.sponsor-logo {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.sponsor-logo img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
}
@media (max-width: 600px) {
  .sponsor-logo {
    width: 100%;
    margin-bottom: 15px;
  }
}

.sponsor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sponsor-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.sponsor-link {
  color: #4da3fd;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.sponsor-link:hover {
  text-decoration: underline;
  color: #ff9920;
}

.entry-header {
  background: #000 !important;
  text-align: center;
  margin-bottom: 30px;
  background-color: transparent;
  padding: 15px 0;
}

.entry-title {
  color: #fff;
  font-family: "Luckiest Guy", cursive;
  font-size: 32px;
  margin: 0;
  letter-spacing: 1px;
}

.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: #000;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 550px) {
  .site-footer {
    position: fixed;
    padding: 12px 0;
  }
}
.site-footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__menu li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 550px) {
  .site-footer__menu li {
    font-size: 12px;
  }
}
.site-footer__menu li:not(:last-child):after {
  content: "|";
  color: #FFF;
  margin: 0 12px;
}
@media (max-width: 550px) {
  .site-footer__menu li:not(:last-child):after {
    margin: 0 8px;
  }
}
.site-footer__menu a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__menu a:hover {
  color: #ff9920;
}

.swipe-panel {
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: #1a1a1a;
  z-index: 9;
  transition: transform 0.3s ease;
  border-top: 1px solid #333;
}
.swipe-panel.visible {
  transform: translateY(-120px);
}
.swipe-panel__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
.swipe-panel .logout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff9920;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s;
  gap: 8px;
}
.swipe-panel .logout-button:hover {
  background: #fff;
  color: #000;
}
.swipe-panel .logout-button svg {
  margin-right: 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100vw;
  height: 100vh;
  background: #111 url(../images/bg.jpg) repeat 0 0;
  background-size: 700px;
  margin: 0;
  overflow: hidden;
  margin-top: 0 !important;
}
@media (max-width: 550px) {
  html {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
  }
}

body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.6;
  margin: 0;
  background: transparent url(../images/phone.png) no-repeat center center;
  background-size: 1080px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 550px) {
  body {
    background: none;
    height: auto;
    overflow: initial;
  }
}

.screen-container {
  width: 432px;
  height: 932px;
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #005582;
}

#page {
  width: 432px;
  height: 932px;
  max-height: 100vh;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 550px) {
  #page {
    overflow: visible;
    width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }
}

.page-inner {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 50px;
  padding-top: 50px;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
@media (max-width: 550px) {
  .page-inner {
    overflow: visible;
    width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    /* Add padding to account for the footer */
    padding-bottom: 80px;
  }
}
.page-inner::-webkit-scrollbar {
  display: none;
}
.page-inner:after {
  background: transparent url(../images/footer.png) no-repeat center center;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  opacity: 0.5;
}

.active-contest .page-inner {
  background: transparent url(../images/bg-mobile.jpg) repeat-y center center;
}

.content-area {
  position: relative;
  z-index: 2;
}

.page-content {
  position: relative;
  z-index: 2;
  padding: 20px 20px 50px 20px;
  background-color: #000;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
  color: #f7931a;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}
.page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content h4:first-child, .page-content h5:first-child, .page-content h6:first-child {
  margin-top: 0;
}
.page-content h1 {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1em;
  color: #fff;
  font-family: "Luckiest Guy", cursive;
}
.page-content h2 {
  font-size: 1.5rem;
  padding-bottom: 0.3em;
}
.page-content h3 {
  font-size: 1.25rem;
}
.page-content p {
  margin-bottom: 1.2em;
  line-height: 1.6;
  color: #fff;
}
.page-content ul, .page-content ol {
  margin: 0 0 1.5em 2em;
  padding-left: 1em;
}
.page-content ul {
  list-style: disc;
}
.page-content ol {
  list-style: decimal;
}
.page-content li {
  margin-bottom: 0.5em;
  color: #fff;
}
.page-content li > ul,
.page-content li > ol {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.page-content dl {
  margin: 0 0 1.5em;
}
.page-content dt {
  font-weight: bold;
  color: #f7931a;
}
.page-content dd {
  margin: 0 0 1em 1em;
  color: #fff;
}
.page-content a {
  color: #41ad49;
  text-decoration: underline;
}
.page-content a:hover {
  color: #5fce67;
}
.page-content blockquote {
  border-left: 4px solid #f7931a;
  padding: 0.5em 0 0.5em 1.5em;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5em;
  font-style: italic;
}
.page-content blockquote p:last-child {
  margin-bottom: 0;
}
.page-content code, .page-content pre {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}
.page-content pre {
  padding: 1em;
  overflow: auto;
  margin-bottom: 1.5em;
}
.page-content pre code {
  padding: 0;
  background: none;
}
.page-content strong {
  font-weight: bold;
  color: #f7931a;
}
.page-content em {
  font-style: italic;
}

/*# sourceMappingURL=main.css.map */
