:root {
  --link-color--link-primary: var(--base-color-brand--blue);
  --background-color--background-primary: var(--base-color-neutral--yellow);
  --text-color--text-alternate: var(--base-color-neutral--white);
  --text-color--text-primary: var(--base-color-brand--blue);
  --text-color--text-secondary: var(--base-color-neutral--neutral-darker);
  --background-color--background-success: var(--base-color-system--success-green);
  --text-color--text-success: var(--base-color-system--success-green-dark);
  --base-color-neutral--black: black;
  --base-color-neutral--white: #fff;
  --border-color--border-primary: var(--base-color-neutral--neutral-lightest);
  --background-color--background-alternate: var(--base-color-neutral--white);
  --background-color--background-secondary: var(--base-color-brand--blue);
  --background-color--background-tertiary: var(--base-color-brand--pink);
  --background-color--background-error: var(--base-color-system--error-red);
  --text-color--text-error: var(--base-color-system--error-red-dark);
  --border-color--border-alternate: var(--base-color-neutral--neutral-darker);
  --background-color--background-warning: var(--base-color-system--warning-yellow);
  --text-color--text-warning: var(--base-color-system--warning-yellow-dark);
  --base-color-brand--transparent: transparent;
  --base-color-neutral--yellow: #efbf04;
  --base-color-brand--pink: #f382eb;
  --base-color-brand--blue-light: #d9e5ff;
  --base-color-brand--blue: #9454ab;
  --base-color-brand--blue-dark: #080331;
  --base-color-brand--pink-light: #ffaefe;
  --base-color-brand--pink-dark: #3c043b;
  --base-color-neutral--neutral-lightest: #eee;
  --base-color-neutral--neutral-lighter: #ccc;
  --base-color-neutral--neutral-light: #aaa;
  --base-color-neutral--neutral: #666;
  --base-color-neutral--neutral-dark: #444;
  --base-color-neutral--neutral-darker: #222;
  --base-color-neutral--neutral-darkest: #111;
  --base-color-system--success-green: #cef5ca;
  --base-color-system--success-green-dark: #114e0b;
  --base-color-system--warning-yellow: #fcf8d8;
  --base-color-system--warning-yellow-dark: #5e5515;
  --base-color-system--error-red: #f8e4e4;
  --base-color-system--error-red-dark: #3b0b0b;
  --base-color-system--focus-state: #2d62ff;
  --border-color--border-secondary: var(--base-color-brand--blue);
  --link-color--link-secondary: var(--base-color-neutral--yellow);
  --link-color--link-alternate: var(--base-color-neutral--white);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('../images/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #000;
  font-family: Chewy, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--link-color--link-primary);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: .25rem;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.utility-page_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility-page_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.utility-page_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.utility-page_image {
  margin-left: auto;
  margin-right: auto;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.margin-custom2 {
  margin: 2.5rem;
}

.padding-xlarge {
  padding: 4rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

.padding-xhuge {
  padding: 8rem;
}

.margin-custom1 {
  margin: 1.5rem;
}

.padding-0 {
  padding: 0;
}

.padding-xxhuge {
  padding: 12rem;
}

.padding-huge {
  padding: 6rem;
}

.margin-large {
  margin: 3rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.margin-xxsmall {
  margin: .25rem;
}

.padding-custom3 {
  padding: 3.5rem;
}

.padding-large {
  padding: 3rem;
}

.margin-tiny {
  margin: .125rem;
}

.padding-small {
  padding: 1rem;
}

.padding-custom2 {
  padding: 2.5rem;
}

.margin-custom3 {
  margin: 3.5rem;
}

.padding-custom1 {
  padding: 1.5rem;
}

.margin-huge {
  margin: 6rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-xsmall {
  padding: .5rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.padding-xxsmall {
  padding: .25rem;
}

.margin-xhuge {
  margin: 8rem;
}

.padding-tiny {
  padding: .125rem;
}

.margin-small {
  margin: 1rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xxhuge {
  margin: 12rem;
}

.margin-0 {
  margin: 0;
}

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-bottom {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_checkbox {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.form_checkbox-icon {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-checked {
  background-size: 90%;
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
}

.form_checkbox-icon.w--redirected-focus {
  border-radius: .125rem;
  width: .875rem;
  height: .875rem;
  margin: 0 .5rem 0 0;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.fs-styleguide_background {
  border: 1px solid #0000001a;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.fs-styleguide_spacing {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-image: linear-gradient(to top, #2d40ea1a, #fff0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start stretch;
  display: grid;
  position: relative;
}

.icon-1x1-small {
  flex: none;
  width: 1rem;
  height: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.icon-1x1-large {
  width: 2.5rem;
  height: 2.5rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.fs-styleguide_background-space {
  width: 1px;
  height: 1px;
  margin: 5rem;
}

.text-weight-semibold {
  font-weight: 600;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.fs-styleguide_item {
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  border-bottom: 1px solid #0000001a;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 3rem;
  display: grid;
  position: relative;
}

.fs-styleguide_item.is-stretch {
  justify-items: stretch;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.fs-styleguide_item-header {
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-bottom: 2rem;
}

.background-color-primary {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.text-color-primary {
  color: var(--text-color--text-primary);
}

.text-color-secondary {
  color: var(--text-color--text-secondary);
}

.fs-styleguide_2-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.fs-styleguide_2-col.is-align-start {
  align-items: start;
}

.form_message-success {
  background-color: var(--background-color--background-success);
  color: var(--text-color--text-success);
  padding: 1.25rem;
}

.fs-styleguide_row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-style-h3 {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 2.5rem;
  line-height: 100%;
}

.text-rich-text h1, .text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text ul, .text-rich-text ol {
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pointer-events-auto {
  pointer-events: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.icon-height-small {
  height: 1rem;
}

.icon-1x1-medium {
  width: 2rem;
  height: 2rem;
}

.heading-style-h1 {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 5rem;
  font-weight: 400;
  line-height: 100%;
}

.heading-style-h1.text-color-primary.how-to-buy-heading {
  color: #9747ff;
}

.heading-style-h1.text-color-primary.socials-heading {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 3px;
}

.heading-style-h1.text-color-primary.army_heading {
  color: #9747ff;
  -webkit-text-stroke-width: 3px;
  font-size: 4rem;
}

.heading-style-h1.text-color-primary.tokenomics_heading {
  color: #9747ff;
  font-size: 6.5rem;
}

.padding-global {
  padding-left: 5vw;
  padding-right: 5vw;
}

.padding-global.position-relative {
  z-index: 3;
  position: relative;
}

.padding-global.padding-home-hero {
  padding-top: 25vw;
}

.text-weight-normal {
  font-weight: 400;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-width-small {
  width: 100%;
  max-width: 20rem;
}

.text-color-alternate {
  color: var(--text-color--text-alternate);
}

.text-style-italic {
  font-style: italic;
}

.pointer-events-none {
  pointer-events: none;
}

.text-weight-medium {
  font-weight: 500;
}

.overflow-hidden {
  overflow: hidden;
}

.fs-styleguide_section-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--border-color--border-primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-bottom: 3rem;
  line-height: 1.4;
  display: grid;
}

.text-size-tiny {
  font-size: .75rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.fs-styleguide_1-col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.overflow-visible {
  overflow: visible;
}

.fs-styleguide_empty-box {
  z-index: -1;
  background-color: #2d40ea0d;
  border: 1px dashed #2d40ea;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.text-weight-light {
  font-weight: 300;
}

.fs-styleguide_heading-medium {
  font-size: 4rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 16rem;
}

.fs-styleguide_4-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.text-size-regular {
  font-size: 1rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
}

.text-weight-bold {
  font-weight: 700;
}

.max-width-medium {
  width: 100%;
  max-width: 32rem;
}

.fs-styleguide_item-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.fs-styleguide_header-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.background-color-alternate {
  background-color: var(--background-color--background-alternate);
}

.text-style-muted {
  opacity: .6;
}

.text-size-small {
  font-size: .875rem;
}

.heading-style-h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.form_radio-icon {
  width: .875rem;
  height: .875rem;
  margin-top: 0;
  margin-left: 0;
  margin-right: .5rem;
}

.form_radio-icon.w--redirected-checked {
  border-width: .25rem;
  width: .875rem;
  height: .875rem;
}

.form_radio-icon.w--redirected-focus {
  width: .875rem;
  height: .875rem;
  box-shadow: 0 0 .25rem 0 #3898ec;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

.background-color-secondary {
  background-color: var(--background-color--background-secondary);
}

.form_input {
  border: 1px solid var(--border-color--border-primary);
  background-color: #0000;
  min-height: 3rem;
  margin-bottom: .75rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.form_input::placeholder, .form_input.is-select-input {
  color: var(--text-color--text-secondary);
}

.form_input.is-text-area {
  min-height: 8rem;
  padding-top: .75rem;
  font-size: 1rem;
}

.heading-style-h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.fs-styleguide_3-col {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
}

.fs-styleguide_3-col.is-align-start {
  align-items: start;
}

.text-style-link {
  color: var(--link-color--link-primary);
  text-decoration: underline;
}

.text-size-large {
  font-size: 2rem;
}

.fs-styleguide_header {
  background-color: var(--background-color--background-primary);
  color: var(--text-color--text-alternate);
  background-image: radial-gradient(circle at 100% 100%, #dd23bb40, #0000 40%), radial-gradient(circle at 0 100%, #2d62ff4d, #0000 60%);
}

.heading-style-h2 {
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1.2;
}

.fs-styleguide_label {
  background-color: var(--background-color--background-secondary);
  color: var(--text-color--text-alternate);
  border-radius: .25rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .75rem .3rem;
  font-weight: 600;
  display: flex;
}

.fs-styleguide_label.is-tag {
  background-color: var(--background-color--background-tertiary);
}

.heading-style-h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.container-large {
  width: 100%;
  max-width: 85vw;
  margin-left: auto;
  margin-right: auto;
}

.container-large.container-nav {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.icon-height-medium {
  height: 2rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.overflow-scroll {
  overflow: scroll;
}

.form_message-error {
  background-color: var(--background-color--background-error);
  color: var(--text-color--text-error);
  margin-top: .75rem;
  padding: .75rem;
}

.icon-height-large {
  height: 3rem;
}

.text-align-center {
  text-align: center;
}

.form_component {
  margin-bottom: 0;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 12rem;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.text-style-quote {
  border-left: .25rem solid #e2e2e2;
  margin-bottom: 0;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.button {
  background-color: var(--background-color--background-primary);
  color: var(--base-color-neutral--black);
  text-align: center;
  border: 2px solid #000;
  border-radius: 25px;
  padding: 1rem 3.2rem;
  font-size: 1.3rem;
  line-height: 100%;
}

.button.is-text {
  color: #000;
  background-color: #0000;
  border: 2px solid #0000;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-large {
  padding: 1rem 2rem;
}

.button.is-secondary {
  border: 1px solid var(--border-color--border-alternate);
  color: var(--text-color--text-primary);
  background-color: #0000;
}

.button.is-icon {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.button.is-brand {
  background-color: var(--background-color--background-secondary);
}

.fs-styleguide_classes {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-size-medium {
  font-size: 1.25rem;
}

.text-size-medium.token-details-text {
  font-size: 1.5rem;
}

.fs-styleguide_section {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  display: grid;
}

.fs-styleguide_section.is-vertical {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-columns: 1fr;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hide {
  display: none;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.form_radio {
  flex-direction: row;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 0;
  display: flex;
}

.fs-styleguide_spacing-all {
  display: none;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.fs-styleguide_spacer-box {
  background-color: #2d40ea1a;
  border: 1px dashed #2d40ea;
  width: 100%;
  position: relative;
}

.spacer-xsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 8rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .125rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 12rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-large {
  padding-top: 3rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.fs-styleguide_message {
  background-color: var(--background-color--background-warning);
  color: var(--text-color--text-warning);
  border-radius: .25rem;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav_component {
  z-index: 99;
  background-color: var(--base-color-brand--transparent);
  pointer-events: none;
  width: 100%;
  position: relative;
}

.nav_container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav_brand {
  padding: 0;
}

.nav_brand.w--current {
  pointer-events: auto;
}

.nav_logo {
  width: 10rem;
}

.nav_menu_link {
  border: 2px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--yellow);
  pointer-events: auto;
  color: var(--base-color-neutral--black);
  text-align: center;
  border-radius: 25px;
  width: 13.8889vw;
  padding: 1rem;
  font-size: 1.4rem;
}

.nav_menu_link.w--current {
  color: var(--base-color-neutral--black);
}

.nav_button {
  pointer-events: auto;
  padding: 1rem;
  background: transparent !important;
}

.nav_button.w-nav-button {
  background: transparent !important;
}

.nav_button.w-nav-button.w--open {
  background: transparent !important;
}

.connect-wallet-mobile-btn {
  background: white;
  color: #ff6b35;
  border: 2px solid #ff6b35;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.connect-wallet-mobile-btn:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

.connect-wallet-mobile-btn:active {
  transform: translateY(0);
}

.aspect-ratio-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-ratio-portrait {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.aspect-ratio-landscape {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.aspect-ratio-widescreen {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.background-color-tertiary {
  background-color: var(--background-color--background-tertiary);
}

.fs-styleguide_hero-label {
  color: var(--text-color--text-primary);
  text-transform: uppercase;
  background-color: #eee;
  border-radius: .25rem;
  padding: .25rem .375rem;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.hero_content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  max-width: 70rem;
  display: grid;
  position: relative;
}

.hero_image {
  border-radius: 1rem;
  margin-top: 0;
}

.hero_heading {
  font-size: 4rem;
}

.section_hero {
  color: #fff;
  background-color: #000;
  background-image: radial-gradient(circle at 0 100%, #2d62ff4d, #0000 50%), radial-gradient(circle at 100% 60%, #2d62ff4d, #1110 20%), radial-gradient(circle at 100% 100%, #d600c433, #0000 45%);
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.hero_grid {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.nav_fixed {
  position: absolute;
  inset: 0% 0% auto;
}

.fs-styleguide_heading-header {
  font-size: 6rem;
}

.section_home_hero {
  border: 5px solid #000;
  height: 87.5vw;
  position: relative;
}

.home_hero_bg-image {
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.home_hero_bg-image.socials {
  opacity: .75;
}

.home_hero_bg-image.army, .home_hero_bg-image.tokenomics {
  opacity: 1;
}

.home_hero_image {
  width: 51.5972vw;
  margin-left: 38%;
}

.text-color-yellow {
  color: var(--base-color-neutral--yellow);
}

.home_hero_content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.position-relative {
  z-index: 2;
  height: 100%;
  position: relative;
}

.home_hero_images-wrapper {
  z-index: 1;
  pointer-events: none;
  width: 85vw;
  position: absolute;
  top: 13vw;
  right: 7.5vw;
}

.home_hero_image-1 {
  width: 18%;
  position: absolute;
  inset: auto 2% 7% auto;
}

.home_hero_image-2 {
  width: 35.5556vw;
  position: absolute;
  inset: auto auto 20% 0%;
}

.navbar-links {
  grid-column-gap: 4.16667vw;
  grid-row-gap: 4.16667vw;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.home_hero_content-2 {
  z-index: 2;
  width: 100%;
  position: absolute;
  inset: auto 0% 13%;
}

.home_hero_contract-address {
  grid-column-gap: .9375rem;
  grid-row-gap: .9375rem;
  border: 2px solid var(--base-color-neutral--black);
  background-color: var(--base-color-neutral--white);
  color: var(--base-color-neutral--black);
  text-align: center;
  border-radius: 25px;
  flex-flow: column;
  padding: .9rem 4.5rem;
  display: flex;
  position: relative;
}

.home_hero_contract-address.flip {
  background-color: #f382eb;
  width: 100%;
  height: 100%;
  padding-top: 3.5rem;
  position: absolute;
}

.home_hero_contract-address.flip.nt-popup {
  display: none;
  inset: 0%;
}

.home_hero_heading-address {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
}

.home_hero_moving-text {
  color: var(--base-color-brand--pink);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
}

.home_hero_moving-text.text-size-large {
  line-height: 2.5rem;
}

.section_home_buy {
  background-color: #e8e8e8;
  border: 5px solid #000;
  height: clamp(645px, 55vw, 774px);
  position: relative;
  overflow: hidden;
}

.home_buy-octo-1 {
  pointer-events: none;
  width: 35vw;
  position: absolute;
  inset: auto auto 0% 0%;
}

.home_buy-octo-2 {
  pointer-events: none;
  width: 70vw;
  position: absolute;
  inset: auto 0% 0% auto;
}

.home_buy-badge {
  pointer-events: none;
  width: 18.75vw;
  position: absolute;
  inset: 40px 18.2639vw auto auto;
}

.tennis_ball_wrapper {
  z-index: 5;
  text-align: center;
  cursor: pointer;
  position: absolute;
}

.tennis_ball_wrapper.exchanges {
  top: 200px;
  left: 16.9444vw;
}

.tennis_ball_wrapper.wallets {
  top: 430px;
  left: 40vw;
}

.tennis_ball_wrapper.exchanges_radium {
  top: 50%;
  left: 33%;
  transform: translate(0, -50%);
}

.tennis_ball_wrapper.exchanges_ascendex {
  bottom: 2%;
  left: 4%;
}

.tennis_ball_wrapper.exchanges_pumpfun {
  bottom: 2%;
  left: 55%;
}

.tennis_ball_wrapper.exchanges_pumpfun.pumpfun-details {
  bottom: 10%;
  left: 66%;
}

.tennis_ball_wrapper.wallets_solflare {
  bottom: 8%;
  left: 8%;
}

.tennis_ball_wrapper.walllets_coinbase {
  bottom: 16%;
  left: 60%;
}

.tennis_ball_wrapper.wallets_radium {
  top: 50%;
  left: 33%;
  transform: translate(0, -50%);
}

.tennis_ball_image {
  width: 11.9444vw;
}

.tennis_ball_image.wallets {
  transform: rotate(-90deg);
}

.tennis_ball_image.raydium {
  transform: rotate(-60deg);
}

.tennis_ball_image.left {
  transform: rotate(-120deg);
}

.tennis_ball_image.large {
  width: 15vw;
}

.tennis_ball_image.pumpfun {
  width: 19.0278vw;
}

.tennis_ball_heading {
  color: #fffffd;
  -webkit-text-stroke-width: 2.4px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 3.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tennis_ball_heading.bigger {
  font-size: 4.2rem;
}

.tennis_ball_heading.pumpfun {
  font-size: 5rem;
}

.section_home_socials {
  background-color: var(--border-color--border-alternate);
  border: 5px solid #000;
  height: 66.25vw;
  position: relative;
}

.home_socials_1 {
  pointer-events: none;
  width: 33.3333vw;
  position: absolute;
  inset: auto 0% 0% auto;
}

.home_socials_2 {
  pointer-events: none;
  width: 37.5vw;
  position: absolute;
  inset: auto 19% 0% auto;
}

.choctopus-link {
  color: var(--base-color-neutral--yellow);
  -webkit-text-stroke-width: 2.4px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 3.4rem;
  position: absolute;
  top: 35%;
  left: 25%;
  transform: translate(-50%, -50%);
}

.socials_link {
  z-index: 5;
  position: absolute;
  top: 47%;
  left: 10%;
}

.socials_link.reddit {
  top: 71%;
}

.socials_link.telegram {
  top: 56%;
  left: 25%;
}

.socials_link.tiktok {
  left: 40%;
}

.socials_link.x {
  top: 69%;
  left: 37%;
}

.socials-link-image {
  width: 8vw;
}

.socials-link-image.x {
  width: 7vw;
}

.section_home_army {
  border: 5px solid #000;
  position: relative;
}

.choco-army-grid {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  align-items: center;
}

.army-grid-left {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.army-nfts-grid {
  grid-column-gap: 2.43056vw;
  grid-row-gap: 2.43056vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.army-list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5.6rem;
  margin-bottom: 2.5rem;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
}

.army-list-item {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.army-item-bullet {
  background-color: var(--base-color-neutral--white);
  border: 2px solid #000;
  border-radius: 100px;
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
}

.army_subheading {
  margin-top: 2rem;
  margin-bottom: 3.5rem;
  font-family: Inter, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 100%;
}

.army_highlighted-text {
  color: var(--base-color-neutral--yellow);
  font-family: Inter, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.army_list-text {
  color: var(--base-color-neutral--white);
}

.text-stroke {
  text-shadow: -1px -1px #000, -1px 1px #000, 1px -1px #000, 1px 1px #000;
}

.army_button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.army_price-text {
  color: #9747ff;
  -webkit-text-stroke-width: 1.5px;
}

.army_price-text.heading-style-h3 {
  margin-left: 1rem;
}

.army_sol-icon {
  width: 4.4rem;
}

.army_nft-wrapper {
  width: 100%;
  height: 100%;
}

.army_nft-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section_home_white-paper {
  background-color: #decae5;
  border: 5px solid #000;
  position: relative;
}

.white_paper_grid {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 734fr 467fr;
  align-items: center;
}

.white_paper_grid-left {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.white_paper_grid-right {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.white_paper-image {
  width: 100%;
  height: 100%;
}

.white_paper_image-wrapper {
  border: 5px solid #000;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.white_paper_link-text {
  color: var(--base-color-neutral--yellow);
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 2rem;
  line-height: 100%;
}

.white_paper_link {
  text-align: center;
  text-decoration: none;
}

.section_home_tokenomics {
  border: 5px solid #000;
  position: relative;
}

.home_tokenomics_investigator {
  z-index: 0;
  pointer-events: none;
  width: 53.8194vw;
  position: absolute;
  top: 10.2083vw;
  left: 50%;
  transform: translate(-50%);
}

.tokenomics_grid {
  grid-column-gap: 7.77778vw;
  grid-row-gap: 7.77778vw;
  grid-template-rows: auto;
}

.wallet_list {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 2rem;
  line-height: 120%;
}

.tokenomics_text-large {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 1.1px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2.3rem;
  line-height: 120%;
}

.tokenomics_schedule-heading {
  color: #9747ff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 3.4rem;
}

.tokenomics_text-medium {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  line-height: 120%;
}

.tokenomics_text-small {
  color: var(--base-color-neutral--white);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 120%;
}

.tokenomics_highlighted-text {
  color: #f4d457;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 2.7rem;
  line-height: 110%;
}

.tokenomics_highlighted-text.small {
  font-size: 2.5rem;
}

.home_tokens-burn-heading.heading-style-h1.text-color-primary {
  color: #9747ff;
  text-align: center;
  width: 52.0833vw;
}

.tokenomics_burn-lottie-wrapper {
  justify-content: space-between;
  align-items: center;
  min-height: 41.6667vw;
  margin-top: 10vw;
  display: flex;
  position: relative;
}

.tokenomics_lottie {
  aspect-ratio: 4 / 3;
  width: 82vw;
  position: absolute;
  inset: -22% 0% 0% auto;
}

.army_lightbox {
  width: 100%;
  height: 100%;
}

.exchanges-popup {
  z-index: 10;
  background-color: #e8e8e8;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.exchanges-popup.nt-popup {
  display: none;
}

.exchanges-popup.raydium-popup {
  padding-top: 1.5rem;
  display: flex;
}

.exchanges-popup.raydium-popup.nt-inner-popup {
  display: none;
}

.exchanges-popup.ascend-popup {
  padding-top: 1.5rem;
  display: none;
}

.exchanges-popup.ascend-popup.nt-inner-popup {
  display: none;
}

.exchanges-popup.pumpfun-popup {
  padding-top: 1.5rem;
  display: none;
}

.close-popup {
  background-color: var(--base-color-brand--transparent);
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.close-popup.back {
  width: auto;
  inset: auto 2.5rem 2.5rem auto;
}

.close-popup.back.left {
  bottom: 1.25rem;
  left: 1.35rem;
  right: auto;
}

.close-popup.back.top {
  inset: 2rem 2rem auto auto;
}

.close-popup.right {
  width: 50px;
  inset: 2rem 2rem auto auto;
}

.wallets-popup {
  z-index: 10;
  background-color: #e8e8e8;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.wallets-popup.nt-popup {
  display: none;
}

.info-popup {
  background-color: var(--base-color-brand--transparent);
  justify-content: center;
  align-items: center;
  width: 50px;
  padding: 0;
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.info-popup.close-popup {
  left: auto;
}

.info-icon {
  color: #f4d457;
}

.exchange-logo {
  aspect-ratio: 44 / 13;
  object-fit: contain;
  width: 60.6944vw;
}

.wallet_grid-left {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8rem;
  display: flex;
}

.wallet_grid-left.ascendex {
  padding-left: 5rem;
}

.exchanges_list-text {
  color: #fffffd;
  -webkit-text-stroke-width: 2.4px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 3rem;
}

.exchanges_list-text.bigger {
  font-size: 4.2rem;
}

.text-color-purple {
  color: #9747ff;
}

.raydium-convert {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  display: flex;
}

.exchanges-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.exchanges-content-wrapper.ascendex {
  padding-left: 5rem;
}

.code-embed {
  aspect-ratio: 152 / 58;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 10.5556vw;
  display: flex;
}

.raydium-convert-logo {
  width: 10.2778vw;
}

.back-balls {
  width: 19.5833vw;
}

.back_balls_heading {
  color: #fffffd;
  -webkit-text-stroke-width: 2.4px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.back_balls_heading.bigger {
  font-size: 4.2rem;
}

.close-inner-popup {
  background-color: var(--base-color-brand--transparent);
  justify-content: center;
  align-items: center;
  width: 50px;
  padding: 0;
  display: flex;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.close-inner-popup.back {
  inset: auto 2.5rem 2.5rem auto;
}

.close-inner-popup.back.left {
  bottom: 1.25rem;
  left: 1.35rem;
  right: auto;
}

.close-inner-popup.back.top, .close-inner-popup.right {
  inset: 2rem 2rem auto auto;
}

.wallet-popup {
  z-index: 10;
  background-color: #e8e8e8;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.wallet-popup.nt-popup {
  display: none;
}

.wallet-popup.raydium-popup {
  padding-top: 1.5rem;
  display: flex;
}

.wallet-popup.raydium-popup.nt-inner-popup {
  display: none;
}

.wallet-popup.ascend-popup, .wallet-popup.pumpfun-popup, .wallet-popup.phantom-popup {
  padding-top: 1.5rem;
  display: none;
}

.wallet-popup.phantom-popup.nt-inner-popup {
  display: none;
}

.wallet-popup.solflare-popup, .wallet-popup.coinbase-popup {
  padding-top: 1.5rem;
  display: none;
}

.exchange_link, .wallet-link {
  margin-left: auto;
  margin-right: auto;
}

.wallet_app-links-wrapper {
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
}

.wallet_app-links-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  place-items: center;
}

.wallet_app-link-icon {
  width: 4vw;
}

.wallet-item-bullet {
  background-color: #f4d457;
  border: 1.5px solid #000;
  border-radius: 100px;
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
}

.wallet_list-text {
  color: #f4d457;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  font-size: 2.7rem;
  line-height: 120%;
}

.wallet_list-text.small {
  font-size: 2.5rem;
}

.wallet_grid-right {
  border: 5px solid #000;
  border-radius: 25px;
  overflow: hidden;
}

.wallet-content-wrapper {
  grid-column-gap: 12.2222vw;
  grid-row-gap: 12.2222vw;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 666fr 319fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2.125rem;
  display: grid;
}

.wallet-content-wrapper.ascendex {
  padding-left: 3rem;
}

.wallet-content-wrapper.coinbase {
  grid-template-columns: 666fr 247fr;
  margin-top: 1.5rem;
}

.wallet-content-wrapper.solflare {
  width: 88%;
  margin-left: auto;
  margin-right: auto;
}

.wallet-logo {
  aspect-ratio: 6;
  object-fit: contain;
  width: 49.7917vw;
}

.wallet-logo.svg {
  justify-content: center;
  align-items: center;
  display: flex;
}

.mint-popup {
  z-index: 100;
  pointer-events: none;
  background-color: #0006;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 5vw 10vw;
  display: none;
  position: fixed;
  inset: 0%;
}

.mint-popup.nt-popup {
  display: none;
}

.mint-content-box {
  pointer-events: auto;
  background-color: #f4d457;
  border: 5px solid #000;
  border-radius: 25px;
  width: 60.8333vw;
  min-height: 37rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mint-content-box.nt-inner-popup {
  z-index: 2;
  display: none;
  position: absolute;
}

.mint_popup_content {
  position: relative;
}

.mint-heading {
  text-align: center;
  font-size: 3.4rem;
}

.mint_popup-list-text {
  color: var(--base-color-neutral--black);
}

.mint-item-bullet {
  background-color: var(--base-color-neutral--black);
  border: 2px solid #000;
  border-radius: 100px;
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
}

.mint_popup_text-link {
  color: #9747ff;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--base-color-neutral--black);
  text-transform: uppercase;
  font-family: Chewy, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: none;
}

.mint_popup_list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
}

.mint_popup_image {
  object-fit: contain;
  height: 60px;
}

.mint_popup_links-wrapper {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.mint_popup_close-icon {
  color: var(--base-color-neutral--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.close-mint-popup {
  background-color: var(--base-color-brand--transparent);
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.close-mint-popup.back {
  inset: auto 2.5rem 2.5rem auto;
}

.close-mint-popup.back.left {
  bottom: 1.25rem;
  left: 1.35rem;
  right: auto;
}

.close-mint-popup.back.top, .close-mint-popup.right {
  inset: 2rem 2rem auto auto;
}

.moving-heading-wrapper {
  height: 2.5rem;
  margin-top: 1rem;
  padding-left: 2rem;
  overflow: hidden;
}

.discord-icon-link {
  color: var(--base-color-brand--transparent);
  background-image: url('../images/discord-blue.avif');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-right: 60px;
  font-size: 2rem;
}

.close-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.contract_address_wrapper {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: color .3s ease-in-out;
  display: flex;
}

.contract_address_wrapper:hover {
  color: #9747ff;
}

.contract_address_copy-button {
  background-color: var(--base-color-brand--transparent);
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: relative;
}

.contract_address_copy-icon {
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  transition: all .2s;
  display: flex;
}

.contract_address_copy-button-wrapper {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contract_address_copied-text {
  display: none;
  position: absolute;
  left: 100%;
}

.contract_address_container {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 4rem;
  }

  .heading-style-h1 {
    font-size: 6rem;
  }

  .heading-style-h1.text-color-primary.army_heading {
    -webkit-text-stroke-width: 4px;
    font-size: 5.3125rem;
  }

  .text-size-large {
    font-size: 3rem;
  }

  .heading-style-h2 {
    font-size: 4rem;
  }

  .button {
    padding: 1.125rem 4rem;
    font-size: 1.5rem;
  }

  .home_hero_moving-text.text-size-large {
    font-size: 2rem;
  }

  .section_home_buy {
    height: clamp(645px, 48vw, 900px);
  }

  .home_buy-octo-1 {
    width: 25vw;
  }

  .home_buy-octo-2 {
    width: 55vw;
  }

  .tennis_ball_image.pumpfun {
    width: 17.125rem;
  }

  .tennis_ball_heading {
    -webkit-text-stroke-width: 4px;
    font-size: 4rem;
  }

  .tennis_ball_heading.bigger {
    font-size: 5rem;
  }

  .tennis_ball_heading.pumpfun {
    font-size: 6rem;
  }

  .choctopus-link {
    -webkit-text-stroke-width: 4px;
    font-size: 4rem;
  }

  .army-list {
    margin-top: 6.6875rem;
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }

  .army_subheading {
    font-size: 3rem;
  }

  .army_highlighted-text {
    font-size: 2.5rem;
  }

  .army_price-text.heading-style-h3 {
    -webkit-text-stroke-width: 2px;
    margin-left: 1.5rem;
  }

  .army_sol-icon {
    width: 5rem;
  }

  .white_paper_link-text {
    -webkit-text-stroke-width: 2px;
    font-size: 2.25rem;
  }

  .home_tokenomics_investigator {
    width: 48.4375rem;
  }

  .tokenomics_grid {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
  }

  .tokenomics_grid-left {
    padding-left: 3vw;
    padding-right: 5vw;
  }

  .wallet_list, .tokenomics_text-large {
    -webkit-text-stroke-width: 1.5px;
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
  }

  .tokenomics_schedule-heading {
    -webkit-text-stroke-width: 3px;
    font-size: 4rem;
  }

  .tokenomics_text-medium {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }

  .tokenomics_text-small {
    margin-bottom: 2.5rem;
    font-size: 1.6875rem;
  }

  .tokenomics_highlighted-text {
    -webkit-text-stroke-width: 2px;
    font-size: 3rem;
  }

  .tokenomics_highlighted-text.small {
    font-size: 2.75rem;
  }

  .wallet_grid-left.ascendex {
    padding-left: 10rem;
  }

  .exchanges_list-text.bigger {
    font-size: 5rem;
  }

  .exchanges-content-wrapper.ascendex {
    padding-left: 10rem;
  }

  .code-embed {
    width: 9.5rem;
  }

  .raydium-convert-logo {
    width: 9.25rem;
  }

  .back-balls {
    width: 17.625rem;
  }

  .back_balls_heading {
    -webkit-text-stroke-width: 4px;
    font-size: 6rem;
  }

  .back_balls_heading.bigger {
    font-size: 5rem;
  }

  .wallet-popup.coinbase-popup.nt-inner-popup {
    display: none;
  }

  .wallet_app-link-icon {
    width: 3.5rem;
  }

  .wallet-item-bullet {
    border-width: 2px;
  }

  .wallet_list-text {
    -webkit-text-stroke-width: 2px;
    font-size: 3rem;
  }

  .wallet_list-text.small {
    font-size: 2.75rem;
  }

  .wallet-content-wrapper {
    grid-column-gap: 11rem;
    grid-row-gap: 11rem;
  }

  .wallet-content-wrapper.coinbase {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }

  .wallet-content-wrapper.solflare {
    width: 80%;
  }

  .wallet-logo {
    width: 44.8125rem;
  }

  .mint-content-box {
    width: 72rem;
  }

  .mint-heading {
    -webkit-text-stroke-width: 3px;
    font-size: 4rem;
  }

  .mint_popup_text-link {
    font-size: 2.5rem;
  }

  .mint_popup_list {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }

  .moving-heading-wrapper {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .padding-xlarge {
    padding: 3rem;
  }

  .margin-xlarge {
    margin: 3rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 8rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .padding-xxlarge {
    padding: 4rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .margin-xxlarge {
    margin: 4rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xxhuge {
    margin: 8rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-tablet {
    display: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .padding-global.padding-home-hero {
    padding-top: 20vw;
  }

  .fs-styleguide_1-col {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 3rem;
  }

  .fs-styleguide_4-col {
    grid-template-columns: 1fr;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .fs-styleguide_3-col {
    grid-template-columns: 1fr;
  }

  .text-size-large.contrast-address-text {
    word-break: break-all;
  }

  .text-size-medium.token-details-text {
    font-size: 1.25rem;
  }

  .fs-styleguide_section {
    grid-column-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 8rem;
  }

  .spacer-xlarge {
    padding-top: 3rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4rem;
  }

  .nav_logo {
    width: 5rem;
  }

  .nav_menu_link {
    width: auto;
    min-width: 12rem;
  }

  .nav_button {
    background-color: var(--base-color-neutral--white);
    color: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: flex-end;
    padding: .8rem;
    display: flex;
  }

  .nav_button.w--open {
    background-color: var(--base-color-neutral--white);
  }

  .section_hero {
    padding-top: 3rem;
  }

  .hero_grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .fs-styleguide_heading-header {
    font-size: 4rem;
  }

  .section_home_hero {
    height: 60rem;
  }

  .home_hero_images-wrapper {
    top: 14rem;
  }

  .navbar-links {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    background-color: var(--base-color-neutral--white);
    flex-flow: column;
    align-items: stretch;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .home_hero_content-2 {
    bottom: 6%;
  }

  .home_hero_contract-address.flip.nt-popup {
    justify-content: center;
    padding-top: 1.5rem;
  }

  .section_home_buy {
    height: 36rem;
  }

  .tennis_ball_wrapper.exchanges_radium {
    left: 45%;
  }

  .tennis_ball_wrapper.exchanges_ascendex {
    left: 16%;
  }

  .tennis_ball_wrapper.exchanges_pumpfun {
    left: 70%;
  }

  .tennis_ball_wrapper.exchanges_pumpfun.pumpfun-details {
    bottom: 5%;
    left: 75%;
  }

  .tennis_ball_wrapper.wallets_solflare {
    left: 16%;
  }

  .tennis_ball_wrapper.walllets_coinbase {
    left: 69%;
  }

  .tennis_ball_wrapper.wallets_radium {
    left: 40%;
  }

  .tennis_ball_image.pumpfun {
    width: 8rem;
  }

  .tennis_ball_heading.pumpfun {
    -webkit-text-stroke-width: 1.5px;
    font-size: 3rem;
  }

  .section_home_socials {
    height: 40rem;
  }

  .choco-army-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .army-list {
    margin-top: 3.2rem;
    margin-bottom: 2rem;
  }

  .army_subheading {
    margin-bottom: 2.5rem;
  }

  .white_paper_grid {
    grid-template-columns: 734fr;
  }

  .tokenomics_grid {
    grid-template-columns: 1fr;
  }

  .home_tokens-burn-heading.heading-style-h1.text-color-primary {
    font-size: 4.6rem;
  }

  .wallet_grid-left {
    margin-bottom: 2rem;
  }

  .wallet_grid-left.ascendex {
    padding-left: 3rem;
  }

  .exchanges_list-text {
    -webkit-text-stroke-width: 1.5px;
    font-size: 2.5rem;
  }

  .back_balls_heading {
    font-size: 4rem;
  }

  .wallet-popup.solflare-popup.nt-inner-popup {
    padding-top: 1rem;
  }

  .exchange_link.pumpfun {
    margin-bottom: 1.5rem;
  }

  .wallet-link.coinbase-wallet-link {
    margin-bottom: 2rem;
  }

  .wallet_list-text {
    font-size: 2.5rem;
  }

  .wallet-content-wrapper {
    grid-template-columns: 666fr 400fr;
  }

  .wallet-content-wrapper.solflare {
    margin-top: 1rem;
  }

  .wallet-logo.svg {
    width: 40vw;
  }

  .hamburger {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 2rem;
    display: flex;
  }

  .contract_address_wrapper {
    flex-flow: column;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .padding-xlarge {
    padding: 2rem;
  }

  .margin-xlarge {
    margin: 2rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .margin-large {
    margin: 1.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-large {
    padding: 1.5rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .padding-medium {
    padding: 1.25rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-medium {
    margin: 1.25rem;
  }

  .margin-xxhuge {
    margin: 4.5rem;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .heading-style-h1 {
    font-size: 3rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-global.padding-home-hero {
    padding-top: 9rem;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .fs-styleguide_section-header {
    font-size: .875rem;
  }

  .fs-styleguide_heading-medium {
    font-size: 2rem;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .heading-style-h4 {
    font-size: 1rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .heading-style-h6 {
    font-size: .75rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .text-size-large {
    font-size: 1.5rem;
  }

  .heading-style-h2 {
    font-size: 2rem;
  }

  .heading-style-h5 {
    font-size: .875rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-medium {
    padding-top: 1.25rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 4.5rem;
  }

  .spacer-xlarge {
    padding-top: 2rem;
  }

  .spacer-large {
    padding-top: 1.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .nav_button {
    padding: .6rem;
  }

  .section_home_hero {
    height: 50rem;
  }

  .home_hero_images-wrapper {
    top: 10rem;
  }

  .home_hero_contract-address {
    padding-top: 2.2rem;
    padding-bottom: 1.75rem;
  }

  .home_hero_contract-address.flip.nt-popup {
    padding-top: 1.75rem;
  }

  .home_hero_heading-address.heading-style-h2 {
    font-size: 2.7rem;
  }

  .home_hero_moving-text.text-size-large {
    font-size: 2rem;
  }

  .section_home_buy {
    height: 34rem;
  }

  .tennis_ball_wrapper.exchanges {
    top: 170px;
  }

  .tennis_ball_wrapper.wallets {
    top: 320px;
  }

  .tennis_ball_wrapper.exchanges_ascendex, .tennis_ball_wrapper.exchanges_pumpfun {
    bottom: 8%;
  }

  .tennis_ball_wrapper.exchanges_pumpfun.pumpfun-details {
    left: 71%;
  }

  .tennis_ball_image.pumpfun {
    width: 6rem;
  }

  .tennis_ball_heading.bigger {
    -webkit-text-stroke-width: 1.5px;
    font-size: 2.8rem;
  }

  .tokenomics_text-small {
    font-size: 1.3rem;
  }

  .home_tokens-burn-heading.heading-style-h1.text-color-primary {
    -webkit-text-stroke-width: 2px;
    font-size: 3.5rem;
  }

  .info-popup {
    width: 40px;
  }

  .info-icon {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .wallet_grid-left {
    margin-top: .75rem;
  }

  .wallet_grid-left.ascendex {
    padding-left: 0;
  }

  .raydium-convert {
    margin-top: .75rem;
  }

  .back_balls_heading {
    font-size: 3rem;
  }

  .wallet-link.coinbase-wallet-link {
    margin-bottom: 2rem;
  }

  .wallet_app-links-grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .wallet_app-link-icon {
    width: 2.5rem;
  }

  .wallet_list-text {
    -webkit-text-stroke-width: 1px;
    font-size: 2.2rem;
  }

  .wallet-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .wallet-content-wrapper.coinbase {
    grid-template-columns: 666fr 350fr;
  }

  .hamburger {
    width: 26px;
    height: 26px;
  }
}

@media screen and (max-width: 479px) {
  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fs-styleguide_row {
    flex-wrap: wrap;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .heading-style-h1.text-color-primary.how-to-buy-heading {
    -webkit-text-stroke-width: 1.5px;
  }

  .heading-style-h1.text-color-primary.socials-heading {
    -webkit-text-stroke-width: 2px;
  }

  .heading-style-h1.text-color-primary.army_heading {
    -webkit-text-stroke-width: 2px;
    font-size: 3rem;
  }

  .heading-style-h1.text-color-primary.tokenomics_heading {
    font-size: 3.8rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .text-size-large {
    font-size: 1.5rem;
  }

  .text-size-large.contrast-address-text {
    font-size: 1.38rem;
  }

  .container-large.container-nav {
    max-width: 100%;
  }

  .text-size-medium.token-details-text {
    word-break: normal;
    font-size: 1.05rem;
  }

  .padding-section-medium.padding-section-how-to-buy {
    padding-top: 9rem;
  }

  .nav_logo {
    width: 4rem;
  }

  .nav_menu_link {
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 9rem;
    height: auto;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    display: flex;
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
  }

  .nav_menu_link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
  }

  .nav_menu_link:active {
  transform: translateY(0);
}

.nav_menu_link button {
  background: #efbf04;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.mobile-connect-wallet {
  display: none;
}

@media screen and (max-width: 991px) {
  .navbar-links {
    display: none;
  }
  
  .mobile-connect-wallet {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .mobile-connect-wallet {
    display: block;
    width: auto;
    min-width: 12rem;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
  }
  
  .mobile-connect-wallet:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
  }
  
  .mobile-connect-wallet:active {
    transform: translateY(0);
  }
  
  .mobile-connect-wallet button {
    background: transparent !important;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
  }
}

  .nav_button {
    padding: .5rem;
  }

  .hero_heading {
    font-size: 2.5rem;
  }

  .section_home_hero {
    height: 47rem;
  }

  .home_hero_images-wrapper {
    top: 13rem;
  }

  .navbar-links {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding-top: 1rem;
  }

  .home_hero_content-2 {
    bottom: 6%;
  }

  .home_hero_contract-address {
    padding: 4rem 1rem 2rem;
  }

  .home_hero_contract-address.flip.nt-popup {
    padding-top: 3.5rem;
  }

  .home_hero_heading-address.heading-style-h2 {
    font-size: 2.1rem;
  }

  .section_home_buy {
    height: 40rem;
  }

  .home_buy-badge {
    width: 7rem;
    top: 2rem;
    right: 1rem;
  }

  .tennis_ball_wrapper.exchanges {
    top: 15rem;
    left: 19vw;
  }

  .tennis_ball_wrapper.wallets {
    top: 25rem;
  }

  .tennis_ball_wrapper.exchanges_radium {
    top: 30%;
    left: 36%;
  }

  .tennis_ball_wrapper.exchanges_ascendex {
    bottom: 36%;
  }

  .tennis_ball_wrapper.exchanges_pumpfun, .tennis_ball_wrapper.exchanges_pumpfun.pumpfun-details {
    left: 50%;
  }

  .tennis_ball_wrapper.wallets_solflare {
    bottom: 30%;
  }

  .tennis_ball_wrapper.walllets_coinbase {
    bottom: 8%;
    left: 50%;
  }

  .tennis_ball_wrapper.wallets_radium {
    top: 36%;
    left: 36%;
  }

  .tennis_ball_image {
    width: 27vw;
  }

  .tennis_ball_image.large {
    width: 30vw;
  }

  .tennis_ball_heading {
    -webkit-text-stroke-width: 1.5px;
    font-size: 2.5rem;
  }

  .tennis_ball_heading.bigger {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .section_home_socials {
    height: 48rem;
  }

  .home_socials_1 {
    width: 50vw;
  }

  .home_socials_2 {
    width: 55vw;
    right: 30%;
  }

  .choctopus-link {
    top: 13rem;
    left: 50%;
  }

  .socials_link {
    top: 20rem;
  }

  .socials_link.reddit {
    top: 32rem;
  }

  .socials_link.telegram {
    top: 25rem;
    left: 40%;
  }

  .socials_link.tiktok {
    left: 65%;
  }

  .socials_link.x {
    top: 30rem;
    left: 75%;
  }

  .socials-link-image {
    width: 3.3rem;
  }

  .socials-link-image.x {
    width: 3rem;
  }

  .choco-army-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .army-nfts-grid {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
    grid-template-columns: 1fr 1fr;
  }

  .army-list-item {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .army-item-bullet {
    margin-top: 14px;
  }

  .army_subheading {
    font-size: 2.1rem;
  }

  .army_highlighted-text.text-stroke {
    font-size: 1.8rem;
    line-height: 120%;
  }

  .army_list-text.text-stroke {
    text-align: left;
  }

  .army_button-wrapper.outer {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .army_price-text.heading-style-h3 {
    font-size: 2rem;
  }

  .white_paper_link-text {
    font-size: 1.9rem;
  }

  .tokenomics_list-text {
    -webkit-text-stroke-width: .6px;
    font-size: 1.8rem;
  }

  .tokenomics_text-large {
    -webkit-text-stroke-width: .9px;
    margin-top: 2rem;
    font-size: 2rem;
  }

  .tokenomics_schedule-heading {
    font-size: 2.7rem;
    line-height: 120%;
  }

  .tokenomics_text-medium {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .tokenomics_text-small {
    margin-top: 2rem;
  }

  .tokenomics_highlighted-text {
    font-size: 8.97vw;
  }

  .tokenomics_highlighted-text.small {
    font-size: 2.2rem;
  }

  .home_tokens-burn-heading.heading-style-h1.text-color-primary {
    font-size: 2rem;
  }

  .exchanges-popup.raydium-popup.nt-inner-popup {
    padding-top: 3rem;
  }

  .close-popup.right {
    width: 40px;
    top: 1rem;
    right: 1rem;
  }

  .wallet_grid-left {
    margin-top: 0;
    margin-bottom: 0;
  }

  .raydium-convert {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .code-embed {
    width: 16vw;
  }

  .raydium-convert-logo {
    width: 4.5rem;
  }

  .close-inner-popup {
    width: 40px;
    top: 1rem;
    left: 1rem;
  }

  .wallet-popup.phantom-popup.nt-inner-popup {
    padding-top: 1rem;
    display: none;
  }

  .wallet-link {
    margin-left: 0;
  }

  .wallet-link.coinbase-wallet-link {
    margin-bottom: 0;
    padding-left: 1rem;
  }

  .wallet-item-bullet {
    margin-top: 15px;
  }

  .wallet_grid-right {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .wallet-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 666fr;
    margin-top: 1rem;
  }

  .wallet-content-wrapper.coinbase {
    grid-template-columns: 666fr;
    margin-top: 1rem;
  }

  .wallet-logo {
    width: 70vw;
  }

  .wallet-logo.svg {
    justify-content: flex-start;
    align-items: center;
    width: 80vw;
  }

  .mint-popup.nt-popup {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mint-content-box {
    width: 100%;
    padding: 1rem;
  }

  .mint-content-box.nt-inner-popup {
    width: calc(100% - 2rem);
  }

  .mint-heading {
    text-align: left;
    font-size: 2.4rem;
    line-height: 120%;
  }

  .mint-heading.waitlist {
    width: 75%;
  }

  .mint-item-bullet {
    width: 8px;
    min-width: 8px;
    height: 8px;
    min-height: 8px;
    margin-top: 9px;
  }

  .mint_popup_text-link {
    -webkit-text-stroke-width: 1.2px;
    font-size: 1.6rem;
  }

  .mint_popup_list {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 140%;
  }

  .mint_popup_image {
    height: 35px;
  }

  .mint_popup_links-wrapper {
    justify-content: space-between;
    padding-left: 1rem;
  }

  .close-mint-popup.right.close-inner-popup {
    top: 1rem;
    right: 1rem;
  }
}

#w-node-b224ec27-30fa-be84-48bf-7ed471542af3-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627ca17-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca1c-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca21-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca26-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca2c-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca32-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ca38-b30bacc0 {
  justify-self: start;
}

#w-node-_5d224905-8a1e-1460-7532-d38cb7ec37c1-b30bacc0, #w-node-_40538c8c-870b-b365-34c4-2a06f0f8567d-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb45-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cb5e-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb61-b30bacc0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb63-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cb66-b30bacc0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cbb8-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc2-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cbc3-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc31-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc36-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc3b-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc40-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc45-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc4a-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc54-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc59-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc5e-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc63-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc68-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc6d-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc72-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc77-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc7c-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc81-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc86-b30bacc0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8a-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cc8b-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc90-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc95-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cc9a-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccaf-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb4-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccb9-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccbe-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc3-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccc8-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd2-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccd7-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccdc-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce1-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cce6-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cceb-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf0-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccf5-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccfa-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627ccff-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd04-b30bacc0 {
  justify-self: start;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd08-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cd09-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd0e-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd13-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd18-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3e5-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ea-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3ef-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f4-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3f9-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef3fe-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef403-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef408-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef40d-b30bacc0, #w-node-_30684373-af34-3818-02a4-e58b3ffef412-b30bacc0 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef416-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef417-b30bacc0 {
  justify-self: start;
}

#w-node-_30684373-af34-3818-02a4-e58b3ffef41a-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd6b-b30bacc0, #w-node-_32eadc24-e391-a089-abe0-fb5b6627cd98-b30bacc0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_32eadc24-e391-a089-abe0-fb5b6627cdc7-b30bacc0 {
  justify-self: start;
}


@font-face {
  font-family: 'Chewy';
  src: url('../fonts/chewy-v18-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}