@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

html {
  font-family: "Montserrat", Arial, sans-serif;
  background: #222230;
  color: #fff;
  font-size: 16px;
}

body,
html {
  margin: 0;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #181828;
  padding: 16px 4vw;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  background: #ffffff;
  color: #181828;
  padding: 8px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 1rem;
  box-shadow: 0 2px 8px #0002;
  display: inline-block;
}

.btn-intext {
  text-align: center;
}

.btn.left {
  background: #0d65e0;
  color: #fff;
}

.btn.right {
  background: #808db5;
  color: #fff;
}

.btn.left:hover {
  background: #002461;
}
.btn.right:hover {
  background: #002461;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 12px;
}

.banner {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.banner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 2px 18px #a26af320;
}

.bonus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(160deg, #000bac 50%, #4984c6 100%);
  padding: 20px 24px;
  border-radius: 18px;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.bonus span {
  font-weight: 600;
}

.btn:hover {
  background: #929292;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  background: none;
  color: #fff;
  font-size: 1.08rem;
  margin: 0 auto 18px auto;
}

table tr {
  background: #242438;
  border-radius: 12px;
  box-shadow: 0 2px 6px #0001;
  transition: box-shadow 0.2s;
}

table tr:hover {
  box-shadow: 0 4px 16px #9f53ff36;
}

table td {
  padding: 14px 20px;
  vertical-align: middle;
  border: none;
  font-family: inherit;
}

table td:first-child {
  font-weight: 600;
  color: #8bf5f8;
  min-width: 180px;
  gap: 9px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-right: 2px solid #35354c;
}

table td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

table .icon {
  font-size: 1.32em;
  margin-right: 6px;
}

.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  table td {
    font-size: 0.98rem;
    padding: 11px 8px;
  }
  table td:first-child {
    min-width: 120px;
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  table td {
    padding: 9px 4px;
    font-size: 0.97rem;
  }
  table td:first-child {
    font-size: 0.99rem;
    gap: 6px;
  }
}

section h1 {
  font-size: 1.45rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

section p {
  margin: 0 0 18px 0;
  line-height: 1.5;
}

ul ol {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

ul li,
ol li {
  margin-bottom: 9px;
}

ul span {
  color: #56fff1;
  font-weight: 600;
}

@media (max-width: 800px) {
  .banner-img {
    max-width: 97vw;
  }
  .container {
    padding: 18px 4vw;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 10px;
    padding: 14px 2vw;
  }
  .nav-actions .btn {
    font-size: 0.95rem;
    padding: 6px 15px;
  }
  .bonus {
    flex-direction: column;
    gap: 13px;
    text-align: center;
    padding: 18px 10px;
  }
  section {
    padding: 5px 8px;
    font-size: 0.98rem;
  }
}

footer {
  background: #181828;
  padding: 20px 15px;
  padding-bottom: 100px;
  font-size: 1rem;
  margin-top: 48px;
  box-shadow: 0 -2px 14px #9f53ff16;
}

.footer-main {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-logo-img {
    margin-bottom: 0;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
    margin: 10px 0 5px 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.bottom-bar {
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #181828;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  flex-wrap: wrap;
  }

  .bottom-bar button {
  flex: 1 1 auto;
  max-width: 150px;
  padding: 10px 0;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  background-color: #4a90e2;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

 /* @media (max-width: 480px) {
  .bottom-bar {
    flex-direction: column;
  }

  .bottom-bar button {
    width: 100%;
    max-width: none;
  }
}