.shared-body-style {
  min-height: 100vh;
  font-family: Arial, sans-serif;
  margin: 0;
  color: #ffffff;
  background-color: #18021b;
  background-image: url("../images/SpaceBackground.png");
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  background-attachment: scroll;
  overflow-y: hidden;
  overflow-x: hidden;
}

.shared-hero {
  padding: 100px 20px;
  text-align: center;
}

.shared-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.shared-hero p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.shared-centered {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.3s;
}

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

.img-hover-effect {
  transition: transform 0.3s, filter 0.3s;
}

.img-hover-effect:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(191, 71, 228, 0.8)) drop-shadow(0 0 30px rgba(191, 71, 228, 0.6)) drop-shadow(0 0 40px rgba(191, 71, 228, 0.4));
}

@media screen and (max-width: 768px) {
  .shared-body-style {
    overflow-y: auto;
    background-size: cover;
  }
}
.applymenu {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #ffffff;
  background-color: #18021b;
  background-image: url("../images/staffapplyBG.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.applymenu main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu {
  padding: 50px 50px;
}

.menu img {
  margin-left: 1.5%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.menu-item {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.menu-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
  position: relative;
}

.menu-item#dev:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgb(191, 71, 228), 0 0 20px rgb(191, 71, 228), 0 0 30px rgb(191, 71, 228);
}

.menu-item#mod:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgb(44, 12, 131), 0 0 20px rgb(44, 12, 131), 0 0 30px rgb(44, 12, 131);
}

.menu-item#helper:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgb(84, 134, 228), 0 0 20px rgb(84, 134, 228), 0 0 30px rgb(84, 134, 228);
}

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

@media screen and (max-width: 768px) {
  .applymenu {
    height: auto;
    min-height: 100vh;
    background-attachment: scroll;
  }
  .menu {
    padding: 20px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.form-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-color: #18021b;
  background-image: url("../images/staffapplyBG.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.form-container {
  padding: 1%;
  background-color: #1a1a1a;
  background-image: url("../images/staffapplyBG.png");
  background-size: cover;
  background-position: center;
  z-index: 1000;
}

hr.image-divider {
  margin-top: 5%;
  border: 0;
  position: relative;
  height: 30px;
  width: 30%;
  background-image: url("../images/divider.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  background-color: transparent;
}

.devform a {
  color: rgb(191, 71, 228);
}

.modform a {
  color: rgb(44, 12, 131);
}

.helperform a {
  color: rgb(84, 134, 228);
}

.button-container {
  text-align: center;
}

.form-body main {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .form-body {
    background-attachment: scroll;
  }
  .form-container {
    padding: 20px;
  }
  hr.image-divider {
    width: 80%;
  }
}
.home main {
  flex: 1;
  background-image: url("../images/EarthBackground.png");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: 50% 0%;
}

.latest {
  padding: 50px;
  width: 1800px;
  margin: 0 auto;
  margin-top: 25px;
}

.latest h2 {
  text-align: left;
  margin-bottom: 15px;
  margin-left: 1.5%;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 430px);
  gap: 20px;
  justify-content: center;
}

.latest-item {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.latest-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
  position: relative;
}

.latest-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgb(191, 71, 228), 0 0 20px rgb(191, 71, 228), 0 0 30px rgb(191, 71, 228);
}

.latest-item:hover .centered {
  transform: scale(1.05) translate(-50%, -50%);
  z-index: 3;
}

.latest-item h3 {
  margin: 20px 0 10px;
}

.latest-item p {
  color: #bbb;
}

@media screen and (max-width: 768px) {
  .home main {
    background-size: 100%;
    background-position: 50% 10%;
  }
  .img-hover-effect {
    width: 75%;
    height: 75%;
  }
  .latest {
    width: auto;
    padding: 20px;
    margin-top: 0;
  }
  .latest h2 {
    text-align: center;
    margin-left: 0;
  }
}
ul {
  list-style-type: none;
}

.info-hero ul {
  padding: 0;
  list-style-type: none;
}

.info-hero li {
  margin-bottom: 20px;
  text-align: left;
}

.info-hero li::marker {
  color: #ffffff;
}

ul .click {
  cursor: pointer;
}

li span {
  position: relative;
  display: block;
  text-align: center;
}

.info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  padding: 2%;
  margin-top: -10vh;
}

@media screen and (max-width: 768px) {
  .info-container {
    margin-top: 0;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .info-container ul {
    padding-left: 0;
    width: 100%;
  }
  .info-container li {
    margin-bottom: 20px;
  }
  .info-container li img {
    width: 80% !important;
    height: auto !important;
  }
  .info-hero li {
    text-align: center;
  }
}
.logo:hover {
  filter: brightness(125%);
  transform: scale(1.05);
}

.logo {
  position: relative;
  z-index: 1100;
  transition: transform 0.3s, filter 0.3s;
}

.logo img {
  height: 100px;
  width: auto;
  position: absolute;
  top: -48px;
  left: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(24, 2, 27, 0.6);
  position: fixed;
  width: 90%;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.navbar nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-left: 90px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 10px;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
  color: #ea88f3;
}

.navbar nav ul li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ea88f3;
  bottom: 0;
  left: 0;
}

.user-actions {
  display: flex;
  align-items: center;
  margin-right: 7px;
}

.user-actions .discord-playnow {
  display: flex;
  align-items: center;
  gap: 40px;
}

.user-actions .playNow {
  background-image: linear-gradient(45deg, #f049ff, #c438d1);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.user-actions .playNow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgb(191, 71, 228), 0 0 20px rgb(191, 71, 228), 0 0 30px rgb(191, 71, 228);
}

.user-actions .discord {
  display: flex;
  align-items: center;
}

.user-actions .discord-link {
  display: flex;
  align-items: center;
}

.user-actions .discord-logo {
  height: 34px;
  width: 44px;
  margin-right: -10px;
  transition: transform 0.3s, filter 0.3s;
}

.user-actions .discord-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgb(191, 71, 228));
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .navbar nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
  }
  .navbar.active nav ul {
    display: flex;
  }
  .user-actions .discord-playnow {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .logo img {
    height: 75px;
    width: auto;
    top: -38px;
    left: 10px;
  }
}
.news-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background-size: contain;
}

.space-huge {
  height: 1000px;
}

.news-hero {
  position: relative;
  padding: 100px 20px;
  text-align: left;
  height: 500px;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.news-hero h1 {
  position: absolute;
  bottom: 40px;
  left: 90px;
  font-size: 3em;
  margin-bottom: 20px;
  margin-left: 50px;
}

.news-hero p {
  font-size: 1.5em;
  margin-bottom: 40px;
}

.news-section {
  background-color: rgba(24, 2, 27, 0.6);
  padding: 50px 20px;
  border-top: 0.00000001px solid rgba(206, 206, 206, 0.151);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 0 10px rgb(191, 71, 228), 0 0 20px rgb(191, 71, 228), 0 0 30px rgb(191, 71, 228);
}

.news-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.news-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.news-section-item {
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.news-section-item img {
  width: 100%;
  border-radius: 10px;
}

.news-section-item h3 {
  margin: 20px 0 10px;
}

.news-section-item p {
  color: #bbb;
  font-size: 17px;
}

.news-section-item p b {
  color: #fff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.gallery-item {
  position: relative;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9em;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

hr.image-divider {
  border: 0;
  height: 30px;
  background-image: url("../images/divider.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  width: 50%;
  z-index: 1000;
}

.news-body a {
  color: rgb(191, 71, 228);
}

.button-container {
  text-align: center;
}

.news-body main {
  flex: 1;
}

.news-body main li {
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .news-hero {
    height: auto;
    padding: 50px 20px;
    text-align: center;
  }
  .news-hero h1 {
    position: static;
    font-size: 2em;
    margin: 60px 0 20px;
  }
  .news-section {
    padding: 30px 15px;
  }
  .news-section-grid {
    max-width: 100%;
  }
  .news-section-item {
    padding: 10px;
  }
  .gallery {
    flex-direction: column;
  }
  hr.image-divider {
    width: 80%;
  }
}
.news1 {
  background-image: url("../images/news1IMG1.png");
  background-size: cover;
  background-position: center;
}

.gallery-item {
  width: calc(50% - 10px);
}

.learn-more {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.learn-more:hover {
  background-color: #ffc107;
  color: #1e1e1e;
}

.news2 {
  background-image: url("../images/showcase6.png");
  background-size: cover;
  background-position: center;
}

.gallery-item {
  width: calc(50% - 10px);
}

.news3 {
  background-image: url("../images/news3Main.png");
  background-size: cover;
  background-position: center;
}

.gallery-item {
  width: calc(75% - 10px);
}

.news4 {
  background-image: url("../images/news4Main.png");
  background-size: cover;
  background-position: center;
}

.gallery-item {
  width: calc(75% - 10px);
}

body[data-page-name=rules] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  overflow-y: visible;
}

.rules-container {
  width: 100%;
  max-width: 800px;
  margin-top: 75px;
}

.rules-card {
  background: rgba(24, 2, 27, 0.6);
  border: 2px solid rgb(191, 71, 228);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(191, 71, 228, 0.7), 0 0 30px rgba(191, 71, 228, 0.7);
}

.rules-card .banner-image {
  width: 250px;
  max-width: 50%;
  height: auto;
  margin-bottom: 24px;
  transition: transform 0.3s, filter 0.3s;
}

.rules-card .banner-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgb(191, 71, 228));
}

.rules-card h2 {
  font-size: 2.2em;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 0 5px rgb(191, 71, 228), 0 0 10px rgb(191, 71, 228);
}

.rules-card p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.rules-card p:last-of-type {
  margin-bottom: 0;
  margin-top: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.rules-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.rules-list li {
  font-size: 1.1em;
  font-weight: 600;
  padding: 15px 10px;
  border-bottom: 1px solid rgba(191, 71, 228, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.rules-list li:last-child {
  border-bottom: none;
}

.rules-list li:hover {
  background-color: rgba(191, 71, 228, 0.15);
  transform: scale(1.02);
}

.rules-card a {
  color: rgb(191, 71, 228);
  text-decoration: none;
  font-weight: 700;
  transition: text-shadow 0.3s;
}

.rules-card a:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px rgb(191, 71, 228);
}

.rules-card strong {
  color: rgb(191, 71, 228);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .rules-card {
    padding: 20px;
  }
  .rules-card .banner-image {
    width: 150px;
    margin-bottom: 15px;
  }
  .rules-card h2 {
    font-size: 1.8em;
  }
  .rules-card p {
    font-size: 1em;
  }
  .rules-list {
    max-width: 100%;
  }
  .rules-list li {
    font-size: 1em;
    padding: 10px 5px;
  }
}

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