@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

body {
  font-size: 16px;
  line-height: 1.6;
  color: white;
  background: #1a2c38;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  padding: 1rem 0;
}

.stake-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #1a2c38;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stake-breadcrumb-wrap {
  padding: 0.75rem 0;
  background: rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
}

.stake-breadcrumb {
  margin: 0;
  padding: 0;
}
.stake-breadcrumb a {
  color: #1475e1;
  text-decoration: none;
}
.stake-breadcrumb .breadcrumb_last {
  color: white;
}

.stake-header-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stake-site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

main {
  flex-grow: 1;
}
main .stake-wrap {
  padding: 20px 20px;
}

.stake-archive-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.stake-archive-nav a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.stake-archive-nav a:hover {
  color: #0073aa;
}

article {
  margin-bottom: 2rem;
}

.stake-entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stake-entry-title a {
  color: #333;
  text-decoration: none;
}

.stake-entry-title a:hover {
  color: #0073aa;
}

.stake-entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.stake-entry-content {
  line-height: 1.8;
}

.stake-entry-content p {
  margin-bottom: 1rem;
}

footer {
  background: #091d2a;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.stake-btn-login {
  background-color: #2f4553;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.stake-header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.stake-btn-register {
  font-weight: bold;
  background: #1475e1;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.stake-header-brand {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

button:hover {
  cursor: pointer;
}

.stake-wrap {
  max-width: 95%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

ul li {
  list-style: none;
}

footer a {
  color: white;
  font-weight: bold;
}

main {
  overflow: hidden;
}
main a {
  color: #1475e1;
  font-weight: bold;
}

.stake-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.stake-nav-toggle .stake-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.stake-nav-toggle.is-active .stake-nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.stake-nav-toggle.is-active .stake-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.stake-nav-toggle.is-active .stake-nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.stake-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stake-nav-list > li {
  position: relative;
}
.stake-nav-list a {
  color: white;
  text-decoration: none;
}
.stake-nav-list a:hover {
  opacity: 0.8;
}
.stake-nav-list .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.25rem 0 0.5rem;
  margin: 0;
  background: #1a2c38;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  list-style: none;
  z-index: 100;
}
.stake-nav-list .sub-menu li {
  margin: 0;
  position: relative;
}
.stake-nav-list .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
}
.stake-nav-list .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.stake-nav-list .sub-menu .sub-menu {
  display: none !important;
  top: 0;
  left: 100%;
  margin-left: 0.25rem;
  min-width: 180px;
  background: #1a2c38;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 101;
}
.stake-nav-list .sub-menu .menu-item-has-children:hover > .sub-menu,
.stake-nav-list .sub-menu .menu-item-has-children:focus-within > .sub-menu,
.stake-nav-list .sub-menu .menu-item-has-children.is-open > .sub-menu {
  display: block !important;
}
.stake-nav-list .sub-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 1.5rem;
}
.stake-nav-list .sub-menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}
.stake-nav-list .sub-menu .menu-item-has-children.is-open > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.stake-nav-list .menu-item-has-children:hover .sub-menu,
.stake-nav-list .menu-item-has-children:focus-within .sub-menu,
.stake-nav-list .menu-item-has-children.is-open .sub-menu {
  display: block !important;
}
.stake-nav-list .menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
}
.stake-nav-list .sub-menu .menu-item-has-children .sub-menu::before {
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
}
.stake-nav-list .menu-item-has-children > a {
  position: relative;
  padding-right: 1.25rem;
}
.stake-nav-list .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}
.stake-nav-list .menu-item-has-children.is-open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.stake-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  margin: 1rem 0;
}

.stake-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.stake-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*::-webkit-scrollbar-track {
  background: transparent;
  color: #93989f;
}

::-webkit-scrollbar {
  height: 2px;
  width: 2px;
  color: #93989f;
}

*::-webkit-scrollbar-thumb {
  border-radius: 2px;
  border: 3px solid;
}

.stake-input {
  border: none !important;
}

table {
  overflow-x: auto;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul,
ol,
.wp-block-image {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.aligncenter {
  text-align: center;
}

@media (max-width: 992px) {
  header {
    position: relative;
  }
  .stake-nav-toggle {
    display: flex;
  }
  .stake-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2c38;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s, opacity 0.3s;
    z-index: 1000;
  }
  .stake-main-nav .menu-main-menu-container {
    padding: 1rem 0;
  }
  .stake-main-nav .stake-nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .stake-main-nav .stake-nav-list .sub-menu {
    position: static;
    margin: 0.5rem 0 0 1rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }
  .stake-main-nav .stake-nav-list .sub-menu .sub-menu {
    position: static;
    margin: 0.5rem 0 0 1rem;
  }
  .stake-main-nav .stake-nav-list .menu-item-has-children:hover .sub-menu,
  .stake-main-nav .stake-nav-list .menu-item-has-children.is-open .sub-menu {
    display: block !important;
  }
  .stake-main-nav .stake-nav-list .sub-menu .menu-item-has-children:hover > .sub-menu,
  .stake-main-nav .stake-nav-list .sub-menu .menu-item-has-children.is-open > .sub-menu {
    display: block !important;
  }
  .stake-main-nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
    opacity: 1;
  }
  .stake-header-brand {
    position: relative;
  }
  iframe {
    width: 100% !important;
  }
  .aligncenter,
  .alignleft,
  .alignright {
    float: none !important;
    margin: 1rem auto !important;
    padding-left: 0;
    padding-right: 0;
    display: block;
    text-align: center;
  }
  table {
    display: block;
  }
  td,
  thead th {
    flex-grow: 1;
    width: 100%;
    min-width: 200px;
  }
  table td {
    min-width: 200px;
  }
}
.stake-error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stake-error-content img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stake-error-content a {
  background: #1475e1;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 1rem auto;
}

.stake-breadcrumb * {
  font-weight: bold;
}

.stake-breadcrumb {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .stake-btn-login,
  .stake-btn-register {
    padding: 10px;
  }
  .stake-header-brand {
    flex-direction: column;
    gap: 1rem;
  }
  .stake-archive-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.menu-image-title-after.menu-image-not-hovered img,
.menu-image-hovered.menu-image-title-after .menu-image-hover-wrapper,
.menu-image-title-before.menu-image-title {
  padding-right: 0;
  height: 20px;
  width: auto;
}

.sub-menu .menu-image-title {
  font-size: 12px;
}

.stake-nav-list .menu-item-has-children:hover .menu-item-has-children > .sub-menu {
  display: none !important;
}

.stake-nav-list .menu-item-has-children .menu-item-has-children:hover > .sub-menu {
  display: block !important;
}

.stake-nav-list .sub-menu li {
  margin: 0;
  position: relative;
  font-size: 12px;
}/*# sourceMappingURL=styles.css.map */