[data-bs-theme=dark] body, [data-bs-theme=dark] nav {
  color: #FFFFFF;
  background-color: #000000;
}

.bg-dark {
  background-color: #000000 !important;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

.full-page {
  position: relative;
  height: 60vh;
  max-height: 820px;
  min-height: 480px;
}

.split-page {
  position: relative;
  width: 100%;
  padding: 0px;
}
.split-page .split-page-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  height: 100%;
  left: 0px;
  right: auto;
  text-align: left;
}
.split-page .split-page-info p {
  width: 70%;
}
.split-page .split-page-cover {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  height: 100%;
  width: 60%;
  right: 0px;
}
.split-page .split-page-cover.focus-center {
  justify-content: center;
  align-items: center;
}
.split-page .split-page-cover.focus-center .cover-image {
  object-position: 50% 50%;
}
.split-page .split-page-cover::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 80%, #000000 97%);
  z-index: 2;
}
.split-page .split-page-cover .cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  image-rendering: pixelated;
}
.split-page.right-split .split-page-info {
  right: 0px;
  left: auto;
  text-align: right;
}
.split-page.right-split .split-page-info p {
  margin-left: auto;
}
.split-page.right-split .split-page-cover {
  left: 0px;
  right: auto;
}
.split-page.right-split .split-page-cover::after {
  position: absolute;
  left: 0px;
  right: 0px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 80%, #000000 97%);
}

/* Full-screen banner styling */
.banner {
  position: relative;
  padding-top: 80px;
  height: 90vh;
  background: linear-gradient(135deg, #181825 0%, #35353d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.banner .container {
  position: relative;
  z-index: 2;
}

.card {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-nav .nav-item {
  text-transform: uppercase;
}
.navbar .navbar-brand img {
  height: 35px;
  width: auto;
}

#intro-banner {
  background-image: url("assets/img/player-in-arena.png");
  background-size: cover;
  background-position: top;
  transition: 0.125s ease-out;
}
#intro-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-image: linear-gradient(to bottom, rgb(0, 0, 0) 5%, rgba(1, 1, 1, 0), rgba(1, 1, 1, 0) 80%, rgb(0, 0, 0) 95%);
}
#intro-banner #banner-logo {
  position: relative;
  height: 100%;
  z-index: 4;
}
#intro-banner #banner-logo img {
  height: 30vh;
  max-height: 520px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  image-rendering: pixelated;
}

#first-info-introduction {
  position: relative;
  width: 100%;
  height: 480px;
}

@media screen and (orientation: portrait) {
  .split-page {
    height: auto;
  }
  .split-page .split-page-info, .split-page .split-page-cover {
    position: relative;
    width: 100%;
    height: auto;
  }
  .split-page .split-page-info p {
    width: 100%;
  }
  .split-page .row > * {
    flex-shrink: 0 !important;
  }
}

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