@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap");
.hero-section {
  background-image: linear-gradient(rgba(33, 34, 39, 0.6901960784), rgba(33, 34, 39, 0.6901960784)), url("../img/hero-banner.jpg");
  height: 60vh;
  padding-left: 10em;
  background-position: center;
  background-size: cover;
  width: 100%;
}
.hero-section .hero-text {
  border-radius: 5px;
}
.hero-section .hero-text h1 {
  color: #00fff7;
  font-size: 95px;
}
.hero-section .hero-text h2 {
  color: #fff;
  font-size: 45px;
}
.hero-section .hero-text p {
  color: rgb(206, 206, 206);
  font-size: 25px;
}
.hero-section .hero-text button {
  margin-top: 0.7em;
  width: 200px;
  height: 45px;
  background: #00fff7;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.hero-section .hero-text button:hover {
  background: #00fff7;
}

.about-section {
  padding: 3em;
  background-color: #1e1f24;
  border-radius: 7px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.459);
  height: auto;
  width: 70%;
  margin: 8em auto;
  gap: 4em;
}
.about-section img {
  width: 500px;
  height: 500px;
}
.about-section .about-text {
  max-width: 650px;
}
.about-section .about-text h1 {
  color: #fff;
  text-shadow: 2px 2px #00fff7;
}
.about-section .about-text p {
  color: rgb(228, 228, 228);
}

.server-status {
  padding: 20px;
  width: 40%;
  text-align: center;
  height: auto;
  margin: 5em auto;
  background-color: #272830;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.459);
}
.server-status h1 {
  color: #fff;
  text-shadow: 2px 2px #00fff7;
}
.server-status h2 {
  color: rgb(235, 235, 235);
}
.server-status h2 span {
  color: rgb(189, 189, 189);
}
.server-status button {
  margin-top: 0.7em;
  width: 200px;
  height: 45px;
  background: #00fff7;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: all 0.4s ease;
  width: auto !important;
  padding: 10px 20px 10px 20px;
  height: auto !important;
  margin-bottom: 0.5em;
}
.server-status button:hover {
  background: #00fff7;
}

.latest-news {
  padding: 3em;
  background-color: #25272e;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.459);
  height: auto;
  width: 70%;
  margin: 4em auto;
  margin-bottom: 8em !important;
}
.latest-news h1 {
  color: rgb(204, 204, 204);
  font-size: 25px;
}
.latest-news p {
  font-size: 15px;
  color: rgb(168, 168, 168);
}
.latest-news h3 {
  color: grey;
  font-size: 15px;
}

.all-news {
  width: 70%;
  margin: 4em auto;
  margin-bottom: 8em !important;
}
.no-news {
  text-align: center;
  color: rgb(201, 201, 201);
}
.all-news .old-new {
  margin-top: 2em;
  padding: 2.5em;
  height: auto;
  background-color: #25272e;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.459);
}
.all-news .old-new h1 {
  color: rgb(204, 204, 204);
  font-size: 25px;
}
.all-news .old-new p {
  font-size: 15px;
  color: rgb(168, 168, 168);
}
.all-news .old-new h3 {
  color: grey;
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .hero-section {
    padding-left: 5em;
  }

  .about-section {
    width: 80%;
  }
  .about-section img {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 780px) {
  .hero-section {
    padding-left: 3em;
  }
  .hero-section .hero-text h1 {
    color: #00fff7;
    font-size: 45px;
  }
  .hero-section .hero-text h2 {
    color: #fff;
    font-size: 25px;
  }
  .hero-section .hero-text p {
    color: rgb(206, 206, 206);
    font-size: 15px;
  }

  .about-section {
    width: 85%;
  }
  .about-section img {
    width: 200px;
    height: 200px;
  }
}
.dashboard-main-section {
  padding: 20px;
  width: 100%;
  height: auto;
  margin-top: 3em;
}
.dashboard-main-section .dashboard-text {
  max-width: 70%;
  margin: auto;
  text-align: center;
}
@-webkit-keyframes blinker {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes blinker {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.dashboard-main-section .dashboard-text i {
  margin-top: 1em;
  color: rgb(218, 218, 218);
  font-size: 25px;
  -webkit-animation: blinker 2s linear infinite;
          animation: blinker 2s linear infinite;
}
.dashboard-main-section .dashboard-text h1 {
  color: rgb(218, 218, 218);
  font-size: 45px;
}
.dashboard-main-section .dashboard-text p {
  color: rgb(165, 165, 165);
}
.dashboard-main-section .write-news {
  max-width: 50%;
  margin-bottom: 3em !important;
  margin: auto;
}
.dashboard-main-section .write-news label {
  color: #fff;
}
.dashboard-main-section .write-news h2 {
  margin-bottom: 0.5em;
  color: rgb(190, 190, 190);
}

.online-players-section {
  padding: 20px;
  margin: auto;
  width: 80%;
  margin-top: 4em;
  margin-bottom: 5em;
}
.online-players-section h1 {
  margin-bottom: 0.5em;
  color: rgb(218, 218, 218);
  font-size: 45px;
}

@media screen and (max-width: 768px) {
  .online-players-section {
    width: 95%;
  }
}
.staff-team {
  width: 100%;
  height: auto;
  margin-bottom: 5em;
}
.staff-team .staffs {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 4em;
}
.staff-team .staffs h1 {
  color: rgb(192, 192, 192);
  font-size: 2.5em;
  padding-top: 2em;
  padding-bottom: 1em;
}
.staff-team .staffs .staffs-flex {
  margin-top: 1.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3em;
}
.staff-team .staffs .staffs-flex .staff {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.459);
  background-color: transparent;
  width: 300px;
  height: 450px;
  border-radius: 5px;
  transition: all 0.5s ease;
}
.staff-team .staffs .staffs-flex .staff img {
  border-radius: 5px 5px 0px 0px;
  width: 100%;
  height: 320px;
}
.staff-team .staffs .staffs-flex .staff .name {
  background: rgb(30, 32, 37);
  height: 130px;
  text-align: center;
}
.staff-team .staffs .staffs-flex .staff .name h2 {
  padding-top: 1.1em;
  font-size: 1.8em;
  color: #fff;
}
.staff-team .staffs .staffs-flex .staff .name h3 {
  color: grey;
  font-size: 1.1em;
}
.at-footer__button {
  margin-top: 0.7em;
  width: 200px;
  height: 45px;
  background: #2e84e6;
  color: #fff;
  border: none;
  border-radius: 10px;
  transition: all 0.4s ease;
  width: auto !important;
  padding: 5px 10px 5px 10px;
  height: auto !important;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1100px) {
  .staffs h1 {
    text-align: center;
  }

  .staffs-flex {
    flex-direction: column;
  }
}
.rules-section {
  width: 100%;
  height: auto;
  margin-bottom: 8em;
}
.rules-section .rules {
  margin: 1em auto;
  padding: 20px;
  max-width: 80%;
}
.rules-section .rules .rule {
  margin-top: 4em;
  border-bottom: 3px solid grey;
}
.rules-section .rules .rule h1 {
  color: rgb(212, 212, 212);
  font-size: 45px;
}
.rules-section .rules .rule p {
  color: rgb(168, 168, 168);
  font-size: 18px;
  margin-top: 1.5em;
}

.update {
  text-align: center;
  font-size: 10px;
  color: rgb(55, 0, 255);
  width: 100%;
  border-bottom: 3px solid grey;
}

.applications-section {
  width: 100%;
  height: auto;
  margin-bottom: 5em;
}
.applications-section .applications-title {
  margin: 1.5em;
  text-align: center;
  color: rgb(202, 202, 202);
}
.applications-section .applications {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3em;
}
.applications-section .applications .card {
  width: 500px;
  border: none;
  background-color: rgb(38, 39, 43);
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.459);
  color: rgb(177, 177, 177);
}
.applications-section .applications .card .card-header {
  background-color: rgb(26, 27, 29);
  color: #fff;
  font-size: 25px;
}

.application-section {
  width: 40%;
  margin: 5em auto 4em auto;
}
.application-section label {
  color: #fff;
}
.application-section h2 {
  text-align: center;
  margin-bottom: 1.5em;
  color: rgb(190, 190, 190);
}
.application-section button {
  margin-top: 1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  /* width */
  /* Track */
  /* Handle */
}
* body {
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #1e1f24;
}
* ::-webkit-scrollbar {
  width: 8px;
}
* ::-webkit-scrollbar-track {
  background: #191c20;
}
* ::-webkit-scrollbar-thumb {
  background: #00fff7;
  border-radius: 30px;
}
* nav {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.459);
  padding: 0 3%;
  background: rgb(30, 32, 37);
}
* nav .navbar {
  width: 100%;
}
* nav .nav-logo {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
* nav .nav-item a {
  text-decoration: none;
  color: #fff;
  padding: 1.7em;
  margin-left: 10px;
  cursor: pointer;
  font-size: 0.95em;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}
* nav .active {
  color: #00fff7 !important;
  border-bottom: 4px solid #00fff7 !important;
}
* nav .nav-item a:hover {
  border-bottom: 4px solid #00fff7;
  color: #00fff7;
}
* nav .login-btn {
  width: 120px;
  height: 45px;
  background: transparent;
  border: 3px solid #00fff7;
  color: #fff;
  border-radius: 5px;
  margin-right: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
}
* nav .login-btn:hover {
  background: #00fff7;
}
* footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
* footer .footer-line {
  margin: auto;
  height: 1px;
  width: 80%;
  background-color: grey;
}
* footer img {
  width: 150px;
  height: 150px;
  margin-top: 3em;
}
* footer .footer-text {
  margin-top: 1em;
  margin-bottom: 2em;
}
* footer .footer-text h1 {
  color: rgb(223, 223, 223);
  font-size: 18px;
}
* footer .footer-text p {
  color: rgb(194, 194, 194);
  font-size: 15px;
}

* nav .logged-in {
  width: auto;
  height: 45px;
  background-color: transparent;
  border: none;
  padding: 18px 10px 18px 10px;
  color: #fff;
  border-radius: 7px;
  margin-right: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
}
* nav .logged-in:hover{
  background-color: #00fff7;
}
* nav .logged-in img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  .nav-item a {
    border: none !important;
  }
}/*# sourceMappingURL=main.css.map */