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

:root {
  --primary-color:#2a9fd6;
  --secondary-color:#ff8800;
  --dark-bg:#060606;
  --darker-bg:#222;
  --lighter-bg:#282828;
  --light-text:#fff;
  --light-gray:#adafae;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--light-gray);
  background-color: var(--dark-bg);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #7fc5e6;
  text-decoration: underline;
}

.main-content-area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--light-gray);
}

.site-navbar {
  background-color: var(--dark-bg);
  border-bottom: 1px solid var(--lighter-bg);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-structure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-logo {
  max-width: 100%;
  height: auto;
}

.menu-toggle-btn {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  margin-left: 15px;
}

.menu-close-btn {
  position: relative;
  width: 28px;
  height: 24px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
}

.menu-close-btn .toggle-icon-bar:nth-child(1), .menu-close-btn .toggle-icon-bar:nth-child(2) {
  position: absolute;
  top: 5px;
  left: 0;
}

.menu-close-btn .toggle-icon-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-close-btn .toggle-icon-bar:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-close-btn .toggle-icon-bar:nth-child(3) {
  display: none;
}

.toggle-icon-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-text);
  margin: 5px 0;
}

.menu-wrapper {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 20px;
}

.black-overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

.black-overlay-bg.active {
  display: block;
}

.mobile-nav-panel {
  display: none;
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
  padding: 8px 8px 16px 8px;
  border-bottom: 1px solid #6d6d6d;
}

.nav-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
}

.nav-item-list li {
  margin-right: 10px;
}

.menu-link-item {
  color: var(--light-text);
  padding: 10px;
  display: block;
}

.menu-link-item.active, .menu-link-item:hover {
  color: var(--primary-color);
  text-decoration: none;
}

section img {
  max-width: 100%;
  height: auto;
}

section a {
  font-weight: 700;
}

section ol, section ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
}

section ol > li:not(:last-child), section ul > li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: -3px;
  margin-right: 5px;
}

.button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-row .ui-button {
  white-space: nowrap;
}

.ui-button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-left: 10px;
}

.centered{
  text-align: center;
}

.centered_btn{
  margin: 0;
}

@media (max-width:480px) {
  .centered a{
    width: 100%;
  }
}


.primary-action-btn {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
  border: 1px solid var(--secondary-color);
}

.primary-action-btn:hover {
  background-color: #d97400;
  border-color: #cc6d00;
  color: var(--dark-bg);
  text-decoration: none;
}

.outline-button {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.outline-button:hover {
  background-color: var(--secondary-color);
  color: var(--dark-bg);
  text-decoration: none;
}

.small-btn {
  padding: 5px 10px;
  font-size: 14px;
}

.intro-hero {
  text-align: center;
  margin-bottom: 2rem;
}

.intro-hero img {
  max-width: 100%;
  height: auto;
}

.section-body {
  padding: 2rem 0;
}

.margin-5 {
  margin: 5rem 0;
}

.intro-text {
  margin-bottom: 2rem;
}

.responsive-table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background-color: var(--darker-bg);
  color: var(--light-text);
}

.data-table td, .data-table th {
  padding: 12px 15px;
  border: 1px solid var(--lighter-bg);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.shortcut-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.table-of-contents {
  background-color: var(--darker-bg);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  border: 1px solid var(--lighter-bg);
}

.table-of-contents h2, .table-of-contents h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.table-of-contents ol {
  padding-left: 1.5rem;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: var(--primary-color);
}

.table-of-contents a:hover {
  text-decoration: underline;
}

#footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lighter-bg);
}

.footer-nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.footer-nav-links li {
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav-links a {
  color: var(--light-gray);
}

.footer-nav-links a:hover {
  color: var(--primary-color);
}

.legal-copyright, .legal-disclaimer {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hover-card {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--darker-bg);
  border: 2px solid var(--secondary-color);
  border-radius: 4px;
  width: 90%;
  max-width: 630px;
  padding: 1rem;
  z-index: 100;
  -webkit-animation: glow 4s infinite;
  animation: glow 4s infinite;
}

.card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-in-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-info-message {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 1rem;
}

.card-info-message p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--light-text);
}

.card-actions {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  text-align: center;
}

@-webkit-keyframes glow {
  0% {
    -webkit-box-shadow: 0 0 5px var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
  }
  50% {
    -webkit-box-shadow: 0 0 20px var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
  }
  100% {
    -webkit-box-shadow: 0 0 5px var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
  }
}
@keyframes glow {
  0% {
    -webkit-box-shadow: 0 0 5px var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
  }
  50% {
    -webkit-box-shadow: 0 0 20px var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
  }
  100% {
    -webkit-box-shadow: 0 0 5px var(--secondary-color);
    box-shadow: 0 0 5px var(--secondary-color);
  }
}
@media (max-width: 992.98px) {
  .navbar-structure {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .menu-wrapper {
    grid-column: span 2;
    grid-row: 2;
    margin-left: 0;
  }
  .nav-item-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-item-list li {
    margin-right: 0;
  }
  .button-row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .hover-card {
    width: 95%;
  }
  .card-body {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .card-actions, .card-info-message {
    margin-top: 0.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .shortcut-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .shortcut-links .ui-button {
    margin-bottom: 0.5rem;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .section-body {
    padding: 0;
  }
  .icon-in-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: grid;
    place-items: center;
  }
}
@media (max-width: 600px) {
  .menu-toggle-btn {
    display: block;
  }
  .menu-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 300;
    max-height: 75vh;
    overflow-y: auto;
    background-color: #222;
    padding: 16px;
    border-radius: 8px 9px 0 0;
    -webkit-transition: ease 0.21s;
    transition: ease 0.21s;
    -webkit-transform: translateY(110%);
    -ms-transform: translateY(110%);
    transform: translateY(110%);
  }
  .menu-wrapper.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .mobile-nav-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav-item-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 8px;
  }
  .menu-link-item {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .main-content-area {
    padding: 0 10px;
  }
}