body, ul {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
}

.title {
  font-size: 40px;
  font-family: "Rubik";
  font-weight: 800;
  color: var(--on-bg);
  text-align: center;
  width: 100%;
  text-shadow: 2px 2px 2px  var(--primary);
}

.title-on-primary {
  font-size: 40px;
  font-family: "Rubik";
  font-weight: 800;
  color: var(--on-bg);
  text-align: center;
  width: 100%;
  text-shadow: 2px 2px 2px  var(--surface);
}

.navbar {
  width: 100%;
  height: 60px;
  background: var(--surface);
  color: var(--on-surface);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

main {
  margin-top: 60px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--on-surface);
  font-size: medium;
  font-family: "Alata";
  transition: color 0.3s;
}

.nav-links a.active {
  color: var(--primary);
  filter: brightness(0.90);
}

.nav-links a.active:hover {
  color: var(--primary);
  filter: brightness(1.1);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.message {
  font-size: small;
}

.nav-links a.message:hover {
  color: var(--on-surface);
}


.nav-links i {
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 0.9rem;
  vertical-align: middle;
}

.nav-spacer {
  flex-grow: 1;
}

#toast {
  visibility: hidden;
  min-width: 200px;
  background: var(--surface);
  color: var(--on-surface);
  text-align: center;
  font-family: "Alata";
  border-radius: 6px;
  padding: 10px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  border: var(--primary);
  border-style: groove;
  border-color: var(--primary);
  transform: translateX(-50%);
  z-index: 3000;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 1002;
}

#toast.show {
  visibility: visible;
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.button-container {
  position: fixed;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--bg);
  z-index: 1001;
  padding: 4px;

}

.buy-button {
  background-color: var(--primary);
  filter: brightness(0.90);
  color: var(--on-primary-container);
  border-radius: 10px;
  border: var(--on-primary-container);
  border-style: groove;
  padding: 10px 20px;
  font-size: 22px;
  font-weight: bold;
  font-family: "Alata";
  line-height: 0.9rem;
  text-shadow: 1px 1px var(--surface);
  align-content: center;
  width: 50%;
  height: 60px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.buy-button i {
  margin-right: 4px;
  margin-bottom: 4px;
  /*font-size: 1rem;*/
  vertical-align: middle;
}

.buy-button:hover {
  background-color: var(--primary);
  filter: brightness(1.1);
  box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 0.08);
}

.buy-text {
  font-size: 22px;
  color: var(--on-bg);
  font-family: "Alata";
  padding: 0 10px;
}

.attention-banner {

  --bg: #1d5dd37e; 

  width: 100%;
  height: max-content;
  padding: 10px 0px;
  background-color: var(--bg);
  color: #fff;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  font-family: "Alata";
}

.attention-banner .title {
  font-weight: 300;
  font-size: 28px;
}

.main-banner {
  box-sizing: border-box;
  height: max-content;
  padding: 10px;
  background: linear-gradient(to top, var(--bg), var(--primary));
  color: white;
  align-content: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  font-weight: 300;
}

.main-banner .banner-title {
  font-size: 32px;
  font-weight: bolder;
  font-family: "Rubik";
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.2);
}

.main-banner .banner-content {
  display: inline-block;
  padding: 20px;
  margin: 0 auto;
  border-radius: 8px;
  font-family: "Barlow";
  font-weight: 500;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(30, 30, 30, 0.2));
  line-height: 1.4rem;
}

.features-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.video-container {
  flex: 1;
  display: flex;
}

.features-section video {
  flex: 1;
  display: flex;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: none;
}

.features-list {
  flex: 1;
  display: flex;
  align-items: center;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.features-list li {
  position: relative;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: var(--on-bg);
  padding: 15px 0;
  border-bottom: 1px solid var(--on-bg);
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  font-family: "Alata";
}

.features-list li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 10px;
}

.features-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.5s ease;
}

.features-list li:hover::after {
  width: 100%;
}

h1 {
  color: var(--on-bg);
  text-align: center;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  font-family: "Rubik";
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(255, 255, 255, 0.2);
}

h2 {
  color: var(--on-bg);
  text-align: center;
  width: 100%;
  font-size: 22px;
  font-family: "Alata";
}

h3 {
  color: var(--on-bg);
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 100;
  font-family: "Rubik";

}

.cash-freak {
  font-weight: bold;
  color: red;

}

.attention-text {
  color: var(--primary);
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    height: 26px;

    a.main-nav-toggle {
      display: block;
      width: 28px;
      height: 16px;
      right: 30px;
      position: absolute;
      top: 20px;

      &:after,
      &:before {
        content: '';
        position: absolute;
        top: 0;
        height: 0;
        border-bottom: 4px solid #bbb;
        width: 100%;
        left: 0;
        right: 0;
        transition: all ease-out 0.3s;
      }

      &:after {
        top: 100%;
      }

      i {
        display: block;
        text-indent: 100%;
        overflow: hidden;
        white-space: nowrap;
        height: 4px;
        background-color: #bbb;
        width: 100%;
        position: absolute;
        top: 50%;
        transition: all ease-out 0.1s;
      }

      &.active-menu {
        &:after {
          transform: rotate(-45deg);
          transform-origin: center;
          top: 50%;
        }

        &:before {
          transform: rotate(45deg);
          transform-origin: center;
          top: 50%
        }

        i {
          opacity: 0;
        }
      }
    }
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--primary-container);
    filter: brightness(1.1);
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-spacer {
    display: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--on-primary-container);
    filter: brightness(1.1);
    font-weight: 500;
    font-size: large;
    display: block;
    padding: 12px 20px;
    width: 100%;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--on-primary-container);
    background: var(--primary-container);
    box-shadow: inset 0 0 0 9999px rgb(255 255 255 / 0.08);
  }

  .nav-links a.active {
    color: var(--on-primary-container);
    filter: brightness(1.2);
    font-weight: 800;
  }

  .nav-links a.active:hover {
    color: var(--on-primary-container);
    filter: brightness(1.1);
  }

  .nav-links.show {
    max-height: 1000px;
  }

  .menu-toggle {
    display: block;
    color: var(--on-surface);
  }

  .features-section {
    flex-direction: column;
    align-items: center;
  }

  .video-container,
  .features-list {
    width: 100%;
  }

  .features-list li {
    margin-left: 0;
  }

  .buy-button {
    font-size: 18px;
  }

}