.main-wrap {
  position: relative;
  background-image: url(../../img/navbar.webp);
  background-repeat: repeat-x;
  background-position: top center, bottom center;
  background-size: cover;
  width: 100%;
  height: 130px;
  margin: 0;
  padding: 0;
}
.main-wrap::after {
  content: "";
  background-image: url(../../img/nav_bottom.png);
  background-size: cover;
  height: 18px;
  width: 100%;
  z-index: 10;
  top: 100px;
  position: absolute;
}
.main-wrap-content {
  max-height: 120px;
  height: 100%;
  padding: 0;
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-wrap-content .left, .main-wrap-content .right {
  width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1250px) {
  .main-wrap-content .left, .main-wrap-content .right {
    width: 40%;
  }
}
@media (max-width: 1100px) {
  .main-wrap-content .left, .main-wrap-content .right {
    display: none;
  }
}
.main-wrap-content .right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.main-wrap-content .mobile-toggle {
  display: none;
  margin-left: auto;
}
@media (max-width: 1100px) {
  .main-wrap-content .mobile-toggle {
    display: block;
  }
}
.main-wrap-content .mobile-toggle .toggle-btn {
  width: 30px;
  height: 50px;
  padding: 10px 0;
  top: 0;
  left: 0;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.main-wrap-content .mobile-toggle .toggle-btn span {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 60;
  top: 50%;
}
.main-wrap-content .mobile-toggle .toggle-btn span:before {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 60;
  content: "";
  top: -10px;
}
.main-wrap-content .mobile-toggle .toggle-btn span:after {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 60;
  content: "";
  top: 10px;
}
.main-wrap-content .mobile-toggle .toggle-btn.active span {
  background: none;
}
.main-wrap-content .mobile-toggle .toggle-btn.active span:before {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}
.main-wrap-content .mobile-toggle .toggle-btn.active span:after {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}
.main-wrap-content .center {
  position: relative;
  width: 24%;
}
@media (max-width: 1250px) {
  .main-wrap-content .center {
    width: 20%;
  }
}
@media (max-width: 1100px) {
  .main-wrap-content .center {
    width: 50%;
  }
}
.main-wrap-content .center img {
  position: relative;
  width: auto;
  height: auto;
  max-height: 170px;
  z-index: 20;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.main-wrap-content .main-link {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  height: 80px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.main-wrap-content .main-link.right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main-wrap-content .main-link span {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Cinzel";
  text-transform: uppercase;
}
.main-wrap-content .main-link span.title {
  font-size: 24px;
  line-height: 26px;
  color: #f2edd3;
  font-weight: 500;
  text-shadow: 1px 1px 3px #c5cd7f;
}
@media (max-width: 1350px) {
  .main-wrap-content .main-link span.title {
    font-size: 22px;
    line-height: 24px;
  }
}
@media (max-width: 1250px) {
  .main-wrap-content .main-link span.title {
    font-size: 20px;
    line-height: 22px;
  }
}
.main-wrap-content .main-link span.subtitle {
  color: #750d56;
  font-size: 11px;
}
@media (max-width: 1250px) {
  .main-wrap-content .main-link span.subtitle {
    font-size: 10px;
  }
}
.main-wrap-content .main-link:hover {
  text-decoration: none;
}

.mobile-nav-container {
  position: absolute;
  height: 100vh;
  right: 0;
  top: 0;
}
.mobile-nav-container .mobile-nav {
  width: 300px;
  height: 100vh;
  background: rgb(255, 120, 25);
  right: -300px;
  -webkit-transition: right 0.8s ease-in-out;
  transition: right 0.8s ease-in-out;
  position: absolute;
  z-index: 50;
}
.mobile-nav-container .mobile-nav.active {
  right: 0;
  position: fixed;
}
.mobile-nav-container .mobile-nav .mobile-nav-links {
  margin-top: 160px;
  position: relative;
  z-index: 70;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px 0;
}
.mobile-nav-container .mobile-nav .mobile-nav-links a {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  text-transform: uppercase;
  padding: 3px;
  color: #f2edd3;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.mobile-nav-container .mobile-nav .mobile-nav-links a:hover {
  border-bottom: 2px solid #750d56;
  text-decoration: none;
}

.footer {
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 10px;
  background: rgba(143, 16, 105, 0.7);
  border: 2px solid rgba(143, 16, 105, 0.8);
  color: #fff;
}
.footer a {
  color: #750d56;
}
.footer a:hover {
  text-decoration: none;
  color: #750d56;
}

.wrapper {
  background-color: rgba(143, 16, 105, 0.7);
  margin: 50px 0;
  width: 100%;
  height: auto;
  padding: 20px 10px;
}
.wrapper .title {
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.content-wrapper-decorated {
  background-color: rgba(143, 16, 105, 0.7);
  margin: 50px 0;
  width: 100%;
  height: auto;
}
.content-wrapper-decorated .title {
  width: 100%;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #750d56;
  padding: 10px;
  -webkit-box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
}
.content-wrapper-decorated .body {
  padding: 20px;
}

.decorated-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 35px 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.decorated-heading span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-right: 20px;
  padding-left: 20px;
  color: #750d56;
}
.decorated-heading span div {
  display: inline;
  color: #fff;
}
.decorated-heading:before {
  -webkit-box-flex: 20px;
      -ms-flex: 20px;
          flex: 20px;
  width: 20px;
  min-width: 20px;
  content: "";
  display: block;
  border-bottom: 4px solid #fff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.decorated-heading:after {
  content: "";
  display: block;
  -webkit-box-flex: 100;
      -ms-flex: 100;
          flex: 100;
  border-bottom: 4px solid #fff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.decorated-heading-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.decorated-heading-white span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-right: 20px;
  padding-left: 20px;
  color: #750d56;
}
.decorated-heading-white span div {
  display: inline;
  color: #fff;
}
.decorated-heading-white:before {
  -webkit-box-flex: 20px;
      -ms-flex: 20px;
          flex: 20px;
  width: 20px;
  min-width: 20px;
  content: "";
  display: block;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.decorated-heading-white:after {
  content: "";
  display: block;
  -webkit-box-flex: 100;
      -ms-flex: 100;
          flex: 100;
  border-bottom: 3px solid #fff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.decorated-heading-white-sml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.decorated-heading-white-sml span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding-right: 10px;
  padding-left: 10px;
  color: #750d56;
}
.decorated-heading-white-sml span div {
  display: inline;
  color: #fff;
}
.decorated-heading-white-sml:before {
  -webkit-box-flex: 10px;
      -ms-flex: 10px;
          flex: 10px;
  width: 10px;
  min-width: 10px;
  content: "";
  display: block;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.decorated-heading-white-sml:after {
  content: "";
  display: block;
  -webkit-box-flex: 100;
      -ms-flex: 100;
          flex: 100;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.35);
  color: #750d56;
}
.btn-dark:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.4);
  color: #750d56;
}

.top-cta-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 15px;
  background-color: rgba(143, 16, 105, 0.7);
  text-transform: uppercase;
  height: 100%;
  font-family: "gill-sans-nova";
}
.top-cta-btn .cta-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 110px;
  height: 50px;
  padding-right: 10px;
  font-size: 3rem;
  line-height: 50px;
  color: #fff;
  text-align: center;
  border-radius: 3px;
}
.top-cta-btn .cta-content {
  padding-top: 8px;
}
.top-cta-btn .cta-content .title {
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.top-cta-btn .cta-content .title.subtitle {
  font-size: 1.05rem;
}
.top-cta-btn .cta-content .title.subtitle a {
  color: #750d56;
}
.top-cta-btn .cta-content .title.subtitle a:hover {
  text-decoration: none;
}

.news-item {
  padding: 10px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 125px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.news-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.news-item.active {
  background-color: rgba(25, 68, 5, 0.7);
}
.news-item.top {
  border-top-left-radius: 4px;
}
.news-item.bottom {
  border-bottom-left-radius: 4px;
}
.news-item .news-title {
  margin-top: 5px;
  margin-bottom: 2px;
  overflow: hidden;
  font-size: 1.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .news-item.top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .news-item.bottom {
    border-bottom-left-radius: 0;
  }
  #news-img-holder {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 4px;
  }
}
#news-img-holder {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  height: 100%;
  width: 100%;
}
#news-img-holder .post-link {
  position: absolute;
  top: 80%;
  right: 0;
  margin-top: 6px;
  font-size: 1rem;
  background: #750d56;
  color: #fff;
  padding: 8px 15px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.discord-widget {
  position: fixed;
  top: 180px;
  padding: 10px;
  left: -350px;
  width: 350px;
  background: rgba(143, 16, 105, 0.7);
  border-radius: 0 0 4px 0;
  -webkit-transition: 500ms;
  transition: 500ms;
  height: 450px;
  z-index: 1000;
}
@media (max-width: 600px) {
  .discord-widget {
    width: 270px;
    left: -270px;
  }
}
.discord-widget.show {
  left: 0;
  width: 350px;
  -webkit-transition: 500ms;
  transition: 500ms;
}
@media (max-width: 600px) {
  .discord-widget.show {
    width: 270px;
  }
}
.discord-widget .toggle {
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 43px;
  cursor: pointer;
  position: absolute;
  right: -60px;
  top: 0;
  display: block;
  text-align: center;
  background: rgba(143, 16, 105, 0.7);
  border-radius: 0 4px 4px 0;
  padding: 10px;
}
.discord-widget .toggle i {
  display: block;
  margin-top: 0px;
}
.discord-widget .content {
  height: 375px;
  padding: 10px 0;
}
.discord-widget .content h2.discord-member {
  font-size: 12px;
  color: #c2c2c2;
  line-height: 2;
  text-align: right;
  text-shadow: 1px 0 6px rgba(0, 0, 0, 0.5);
  position: relative;
  letter-spacing: 1.5px;
}
.discord-widget .content .discord-body {
  max-height: 280px;
  width: 100%;
}
.discord-widget .content .discord-inner-body {
  overflow-y: scroll;
  max-height: 280px;
  padding-top: 3px;
}
.discord-widget .content .discord_avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  padding: 1px;
  border: solid 1px red;
  margin-top: -3px;
  margin-right: 10px;
}
.discord-widget .content .discord_avatar.dnd {
  border: solid 1px red;
}
.discord-widget .content .discord_avatar.idle {
  border: solid 1px #fa0;
}
.discord-widget .content .discord_avatar.online {
  border: solid 1px #0a0;
}
.discord-widget .content .user-info {
  line-height: 22px;
  margin-bottom: 3px;
  font-size: 13px;
  color: #cccac6;
  letter-spacing: 0.5px;
}
.discord-widget .content .user-info .status {
  color: #7d7792 !important;
  margin-left: 0;
}
.discord-widget .content .discord-userlist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.discord-widget .join-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  height: 50px;
}
.discord-widget .discord-join-btn {
  display: block;
  width: 100%;
  font-size: 16px;
  letter-spacing: 2px;
  color: white;
  background: #750d56;
  text-transform: uppercase;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
  font-weight: bold;
  margin: 10px 0;
}
.discord-widget .discord-join-btn:hover {
  background-color: #300523;
  text-decoration: none;
}

.news-accordion {
  padding: 10px;
}
.news-accordion .card {
  background: transparent;
}
.news-accordion .card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 992px) {
  .news-accordion .card-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-accordion .card-header h5 {
  width: 65%;
}
.news-accordion .card-header h5 .btn-link {
  color: #750d56;
  font-weight: 500;
}
.news-accordion .card-header .meta {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-left: auto;
}
.news-accordion .card-header .meta .author {
  font-size: 12px;
}
.news-accordion .card-header .meta .date {
  font-size: 12px;
}

.dl-wrapper-bg {
  min-height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 5, 90, 0.15)), color-stop(45%, rgba(255, 255, 255, 0.05)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(180deg, rgba(37, 5, 90, 0.15) 0%, rgba(255, 255, 255, 0.05) 45%, rgba(0, 0, 0, 0.1) 100%);
}

.content-wrapper, .content-box {
  margin: 50px 0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: rgba(143, 16, 105, 0.7);
}
.content-wrapper.news-posts, .content-box.news-posts {
  background-image: url("../../img/news.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
}
.content-wrapper .content-header, .content-wrapper .content-box-header, .content-box .content-header, .content-box .content-box-header {
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 5px;
  font-size: 16px;
  border-bottom: 1px solid rgba(143, 16, 105, 0.8);
}
.content-wrapper .content-body, .content-wrapper .content-area, .content-box .content-body, .content-box .content-area {
  padding: 10px;
}

#clockdiv {
  max-width: 800px;
  margin: 50px auto;
}
#clockdiv span {
  font-size: 2.5rem;
  color: #750d56;
  font-weight: 600;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.iframe-container .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.cat-btn {
  font-size: 16px;
  color: #fff !important;
}
.cat-btn:hover, .cat-btn.active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #750d56 !important;
}

.tab-content {
  max-height: none !important;
}

.quantity {
  display: block;
  margin-bottom: 2px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.quantity .minus, .quantity .plus {
  display: inline !important;
  color: #750d56 !important;
  display: block;
  padding: 2px 5px;
  text-align: center;
  border: 0px solid #750d56 !important;
  background: transparent !important;
}

.add-to-cart-button {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #750d56;
  border-bottom: 1px solid #750d56;
  display: block;
  text-align: center;
  color: #fff;
  margin: 5px 0 0;
}

.add_to_cart_button {
  color: #fff;
}
.add_to_cart_button:hover {
  color: #750d56;
  text-decoration: none;
}

.added_to_cart {
  display: none !important;
}

.img-holder {
  cursor: pointer;
}

.tabbed-product {
  margin: 1px 3px 0;
  padding: 10px 0 0;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid #750d56;
  border-left: 1px solid #750d56;
  border-right: 1px solid #750d56;
}
.tabbed-product .price {
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.tabbed-product .ironman-allowed {
  position: absolute;
  right: 4px;
  top: 2px;
  width: 25px;
  height: 25px;
  background-color: #750d56;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: help;
}
.tabbed-product .ironman-allowed img {
  display: block;
}

.quantity .qty {
  display: inline !important;
  width: 60px !important;
  background: rgba(0, 0, 0, 0);
  color: #750d56;
  border: none;
  outline: none;
  text-align: center;
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

#storeModal, #tosModal, #ProgressModal {
  background-color: rgba(0, 0, 0, 0.7);
}
#storeModal .modal-content, #tosModal .modal-content, #ProgressModal .modal-content {
  background: rgba(143, 16, 105, 0.7);
  border: 1px solid #750d56;
  border-radius: 4px !important;
}
#storeModal .modal-content .modal-header, #tosModal .modal-content .modal-header, #ProgressModal .modal-content .modal-header {
  border-color: #750d56;
}
#storeModal .modal-content .close, #tosModal .modal-content .close, #ProgressModal .modal-content .close {
  color: #750d56;
}

.widget_shopping_cart_content {
  padding: 10px;
}
.widget_shopping_cart_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_shopping_cart_content ul li .remove_from_cart_button {
  color: red;
}
.widget_shopping_cart_content ul li img {
  display: none;
}
.widget_shopping_cart_content .button {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #col-1;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.widget_shopping_cart_content .button:hover {
  text-decoration: none;
  color: #750d56;
}

.top-spender {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #750d56;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px;
}

.woocommerce-billing-fields .form-row, .woocommerce-shipping-fields .form-row, .woocommerce form .form-row {
  display: block;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  max-width: unset;
}

.checkout {
  margin-top: 20px;
}

.woocommerce-checkout .shop_table {
  width: 100%;
  margin-top: 15px;
}
.woocommerce-checkout .shop_table .product-total {
  text-align: right;
}
.woocommerce-checkout .shop_table .cart-subtotal td, .woocommerce-checkout .shop_table .order-total td {
  text-align: right;
}
.woocommerce-checkout #payment {
  margin-top: 20px;
}
.woocommerce-checkout #payment ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .woocommerce {
  padding: 10px;
}
.woocommerce-checkout .woocommerce .button {
  background: #140719;
  border: 1px solid #2E0254;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.woocommerce-checkout .woocommerce .button:hover {
  text-decoration: none;
  color: #9130D5;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 15px;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
  color: #fff;
  text-decoration: underline;
}
.woocommerce-checkout .checkout_coupon {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 50%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 0 auto;
}
.woocommerce-checkout .checkout_coupon p {
  display: block;
  margin: 5px;
}
.woocommerce-checkout .woocommerce-error {
  list-style: none;
  padding: 10px;
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

#productAccordion .card {
  background: transparent !important;
  border-color: #750d56 !important;
}
#productAccordion .card .card-header {
  background: rgba(0, 0, 0, 0.3) !important;
  border-color: #750d56 !important;
}
#productAccordion .card .card-header button {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff !important;
}
#productAccordion .card .card-header button:hover {
  color: #750d56 !important;
}

.slick-dots li button:before {
  color: #750d56 !important;
}

.slick-arrow:before {
  color: #750d56 !important;
}

#order_review {
  display: none;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.select2-results__option {
  background-color: #fff;
  color: #292e38;
}
.select2-results__option:hover {
  background-color: #750d56 !important;
}

.select2-dropdown {
  background: #fff;
  color: #292e38;
}

.select2-container--default, .select2-container--single {
  border: none !important;
  outline: none;
}

.select2 {
  background: white;
  border-radius: 5px;
}

.skill-link {
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.skill-link:hover {
  color: #ffffff;
  margin-right: 15px;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.skills-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.skills-list-item {
  -ms-flex-pack: justify !important;
  -webkit-box-pack: justify !important;
          justify-content: space-between !important;
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
  padding: 11px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.dataTables_length {
  display: none !important;
}

.usernameSearch {
  font-weight: 500;
  cursor: pointer;
}

.purple-text {
  color: #750d56;
  display: block;
}

.dropdown-toggle::after {
  display: none !important;
}

.pagination {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pagination > li > a,
.pagination > li > span {
  border: 1px solid rgba(0, 0, 0, 0.6) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff;
}
.pagination > li > a:hover,
.pagination > li > span:hover {
  color: #750d56 !important;
}

.pagination > li.disabled > a {
  border: 1px solid rgba(0, 0, 0, 0.6) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff;
}

.pagination > li.active > a {
  background: #750d56 !important;
  color: #fff;
}

.immodeselector, .xpmodeselector {
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.immodeselector:hover, .xpmodeselector:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

#hiscorespagetitle {
  font-style: normal;
}

@-webkit-keyframes "spinner" {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes "spinner" {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loader {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#loader:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}
#loader:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
#loader:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

#loader-icon {
  height: 2em;
  width: 2em;
  margin: auto;
}
#loader-icon:before {
  content: "";
  display: block;
  height: 2em;
}
#loader-icon:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
#loader-icon:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

html {
  scroll-behavior: smooth;
  font-size: 97.5%;
}

body {
  background-color: #181d23;
  background-image: url("../../img/background.webp");
  color: #fff;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: "gill-sans-nova";
  overflow-x: hidden;
}
body.page-vote, body .page-voting {
  background-image: url("../../img/body_bg.webp");
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  font-family: "gill-sans-nova";
}

/* Elidinis Modern refresh */
:root {
  --vx-bg: #0b1018;
  --vx-panel: rgba(14, 20, 31, 0.82);
  --vx-panel-strong: rgba(20, 29, 43, 0.94);
  --vx-border: rgba(255, 255, 255, 0.12);
  --vx-text-muted: rgba(255, 255, 255, 0.68);
  --vx-accent: #8f1069;
  --vx-accent-2: #d95fb6;
}

body {
  background-color: var(--vx-bg);
  background-blend-mode: overlay;
}

.content-wrapper,
.content-wrapper-decorated .body,
.rsps-voting .content-body {
  background: linear-gradient(145deg, rgba(15, 22, 34, 0.90), rgba(8, 12, 20, 0.84));
  border: 1px solid var(--vx-border);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.content-wrapper-decorated > .title {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-cta-btn {
  min-height: 86px;
  padding: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(143, 16, 105, 0.92), rgba(201, 58, 159, 0.70));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.top-cta-btn:before {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 160px;
  height: 160px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  filter: blur(2px);
}

.top-cta-btn:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.top-cta-btn .cta-icon {
  width: 64px;
  height: 64px;
  margin-right: 14px;
  padding-right: 0;
  font-size: 2.15rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
}

.top-cta-btn .cta-content .title {
  color: #fff;
  letter-spacing: 0.08em;
}

.top-cta-btn .cta-content .title.subtitle a {
  color: #1b1009;
  font-weight: 700;
}

.modern-leaderboards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.modern-leaderboard-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(145deg, var(--vx-panel-strong), rgba(10, 15, 24, 0.88));
  border: 1px solid var(--vx-border);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.modern-leaderboard-card:before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 155px;
  height: 155px;
  content: "";
  background: radial-gradient(circle, rgba(183, 38, 139, 0.30), transparent 68%);
}

.kills-card:before {
  background: radial-gradient(circle, rgba(217, 95, 182, 0.24), transparent 68%);
}

.leaderboard-card-heading {
  position: relative;
  margin-bottom: 12px;
}

.leaderboard-card-heading h5 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.leaderboard-kicker,
.leaderboard-range {
  display: block;
  margin-bottom: 4px;
  color: var(--vx-accent-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leaderboard-range {
  color: var(--vx-text-muted);
  font-weight: 600;
}

.modern-leaderboard-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.modern-leaderboard-row.rank-1 {
  background: linear-gradient(135deg, rgba(183, 38, 139, 0.18), rgba(255, 255, 255, 0.055));
}

.leaderboard-player {
  display: flex;
  align-items: center;
  min-width: 0;
}

.leaderboard-player strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-right: 10px;
  color: #10131a;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--vx-accent), var(--vx-accent-2));
  border-radius: 999px;
}

.leaderboard-score {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.leaderboard-score span {
  color: var(--vx-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.modern-leaderboard-empty {
  padding: 12px;
  color: var(--vx-text-muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

@media (max-width: 767.98px) {
  .top-cta-btn {
    min-height: 76px;
  }

  .top-cta-btn .cta-icon {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }
}

/* Elidinis safe modern refresh v4 - CSS only, no template rewrites */
:root {
  --lx-bg: rgba(8, 12, 18, .88);
  --lx-panel: linear-gradient(145deg, rgba(20,24,32,.94), rgba(12,15,22,.92));
  --lx-panel-soft: rgba(18, 22, 30, .86);
  --lx-border: rgba(143, 16, 105, .28);
  --lx-border-soft: rgba(255,255,255,.08);
  --lx-orange: #8f1069;
  --lx-orange-dark: #5d0a45;
  --lx-text: #f6f1e8;
  --lx-muted: rgba(246,241,232,.7);
}

/* Remove the large voting information panel on the homepage */
body.page-homepage .content-wrapper-decorated,
body.page-id-15 .content-wrapper-decorated {
  display: none !important;
}

/* Shared dark glass panel treatment */
body.wp-theme-Elidinis .content-wrapper,
body.wp-theme-Elidinis .content-box,
body.theme-Elidinis .content-wrapper,
body.theme-Elidinis .content-box {
  background: var(--lx-panel) !important;
  border: 1px solid var(--lx-border-soft) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06) !important;
  overflow: hidden;
}

body.wp-theme-Elidinis .content-wrapper .content-header,
body.wp-theme-Elidinis .content-wrapper .content-box-header,
body.wp-theme-Elidinis .content-box .content-header,
body.wp-theme-Elidinis .content-box .content-box-header,
body.theme-Elidinis .content-wrapper .content-header,
body.theme-Elidinis .content-box .content-header {
  background: rgba(255,255,255,.04) !important;
  border-bottom: 1px solid var(--lx-border-soft) !important;
  letter-spacing: .08em;
}

/* Store: category menu */
body.page-store .col-md-3 .content-box,
body.woocommerce-js.page-store .col-md-3 .content-box,
body.page-id-32 .col-md-3 .content-box {
  background: rgba(12,16,23,.9) !important;
  border: 1px solid var(--lx-border-soft) !important;
}
body.page-store .cat-btn,
body.page-id-32 .cat-btn {
  margin: 6px 10px !important;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: var(--lx-muted) !important;
  background: rgba(255,255,255,.035) !important;
  border: 1px solid transparent !important;
  transition: .18s ease !important;
}
body.page-store .cat-btn:hover,
body.page-store .cat-btn.active,
body.page-id-32 .cat-btn:hover,
body.page-id-32 .cat-btn.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(117,13,86,.22), rgba(117,13,86,.08)) !important;
  border-color: rgba(117,13,86,.38) !important;
  transform: translateX(3px);
}

/* Store: product grid wrapper */
body.page-store .col-md-9 > .content-box,
body.page-id-32 .col-md-9 > .content-box {
  padding: 14px !important;
  background: rgba(9,12,18,.72) !important;
  border: 1px solid var(--lx-border-soft) !important;
}

/* Store: product cards */
body.page-store .tabbed-product,
body.page-id-32 .tabbed-product {
  min-height: 142px;
  margin: 6px !important;
  padding: 14px 10px 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.26) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
body.page-store .tabbed-product:hover,
body.page-id-32 .tabbed-product:hover {
  transform: translateY(-3px);
  border-color: rgba(117,13,86,.42) !important;
  box-shadow: 0 16px 30px rgba(0,0,0,.36), 0 0 0 1px rgba(117,13,86,.12) !important;
}
body.page-store .tabbed-product .price,
body.page-id-32 .tabbed-product .price {
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .02em;
}
body.page-store .tabbed-product .img-holder img,
body.page-id-32 .tabbed-product .img-holder img {
  height: 42px !important;
  width: auto !important;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.55));
}
body.page-store .quantity,
body.page-id-32 .quantity {
  margin: 8px auto 6px;
}
body.page-store .quantity .minus,
body.page-store .quantity .plus,
body.page-store .quantity .qty,
body.page-id-32 .quantity .minus,
body.page-id-32 .quantity .plus,
body.page-id-32 .quantity .qty {
  color: var(--lx-orange) !important;
}
body.page-store .add-to-cart-button,
body.page-id-32 .add-to-cart-button {
  margin: 10px -10px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  background: linear-gradient(135deg, rgba(117,13,86,.26), rgba(117,13,86,.10)) !important;
  border-radius: 0 0 14px 14px !important;
  padding: 8px !important;
}
body.page-store .add_to_cart_button,
body.page-id-32 .add_to_cart_button {
  font-weight: 700;
  letter-spacing: .02em;
}

/* Store: cart box */
body.page-store .widget_shopping_cart_content,
body.page-id-32 .widget_shopping_cart_content {
  padding: 14px !important;
  color: var(--lx-muted) !important;
  background: rgba(0,0,0,.16);
  border-radius: 12px;
  margin-top: 8px;
}
body.page-store .woocommerce-mini-cart__empty-message,
body.page-id-32 .woocommerce-mini-cart__empty-message {
  margin: 0;
  color: var(--lx-muted);
}

/* Store: top supporters */
body.page-store .top-spender,
body.page-id-32 .top-spender {
  margin: 8px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  color: #fff;
  font-weight: 700;
}
body.page-store .col-md-9 > .content-box:last-child,
body.page-id-32 .col-md-9 > .content-box:last-child {
  background: rgba(12,16,23,.9) !important;
}

/* Member benefits/features page: modernize existing table without changing PHP */
body.page-features .rsps-features .content-wrapper,
body.page-id-112 .rsps-features .content-wrapper,
body.page-template-default.page-id-112 .rsps-features .content-wrapper {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin-top: 34px !important;
}
body.page-features .rsps-features .content-body,
body.page-id-112 .rsps-features .content-body {
  background: var(--lx-panel) !important;
  border: 1px solid var(--lx-border-soft) !important;
  border-radius: 16px !important;
  padding: 18px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.42) !important;
}
body.page-features .rsps-features table,
body.page-id-112 .rsps-features table {
  border-collapse: separate !important;
  border-spacing: 8px !important;
  margin: 0 !important;
}
body.page-features .rsps-features th,
body.page-features .rsps-features td,
body.page-id-112 .rsps-features th,
body.page-id-112 .rsps-features td {
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 12px !important;
  padding: 15px 12px !important;
  text-align: center !important;
  color: #fff !important;
  vertical-align: middle !important;
}
body.page-features .rsps-features th,
body.page-id-112 .rsps-features th {
  color: var(--lx-orange) !important;
  background: linear-gradient(135deg, rgba(117,13,86,.20), rgba(255,255,255,.045)) !important;
}

/* Footer: replace orange slab with dark glass footer */
body.wp-theme-Elidinis section.footer,
body.theme-Elidinis section.footer {
  margin-top: 70px !important;
  margin-bottom: 42px !important;
  padding: 18px 24px !important;
  background: linear-gradient(145deg, rgba(12,16,23,.92), rgba(21,25,34,.86)) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-top: 1px solid rgba(117,13,86,.28) !important;
  border-radius: 14px !important;
  color: var(--lx-muted) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.42) !important;
}
body.wp-theme-Elidinis section.footer a,
body.theme-Elidinis section.footer a {
  color: var(--lx-orange) !important;
}
body.wp-theme-Elidinis section.footer a:hover,
body.theme-Elidinis section.footer a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

@media (max-width: 767px) {
  body.page-store .tabbed-product,
  body.page-id-32 .tabbed-product { margin: 5px 0 !important; }
  body.page-features .rsps-features table,
  body.page-id-112 .rsps-features table { border-spacing: 4px !important; font-size: 12px; }
}

/* Elidinis Community Tools - polls, roadmap, voters, update cards */
.luzox-section {
  margin: 50px 0;
}
.luzox-section .decorated-heading {
  margin-bottom: 22px;
}
.luzox-grid,
.luzox-updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.luzox-card,
.luzox-update-card,
.luzox-roadmap-item,
.luzox-wide-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 29, 43, 0.96), rgba(10, 15, 24, 0.92)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.30) !important;
  color: #fff;
}
.luzox-card,
.luzox-update-card,
.luzox-roadmap-item {
  padding: 22px;
}
.luzox-card:before,
.luzox-update-card:before,
.luzox-roadmap-item:before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 170px;
  height: 170px;
  content: "";
  background: radial-gradient(circle, rgba(183,38,139,.25), transparent 68%);
  pointer-events: none;
}
.luzox-card h3,
.luzox-update-card h3,
.luzox-roadmap-item strong {
  color: #fff;
  position: relative;
  z-index: 1;
}
.luzox-update-card h3 a,
.luzox-read-more {
  color: #fff !important;
  text-decoration: none !important;
}
.luzox-update-card h3 a:hover,
.luzox-read-more:hover {
  color: var(--vx-accent-2, #d95fb6) !important;
}
.luzox-card-kicker,
.luzox-update-badge,
.luzox-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  color: #10131a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--vx-accent, #8f1069), var(--vx-accent-2, #d95fb6));
  border-radius: 999px;
}
.luzox-card-body,
.luzox-update-excerpt,
.luzox-roadmap-content,
.luzox-card-meta,
.luzox-update-date,
.luzox-update-footer {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.74);
}
.luzox-card-meta,
.luzox-update-top,
.luzox-update-footer,
.luzox-roadmap-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.luzox-update-top,
.luzox-update-footer {
  margin-bottom: 14px;
}
.luzox-update-footer {
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.luzox-read-more {
  color: var(--vx-accent-2, #d95fb6) !important;
  font-weight: 800;
}
.luzox-poll-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.luzox-poll-vote {
  width: 100%;
  padding: 12px 14px;
  color: #fff;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.luzox-poll-vote:hover {
  transform: translateY(-1px);
  background: rgba(183,38,139,.14);
  border-color: rgba(183,38,139,.45);
}
.luzox-poll-result {
  margin-top: 14px;
}
.luzox-poll-result-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: .92rem;
}
.luzox-progress {
  position: relative;
  overflow: hidden;
  height: 10px;
  margin-top: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}
.luzox-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, var(--vx-accent, #8f1069), var(--vx-accent-2, #d95fb6));
  border-radius: 999px;
}
.luzox-success { color: #69db7c; font-weight: 800; }
.luzox-error { color: #ff8787; font-weight: 800; }
.luzox-roadmap-list {
  display: grid;
  gap: 16px;
}
.luzox-roadmap-head {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.luzox-roadmap-item.status-released .luzox-status { background: linear-gradient(135deg, #51cf66, #b2f2bb); }
.luzox-roadmap-item.status-testing .luzox-status { background: linear-gradient(135deg, #ffd43b, #fff3bf); }
.luzox-roadmap-item.status-in_progress .luzox-status { background: linear-gradient(135deg, #4dabf7, #a5d8ff); }
.luzox-roadmap-item small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.64);
  font-weight: 700;
}
.luzox-top-voters .luzox-wide-card {
  padding: 22px;
}
.single-post .content-wrapper {
  background: linear-gradient(145deg, rgba(20, 29, 43, .95), rgba(10,15,24,.92)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 20px !important;
  color: #fff;
}
.single-post .content-body {
  padding: 26px !important;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
}
.single-post .content-body h2,
.single-post .content-body h3,
.single-post .content-body strong {
  color: #fff;
}
.single-post .content-body ul {
  padding-left: 22px;
}
.single-post .content-body li::marker {
  color: var(--vx-accent, #8f1069);
}
@media (max-width: 767px) {
  .luzox-card-meta,
  .luzox-update-top,
  .luzox-update-footer,
  .luzox-roadmap-head,
  .luzox-poll-result-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Elidinis Member Benefits - premium rank cards */
body.page-features .content-wrapper,
body.page-benefits .content-wrapper,
body.page-member-benefits .content-wrapper,
body.page-donator-benefits .content-wrapper,
body.page-donator-ranks .content-wrapper,
body.page-ranks .content-wrapper,
body.page-id-112 .content-wrapper {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body.page-features .content-body,
body.page-benefits .content-body,
body.page-member-benefits .content-body,
body.page-donator-benefits .content-body,
body.page-donator-ranks .content-body,
body.page-ranks .content-body,
body.page-id-112 .content-body {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.luzox-benefits-page {
  --benefit-bg: #090d13;
  --benefit-panel: rgba(14, 20, 31, .92);
  --benefit-card: rgba(255, 255, 255, .055);
  --benefit-border: rgba(255, 255, 255, .12);
  --benefit-muted: rgba(255, 255, 255, .70);
  --benefit-soft: rgba(255, 255, 255, .09);
  --benefit-orange: #8f1069;
  --benefit-gold: #d95fb6;
  position: relative;
  margin: 36px 0 70px;
  color: #fff;
}
.luzox-benefits-page:before {
  content: "";
  position: absolute;
  inset: -38px -24px auto -24px;
  height: 460px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 12%, rgba(143, 16, 105, .30), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(81, 195, 255, .18), transparent 32%),
    linear-gradient(145deg, rgba(7, 10, 16, .96), rgba(17, 24, 36, .82));
  border: 1px solid rgba(255, 255, 255, .075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .48);
  z-index: 0;
}
.luzox-benefits-page > * { position: relative; z-index: 1; }
.luzox-benefits-hero {
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 42px 28px 22px;
  text-align: center;
}
.luzox-benefits-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(143, 16, 105, .28), rgba(217, 95, 182, .16));
  border: 1px solid rgba(217, 95, 182, .24);
  color: var(--benefit-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.luzox-benefits-hero h1 {
  margin: 16px 0 10px !important;
  color: #fff !important;
  font-size: clamp(36px, 6vw, 66px) !important;
  line-height: .95 !important;
  font-weight: 950 !important;
  text-transform: uppercase;
  letter-spacing: -.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .50);
}
.luzox-benefits-hero p {
  max-width: 820px;
  margin: 0 auto !important;
  color: var(--benefit-muted) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.luzox-benefits-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.luzox-benefits-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}
.luzox-benefits-stats strong { color: var(--benefit-gold); font-size: 15px; }
.luzox-rank-jumpbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
  padding: 10px;
  max-width: 1080px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .26);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}
.luzox-rank-jumpbar a {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .74) !important;
  background: rgba(255, 255, 255, .055);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}
.luzox-rank-jumpbar a:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: rgba(143, 16, 105, .16);
  border-color: rgba(143, 16, 105, .32);
}
.luzox-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.luzox-benefit-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(17, 24, 36, .94), rgba(8, 12, 19, .96)),
    var(--benefit-panel);
  border: 1px solid var(--benefit-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  scroll-margin-top: 120px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.luzox-benefit-card:before {
  content: "";
  position: absolute;
  top: -125px;
  right: -105px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 16, 105, .24), transparent 68%);
  pointer-events: none;
}
.luzox-benefit-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 34%);
  pointer-events: none;
}
.luzox-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 95, 182, .28);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .46);
}
.luzox-benefit-card > * { position: relative; z-index: 1; }
.luzox-benefit-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.luzox-rank-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #111;
  background: linear-gradient(135deg, var(--rank-main, #8f1069), var(--rank-soft, #d95fb6));
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 30px rgba(143, 16, 105, .20);
  font-size: 24px;
  font-weight: 950;
}
.luzox-rank-range {
  display: block;
  margin-bottom: 4px;
  color: var(--rank-soft, var(--benefit-gold));
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.luzox-benefit-card h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
}
.luzox-rank-price {
  align-self: start;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .11);
  font-size: 13px;
  white-space: nowrap;
}
.luzox-rank-summary {
  margin: 0 0 14px !important;
  color: rgba(255, 255, 255, .74) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}
.luzox-rank-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.luzox-benefit-list {
  display: grid;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.luzox-benefit-list li {
  position: relative;
  margin: 0 !important;
  padding: 10px 12px 10px 36px !important;
  border-radius: 13px;
  background: rgba(0, 0, 0, .20);
  border: 1px solid rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .82) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}
.luzox-benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 9px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--rank-main, #8f1069), var(--rank-soft, #d95fb6));
  font-size: 11px;
  font-weight: 950;
}
.luzox-benefit-card.rank-donator { --rank-main: #ff4545; --rank-soft: #ff9a9a; }
.luzox-benefit-card.rank-super { --rank-main: #1ee875; --rank-soft: #9dffbd; }
.luzox-benefit-card.rank-elite { --rank-main: #a970ff; --rank-soft: #ddb8ff; }
.luzox-benefit-card.rank-vip { --rank-main: #59ff7b; --rank-soft: #d2ff5f; }
.luzox-benefit-card.rank-legendary { --rank-main: #58caff; --rank-soft: #c7edff; }
.luzox-benefit-card.rank-sponsor { --rank-main: #ff5ccc; --rank-soft: #ffd2f2; }
.luzox-benefit-card.rank-mythic { --rank-main: #ffc23d; --rank-soft: #fff09c; }
.luzox-benefit-card.rank-cosmic { --rank-main: #73a7ff; --rank-soft: #a78bfa; }
.luzox-benefit-card.rank-mythic,
.luzox-benefit-card.rank-cosmic {
  grid-column: 1 / -1;
}
.luzox-benefit-card.rank-cosmic {
  background:
    radial-gradient(circle at 82% 4%, rgba(115, 167, 255, .20), transparent 30%),
    radial-gradient(circle at 16% 0%, rgba(167, 139, 250, .16), transparent 34%),
    linear-gradient(145deg, rgba(10, 14, 23, .98), rgba(4, 6, 12, .98));
}
.luzox-benefit-card.rank-cosmic:before {
  background: radial-gradient(circle, rgba(115, 167, 255, .24), transparent 68%);
}
@media (max-width: 991px) {
  .luzox-benefits-grid { grid-template-columns: 1fr; }
  .luzox-benefit-card.rank-mythic,
  .luzox-benefit-card.rank-cosmic { grid-column: auto; }
  .luzox-benefits-page:before { left: -10px; right: -10px; }
}
@media (max-width: 575px) {
  .luzox-benefits-hero { padding: 32px 10px 16px; }
  .luzox-benefit-card { padding: 17px; border-radius: 18px; }
  .luzox-benefit-card-top { grid-template-columns: auto 1fr; }
  .luzox-rank-price { grid-column: 1 / -1; justify-self: start; }
  .luzox-rank-icon { width: 46px; height: 46px; border-radius: 14px; }
  .luzox-benefits-hero h1 { font-size: 38px !important; }
}


/* ============================================================
   Elidinis referral system overrides
   The referral plugin injects legacy orange CSS inline after the theme CSS.
   These !important declarations intentionally override that public styling.
   ============================================================ */
:root {
  --elidinis-accent: #c93a9f;
  --elidinis-accent-light: #d95fb6;
  --elidinis-accent-dark: #750d56;
  --elidinis-accent-soft: rgba(201, 58, 159, .14);
  --elidinis-accent-border: rgba(217, 95, 182, .36);
}

.luzox-ref-wrap,
.luzox-ref-leaderboard {
  color: #f6f7fb !important;
}

.luzox-ref-hero,
.luzox-ref-form,
.luzox-ref-dashboard,
.luzox-ref-leaderboard {
  background:
    radial-gradient(circle at 100% 0, rgba(201, 58, 159, .10), transparent 36%),
    linear-gradient(145deg, rgba(17, 24, 35, .98), rgba(8, 13, 21, .98)) !important;
  border-color: var(--elidinis-accent-border) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.025) !important;
}

.luzox-ref-kicker {
  background: linear-gradient(135deg, var(--elidinis-accent), var(--elidinis-accent-light)) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 0 18px rgba(201,58,159,.18) !important;
}

.luzox-ref-form button,
.luzox-ref-inline-form button {
  background: linear-gradient(135deg, var(--elidinis-accent-dark), var(--elidinis-accent)) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(117,13,86,.24) !important;
}

.luzox-ref-message {
  border-color: var(--elidinis-accent-border) !important;
  background: var(--elidinis-accent-soft) !important;
}

.luzox-ref-stats b,
.luzox-ref-linkbox code,
.luzox-ref-leaderboard li em,
.luzox-ref-status,
.luzox-ref-complete,
.luzox-ref-board-foot a,
.luzox-ref-referral-foot .reward-pending,
.luzox-ref-referral-foot .reward-processing {
  color: var(--elidinis-accent-light) !important;
}

.luzox-ref-period-card > div {
  background: rgba(201,58,159,.07) !important;
  border-color: rgba(217,95,182,.23) !important;
}

.luzox-ref-complete {
  background: rgba(201,58,159,.11) !important;
  border: 1px solid rgba(217,95,182,.16) !important;
}

.luzox-ref-progress i {
  background: linear-gradient(90deg, var(--elidinis-accent-dark), var(--elidinis-accent-light)) !important;
  box-shadow: 0 0 12px rgba(201,58,159,.24) !important;
}

.luzox-ref-referral-card {
  background: linear-gradient(145deg, rgba(11,18,28,.98), rgba(8,13,21,.98)) !important;
  border-color: rgba(217,95,182,.13) !important;
}

.luzox-ref-progress-section,
.luzox-ref-linkbox {
  border-color: rgba(217,95,182,.14) !important;
}

.luzox-ref-board-foot a:hover {
  color: #fff !important;
}

.luzox-ref-board-head h3 {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.luzox-ref-heading-icon {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  object-fit: contain !important;
  image-rendering: auto !important;
  vertical-align: middle !important;
}

/* Keep qualified/success states green; only legacy orange is replaced. */
.luzox-ref-referral-card.status-qualified {
  border-color: rgba(79,207,120,.25) !important;
}
.status-qualified .luzox-ref-status,
.status-qualified .luzox-ref-complete,
.luzox-ref-referral-foot .reward-available {
  color: #75dc96 !important;
}
.status-qualified .luzox-ref-complete {
  background: rgba(79,207,120,.09) !important;
}
