:root {
  --dl-color-gray-500: #595959;
  --dl-color-gray-700: #999999;
  --dl-color-gray-900: #D9D9D9;
  --dl-color-danger-300: #A22020;
  --dl-color-danger-500: #BF2626;
  --dl-color-danger-700: #E14747;
  --dl-color-gray-black: #000000;
  --dl-color-gray-white: #FFFFFF;
  --dl-color-primary-100: #003EB3;
  --dl-color-primary-300: #0074F0;
  --dl-color-primary-500: #14A9FF;
  --dl-color-primary-700: #85DCFF;
  --dl-color-success-300: #199033;
  --dl-color-success-500: #32A94C;
  --dl-color-success-700: #4CC366;
  --dl-layout-size-large: 144px;
  --dl-layout-size-small: 48px;
  --dl-layout-space-unit: 16px;
  --dl-layout-size-medium: 96px;
  --dl-layout-size-xlarge: 192px;
  --dl-layout-size-xsmall: 16px;
  --dl-color-theme-accent1: #FFFFFF;
  --dl-color-theme-accent2: #F5D1B0;
  --dl-layout-radius-round: 50%;
  --dl-layout-size-xxlarge: 288px;
  --dl-color-theme-primary1: #BF4408;
  --dl-color-theme-primary2: #E65103;
  --dl-layout-size-maxwidth: 1400px;
  --dl-layout-radius-radius2: 2px;
  --dl-layout-radius-radius4: 4px;
  --dl-layout-radius-radius8: 8px;
  --dl-layout-space-halfunit: 8px;
  --dl-layout-space-sixunits: 96px;
  --dl-layout-space-twounits: 32px;
  --dl-color-theme-secondary1: #FFFFFF;
  --dl-color-theme-secondary2: #FBF1EB;
  --dl-layout-space-fiveunits: 80px;
  --dl-layout-space-fourunits: 64px;
  --dl-layout-space-threeunits: 48px;
  --dl-color-theme-neutral-dark: #191818;
  --dl-layout-radius-cardradius: 8px;
  --dl-color-theme-neutral-light: #FBFAF9;
  --dl-layout-radius-imageradius: 8px;
  --dl-layout-radius-inputradius: 24px;
  --dl-layout-radius-buttonradius: 24px;
  --dl-layout-space-oneandhalfunits: 24px;
}

/* Base typography and reset */
html {
  line-height: 1.15;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0f;
  fill: #ffffff;
  overflow-x: hidden;
}

.color-success-500 {
  color: var(--dl-color-success-500);
}

.color-danger-300 {
  color: var(--dl-color-danger-300);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  -webkit-font-smoothing: antialiased;
}

p,
li,
ul,
pre,
div,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
figcaption {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  color: inherit;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focus,
[type="button"]:-moz-focus,
[type="reset"]:-moz-focus,
[type="submit"]:-moz-focus {
  outline: 1px dotted ButtonText;
}

a {
  color: inherit;
  text-decoration: inherit;
}

pre {
  white-space: normal;
}

input {
  padding: 2px 4px;
}

img {
  display: block;
}

details {
  display: block;
  margin: 0;
  padding: 0;
}

summary::-webkit-details-marker {
  display: none;
}

[data-thq="accordion"] [data-thq="accordion-content"] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0;
}

[data-thq="accordion"] details[data-thq="accordion-trigger"][open]
  + [data-thq="accordion-content"] {
  max-height: 1000vh;
}

details[data-thq="accordion-trigger"][open]
  summary
  [data-thq="accordion-icon"] {
  transform: rotate(180deg);
}

@keyframes particlesFloat {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
  }
}

.button {
  color: var(--dl-color-gray-black);
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 18px;
  box-shadow: 5px 6px 0px 0px #000000;
  font-style: normal;
  transition: 0.3s;
  font-weight: 500;
  padding-top: var(--dl-layout-space-unit);
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: 0px;
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-unit);
  background-color: rgb(255, 207, 119);
}
 
.button:hover {
  opacity: 0.5;
}
 
.input {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem 1rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
 
.textarea {
  color: var(--dl-color-gray-black);
  cursor: auto;
  padding: 0.5rem;
  border-color: var(--dl-color-gray-black);
  border-width: 1px;
  border-radius: 4px;
  background-color: var(--dl-color-gray-white);
}
 
.list {
  width: 100%;
  margin: 1em 0px 1em 0px;
  display: block;
  padding: 0px 0px 0px 1.5rem;
  list-style-type: none;
  list-style-position: outside;
}
 
.list-item {
  display: list-item;
}
 
.teleport-show {
  display: flex !important;
  transform: translateX(0%) !important;
}
 
.social {
  width: 20px;
  display: flex;
  padding: 0px;
  box-shadow: none;
  align-items: center;
  border-width: 0px;
  border-radius: 0px;
  flex-direction: row;
  justify-content: center;
  background-color: transparent;
}
 
.button-clean {
  border: none;
  padding: 0px;
  box-shadow: none;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
 
.button-link {
  color: rgb(255, 255, 255);
  display: flex;
  font-size: 24px;
  box-shadow: none;
  font-style: normal;
  align-items: center;
  font-weight: 400;
  line-height: 36px;
  padding-top: var(--dl-layout-space-threeunits);
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 0px;
  padding-left: 0px;
  padding-right: 0px;
  flex-direction: row;
  padding-bottom: var(--dl-layout-space-threeunits);
  justify-content: space-between;
  text-decoration: none;
  background-color: transparent;
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.language-toggle {
  top: 24px;
  right: 24px;
  display: inline-flex;
  gap: 8px;
  z-index: 1000;
  position: fixed;
  padding: 4px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  background-color: rgba(17, 17, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.language-toggle__btn {
  color: #f6f6f6;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: none;
}

.language-toggle__btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.language-toggle__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.45);
}

.language-toggle__btn--active {
  color: #191818;
  font-weight: 600;
  background-color: #ffd700;
}

.accordion {
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-top: var(--dl-layout-space-twounits);
  border-color: rgba(255, 255, 255, 0.2);
  flex-direction: row;
  padding-bottom: var(--dl-layout-space-twounits);
  justify-content: space-between;
  border-bottom-width: 1px;
}
 
.accordion:hover {
  color: white;
  border-color: white;
}
 
.hero-section {
  display: flex;
  padding: 120px 20px 80px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a0f 50%, #2a0510 100%);
  min-height: 100vh;
  align-items: center;
}
 
.hero-particles {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  animation: particlesFloat 20s ease-in-out infinite;
  background-size: 200% 200%;
  background-image: radial-gradient(
        2px 2px at 20% 30%,
        rgba(255, 215, 0, 0.3),
        transparent
      ),radial-gradient(2px 2px at 60% 70%, rgba(255, 0, 0, 0.3), transparent),radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.2), transparent),radial-gradient(1px 1px at 80% 10%, rgba(255, 0, 0, 0.2), transparent);
}
 
.hero-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  background: radial-gradient(
        circle at 30% 50%,
        rgba(220, 20, 60, 0.15),
        transparent 50%
      ),radial-gradient(
        circle at 70% 50%,
        rgba(255, 215, 0, 0.1),
        transparent 50%
      );
}
 
.hero-content {
  width: 100%;
  margin: 0 auto;
  z-index: 3;
  position: relative;
  max-width: 1200px;
}
 
.hero-visual {
  top: 50%;
  right: -10%;
  width: 50%;
  display: none;
  z-index: 2;
  position: absolute;
  transform: translateY(-50%);
}
 
.hero-badge {
  gap: 8px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: inline-flex;
  padding: 10px 20px;
  animation: badgePulse 2s ease-in-out infinite;
  font-size: 14px;
  background: linear-gradient(
      135deg,
      rgba(220, 20, 60, 0.2),
      rgba(255, 215, 0, 0.2)
    );
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 30px;
}
 
.hero-title {
  gap: 20px;
  display: flex;
  margin-bottom: 30px;
  flex-direction: column;
}
 
.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2.5vw, 24px);
  max-width: 700px;
  line-height: 1.6;
  margin: 0;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.hero-intro .home-image2 {
  align-self: center;
  position: static;
}

@media (min-width: 730px) {
  .hero-content {
    padding-right: 360px;
  }

  .hero-intro {
    gap: 24px;
  }

  .hero-intro .hero-subtitle {
    max-width: 640px;
  }

  .hero-intro .home-image2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    max-width: none;
  }
}

@media (min-width: 1080px) {
  .hero-content {
    padding-right: 520px;
  }

  .hero-intro .home-image2 {
    width: 400px;
    height: 400px;
  }
}

.hero-stats {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
 
.hero-buttons {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
 
.hero-contract {
  max-width: 700px;
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
  z-index: 1300;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 20, 0.78);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  width: min(100%, 860px);
  padding: 0;
  border-radius: 24px;
  background: transparent;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  color: #ffd700;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  transition: all 0.3s ease;
}

.modal__close:hover,
.modal__close:focus-visible {
  color: #120e0e;
  background: #ffd700;
  outline: none;
}

.hero-market-panel {
  margin: 0;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  background: rgba(12, 15, 30, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 65px rgba(220, 20, 60, 0.25);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-market-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #ffd700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-market-chart {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08), rgba(12, 15, 30, 0.9));
  min-height: 360px;
}

.hero-market-chart__embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.hero-market-table-wrapper {
  overflow-x: auto;
}

.hero-market-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.hero-market-table thead {
  background: rgba(255, 215, 0, 0.12);
}

.hero-market-table th,
.hero-market-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.hero-market-table th {
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.hero-market-table td {
  color: #ffffff;
  font-weight: 600;
}

.hero-chart {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.3);
  border-radius: 20px;
}

.chart-wrapper {
  padding-top: 2rem;
}

#dexscreener-embed {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
}

@media (min-width: 1400px) {
  #dexscreener-embed {
    padding-bottom: 65%;
  }
}

#dexscreener-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
}

.hero-glow {
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  z-index: 1;
  position: absolute;
  animation: glowPulse 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      circle,
      rgba(255, 215, 0, 0.3),
      transparent 70%
    );
}
 
.hero-title-chinese {
  animation: titleGlow 3s ease-in-out infinite;
  font-size: clamp(36px, 6vw, 72px);
  background: linear-gradient(135deg, #dc143c, #ff6b6b, #ffd700);
  font-weight: 900;
  text-shadow: 0 0 80px rgba(220, 20, 60, 0.5);
  letter-spacing: -2px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-title-ticker {
  font-size: clamp(48px, 8vw, 96px);
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 100px rgba(255, 215, 0, 0.6);
  letter-spacing: -3px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.hero-stat {
  gap: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  align-items: center;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
 
.hero-btn {
  gap: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  padding: 16px 32px;
  font-size: 18px;
  transition: all 0.3s ease;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
}
 
.hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
}
 
.hero-btn-secondary {
  color: #ffd700;
  border: 2px solid #ffd700;
  background: linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.2),
      rgba(255, 215, 0, 0.1)
    );
}
 
.contract-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
 
.contract-box {
  gap: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
 
.contract-address {
  flex: 1;
  color: #ffd700;
  font-size: 14px;
  word-break: break-all;
  font-family: "Courier New", monospace;
}
 
.contract-copy {
  width: 40px;
  border: none;
  cursor: pointer;
  height: 40px;
  display: flex;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  justify-content: center;
}
 
.about-section {
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a0510 100%);
}
 
.section-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
 
.about-content {
  gap: 40px;
  display: flex;
  flex-direction: column;
}
 
.about-visual {
  width: 100%;
  margin: 60px auto 0;
  position: relative;
  max-width: 500px;
}
 
.section-badge {
  gap: 8px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: inline-flex;
  padding: 8px 16px;
  font-size: 14px;
  background: rgba(255, 215, 0, 0.1);
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
}
 
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  background: linear-gradient(135deg, #ffffff, #ffd700);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.about-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
 
.about-features {
  gap: 30px;
  display: flex;
  flex-direction: column;
}
 
.about-image {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.4);
  border-radius: 20px;
}
 
.about-glow {
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  z-index: 1;
  position: absolute;
  animation: glowPulse 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
  background: radial-gradient(
      circle,
      rgba(255, 215, 0, 0.2),
      transparent 70%
    );
}
 
.about-feature {
  gap: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-radius: 20px;
}
 
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  justify-content: center;
}
 
.feature-icon-red {
  background: linear-gradient(
      135deg,
      rgba(220, 20, 60, 0.2),
      rgba(255, 71, 87, 0.2)
    );
}
 

 
.feature-icon-gold {
  background: linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.2),
      rgba(255, 237, 78, 0.2)
    );
}
 
.tokenomics-section {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(180deg, #1a0510 0%, #0a0a0f 100%);
}
 
.tokenomics-header {
  text-align: center;
  margin-bottom: 80px;
}
 
.tokenomics-grid {
  gap: 30px;
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
 
.tokenomics-highlights {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
 
.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 60px;
}
 
.tokenomics-card {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 20px;
}
 
.tokenomics-card-primary {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(
      135deg,
      rgba(220, 20, 60, 0.1),
      rgba(255, 215, 0, 0.1)
    );
}
 
.highlight-item {
  gap: 10px;
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  padding: 12px 24px;
  font-size: 16px;
  background: rgba(255, 215, 0, 0.1);
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
}
 
.tokenomics-icon {
  color: #ffd700;
  margin-bottom: 20px;
}
 
.tokenomics-value {
  font-size: 36px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  font-weight: 900;
  margin-bottom: 10px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.tokenomics-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
 
.buy-section {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a0510 100%);
}
 
.buy-header {
  text-align: center;
  margin-bottom: 80px;
}
 
.buy-steps {
  gap: 40px;
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
 
.buy-contract {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
 
.buy-step {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 40px 30px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-radius: 20px;
}
 
.buy-contract-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
 
.buy-contract-box {
  gap: 15px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  display: flex;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
 
.step-number {
  top: -20px;
  left: 30px;
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  font-size: 24px;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
  align-items: center;
  font-weight: 900;
  border-radius: 50%;
  justify-content: center;
}
 
.step-icon {
  color: #ffd700;
  margin: 40px 0 20px;
}
 
.buy-contract-copy {
  width: 48px;
  border: none;
  cursor: pointer;
  height: 48px;
  display: flex;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  justify-content: center;
}
 
.roadmap-section {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(180deg, #1a0510 0%, #0a0a0f 100%);
}
 
.roadmap-header {
  text-align: center;
  margin-bottom: 80px;
}
 
.roadmap-timeline {
  margin: 0 auto;
  position: relative;
  max-width: 900px;
}
 
.roadmap-item {
  position: relative;
  padding-left: 90px;
  margin-bottom: 60px;
}
 

 

 
.roadmap-marker {
  top: 0;
  left: 0;
  width: 60px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  height: 60px;
  display: flex;
  z-index: 1;
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}
 
.roadmap-content {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-radius: 20px;
}
 
.roadmap-phase {
  color: #ffd700;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
 
.roadmap-list {
  padding: 0;
  list-style: none;
}
 
.community-section {
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a0510 100%);
}
 
.community-content {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
 
.community-visual {
  width: 100%;
  margin: 60px auto 0;
  position: relative;
  max-width: 500px;
}
 
.community-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}
 
.community-stats {
  gap: 40px;
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
 
.community-socials {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
 
.community-image {
  width: 100%;
  height: auto;
  box-shadow: 0 30px 80px rgba(220, 20, 60, 0.4);
  border-radius: 20px;
}
 
.community-stat {
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-radius: 20px;
}
 
.social-link {
  gap: 12px;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: flex;
  padding: 16px 32px;
  font-size: 18px;
  background: linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.1),
      rgba(220, 20, 60, 0.1)
    );
  transition: all 0.3s ease;
  align-items: center;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
}
 
.stat-value {
  font-size: 48px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  font-weight: 900;
  margin-bottom: 10px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
}
 
.footer-section {
  padding: 80px 20px 40px;
  position: relative;
  background: linear-gradient(180deg, #1a0510 0%, #0a0a0f 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}
 
.footer-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}
 
.footer-top {
  gap: 60px;
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1fr;
}
 
.footer-contract {
  margin-bottom: 40px;
}
 
.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  padding-top: 40px;
}
 
.footer-brand {
  max-width: 400px;
}
 
.footer-links {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
 
.footer-contract-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
 
.footer-contract-box {
  gap: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  border-radius: 12px;
}
 
.footer-disclaimer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 900px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
 
.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
 
.footer-logo {
  font-size: 36px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  font-weight: 900;
  margin-bottom: 10px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.footer-tagline {
  color: #dc143c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
 
.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}
 

 
.footer-contract-copy {
  width: 40px;
  border: none;
  cursor: pointer;
  height: 40px;
  display: flex;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  transition: all 0.3s ease;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  justify-content: center;
}
 
.hero-badge  svg {
  color: #ffd700;
}
 
.hero-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
}
 
.hero-stat  svg {
  color: #ffd700;
  flex-shrink: 0;
}
 
.hero-stat  span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}
 
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.6);
}
 
.hero-btn-secondary:hover {
  transform: translateY(-3px);
  background: linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.3),
      rgba(255, 215, 0, 0.2)
    );
}
 
.contract-copy:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}
 
.contract-copy  svg {
  color: #0a0a0f;
}
 
.about-feature:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
}
 
.feature-icon  svg {
  color: #ffd700;
}
 
.feature-content  h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
 
.feature-content  p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}
 
.tokenomics-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}
 
.tokenomics-card  h3 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
 
.highlight-item  svg {
  color: #ffd700;
  flex-shrink: 0;
}
 
.buy-step:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
}
 
.buy-step  h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
 
.buy-step  p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}
 
.buy-contract-box  code {
  flex: 1;
  color: #ffd700;
  font-size: 16px;
  word-break: break-all;
  font-family: "Courier New", monospace;
}
 
.buy-contract-copy:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}
 
.buy-contract-copy  svg {
  color: #0a0a0f;
}
 
.roadmap-timeline::before {
  top: 0;
  left: 30px;
  width: 2px;
  bottom: 0;
  content: "";
  position: absolute;
  background: linear-gradient(
      180deg,
      rgba(255, 215, 0, 0.5),
      rgba(255, 215, 0, 0.1)
    );
}
 
.roadmap-item-completed  .roadmap-marker {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-color: #ffd700;
}
 
.roadmap-item-completed  .roadmap-marker svg {
  color: #0a0a0f;
}
 
.roadmap-item-active  .roadmap-marker {
  animation: markerPulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, #dc143c, #ff4757);
  border-color: #dc143c;
}
 
.roadmap-item-active  .roadmap-marker svg {
  color: #ffd700;
}
 
.roadmap-item  .roadmap-marker svg {
  color: #ffd700;
}
 
.roadmap-item:hover .roadmap-content {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
}
 
.roadmap-content  h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
 
.roadmap-list  li {
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  position: relative;
  font-size: 16px;
  padding-left: 30px;
}
 
.roadmap-list  li::before {
  left: 0;
  color: #ffd700;
  content: "→";
  position: absolute;
  font-weight: bold;
}
 
.community-stat:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.4);
}
 
.social-link:hover {
  transform: translateY(-5px);
  background: linear-gradient(
      135deg,
      rgba(255, 215, 0, 0.2),
      rgba(220, 20, 60, 0.2)
    );
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}
 
.social-link  svg {
  color: #ffd700;
  flex-shrink: 0;
}
 
.footer-column  h4 {
  color: #ffd700;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
 
.footer-column  a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 8px 0;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
 
.footer-column  a:hover {
  color: #ffd700;
  padding-left: 10px;
}
 
.footer-contract-box  code {
  flex: 1;
  color: #ffd700;
  font-size: 14px;
  word-break: break-all;
  font-family: "Courier New", monospace;
}
 
.footer-contract-copy:hover {
  transform: scale(1.1);
}
 
.footer-contract-copy  svg {
  color: #0a0a0f;
}
 
.thq-input {
  color: var(--dl-color-theme-neutral-dark);
  cursor: auto;
  outline: none;
  padding: 0.5rem 1rem;
  align-self: stretch;
  text-align: center;
  border-color: var(--dl-color-theme-neutral-dark);
  border-width: 1px;
  border-radius: var(--dl-layout-radius-inputradius);
  background-color: var(--dl-color-theme-neutral-light);
}
 
.thq-input:focus {
  outline: 1px solid var(--dl-color-theme-primary1);
}
 
.thq-button-filled {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
  background-color: var(--dl-color-theme-primary1);
}
 
.thq-button-filled:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-outline {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  border: 1px solid;
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: var(--dl-color-theme-primary1);
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-outline:hover {
  fill: var(--dl-color-theme-secondary2);
  color: var(--dl-color-theme-secondary2);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-button-flat {
  gap: var(--dl-layout-space-halfunit);
  fill: var(--dl-color-theme-primary1);
  color: var(--dl-color-theme-primary1);
  cursor: pointer;
  display: flex;
  transition: 0.3s;
  align-items: center;
  font-weight: bold;
  padding-top: var(--dl-layout-space-halfunit);
  white-space: nowrap;
  border-color: transparent;
  border-width: 1px;
  padding-left: var(--dl-layout-space-oneandhalfunits);
  border-radius: var(--dl-layout-radius-buttonradius);
  padding-right: var(--dl-layout-space-oneandhalfunits);
  padding-bottom: var(--dl-layout-space-halfunit);
  justify-content: center;
}
 
.thq-button-flat:hover {
  fill: var(--dl-color-theme-secondary1);
  color: var(--dl-color-theme-secondary1);
  border-color: var(--dl-color-theme-primary2);
  background-color: var(--dl-color-theme-primary2);
}
 
.thq-heading-1 {
  font-size: 48px;
  font-family: STIX Two Text;
  font-weight: 700;
  line-height: 1.5;
}
 
.thq-heading-2 {
  font-size: 35px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-heading-3 {
  font-size: 26px;
  font-family: STIX Two Text;
  font-weight: 600;
  line-height: 1.5;
}
 
.thq-body-large {
  font-size: 18px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-body-small {
  font-size: 16px;
  font-family: Noto Sans;
  line-height: 1.5;
}
 
.thq-team-image-round {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
 
.thq-section-padding {
  width: 100%;
  display: flex;
  padding: var(--dl-layout-space-fiveunits);
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-section-max-width {
  width: 100%;
  max-width: var(--dl-layout-size-maxwidth);
}
 
.thq-img-ratio-1-1 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-16-9 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-3 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-ratio-4-6 {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/6;
  border-radius: var(--dl-layout-radius-imageradius);
}
 
.thq-img-round {
  width: 100%;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-flex-column {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
  flex-direction: column;
}
 
.thq-flex-row {
  gap: var(--dl-layout-space-twounits);
  display: flex;
  overflow: hidden;
  position: relative;
  align-items: center;
}
 
.thq-grid-6 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-grid-5 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
 
.thq-card {
  gap: var(--dl-layout-space-oneandhalfunits);
  display: flex;
  padding: var(--dl-layout-space-twounits);
  align-items: stretch;
  border-radius: var(--dl-layout-radius-cardradius);
  flex-direction: column;
}
 
.thq-box-shadow {
  box-shadow: 0px 0px 5px -2px var(--dl-color-theme-neutral-dark);
}
 
.thq-grid-3 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr;
}
 
.thq-grid-4 {
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
 
.thq-grid-2 {
  width: 100%;
  display: grid;
  grid-gap: var(--dl-layout-space-twounits);
  grid-template-columns: 1fr 1fr;
}
 
.thq-checkbox {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-select {
  cursor: pointer;
  appearance: none;
  padding-top: var(--dl-layout-space-halfunit);
  padding-left: var(--dl-layout-space-unit);
  border-radius: var(--dl-layout-radius-inputradius);
  padding-right: var(--dl-layout-space-twounits);
  padding-bottom: var(--dl-layout-space-halfunit);
  background-color: var(--dl-color-theme-neutral-light);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg width%3D%2220%22 height%3D%2220%22 xmlns%3D%22http%3A//www.w3.org/2000/svg%22 viewBox%3D%220 0 20 20%22 fill%3D%22%23000%22%3E%3Cpath d%3D%22M4.293 7.293a1 1 0 011.414 0L10 11.586l4.293-4.293a1 1 0 111.414 1.414l-5 5a1 1 0 01-1.414 0l-5-5a1 1 0 010-1.414z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 8px center;
}
 
.thq-divider-horizontal {
  width: 100%;
  height: 1px;
  background-color: var(--dl-color-theme-neutral-dark);
}
 
.thq-icon-small {
  width: 24px;
  height: 24px;
}
 
.thq-button-icon {
  fill: var(--dl-color-theme-secondary1);
  padding: 3px;
  transition: 0.3s;
  border-radius: var(--dl-layout-radius-round);
}
 
.thq-button-icon:hover {
  fill: var(--dl-color-theme-secondary2);
}
 
.thq-icon-medium {
  width: var(--dl-layout-size-small);
  height: var(--dl-layout-size-small);
}
 
.thq-icon-x-small {
  width: var(--dl-layout-size-xsmall);
  height: var(--dl-layout-size-xsmall);
}
 
.thq-link {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
  transition: background-position 300ms ease;
  font-weight: 600;
  background-clip: text;
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-text-fill-color: transparent;
}
 
.thq-link:hover {
  background-position: 0 100%;
}
 
.thq-grid-auto-300 {
  display: grid;
  grid-gap: var(--dl-layout-space-oneandhalfunits);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
 
.thq-animated-group-vertical-reverse {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-horizontal-reverse {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
  animation-direction: reverse;
}
 
.thq-animated-group-vertical {
  gap: var(--dl-layout-space-unit);
  width: 100%;
  display: flex;
  animation: scroll-y 20s linear infinite;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
}
 
.thq-animated-group-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  animation: scroll-x 20s linear infinite;
  min-width: 100%;
  align-items: center;
  flex-shrink: 0;
  justify-content: space-around;
}
 
.thq-animated-group-container-vertical {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
 
.thq-animated-group-container-horizontal {
  gap: var(--dl-layout-space-unit);
  display: flex;
  overflow: hidden;
}
 
.thq-mask-image-vertical {
  mask-image: linear-gradient(to bottom, transparent, black 1%, black 99%, transparent);
}
 
.thq-mask-image-horizontal {
  mask-image: linear-gradient(to right, transparent, black 1%, black 99%, transparent);
}
 
.thq-img-scale {
  transition: 0.3s;
}
 
.thq-img-scale:hover {
  scale: 1.05;
}
 
.thq-animated-card-bg-1 {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent1);
}
 
.thq-animated-card-bg-2 {
  transition: transform 0.3s;
  border-radius: var(--dl-layout-radius-cardradius);
  background-color: var(--dl-color-theme-accent2);
}
 
.thq-button-animated {
  outline: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-width: 2px;
}
 
.thq-input::placeholder {
  text-align: center;
  vertical-align: middle;
}
 
.thq-animated-group-container-vertical:hover div {
  animation-play-state: paused;
}
 
.thq-animated-group-container-horizontal:hover div {
  animation-play-state: paused;
}
 
.thq-animated-card-bg-2:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(3deg) skew(0deg, 0deg);
}
 
.thq-animated-card-bg-1:has([data-animated="true"]:hover) {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-6deg) skew(0deg, 0deg);
}
 
.thq-button-animated:before {
  top: 0;
  left: -20%;
  color: var(--dl-color-theme-neutral-light);
  width: 200%;
  height: 101%;
  content: "";
  z-index: 1;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: var(--dl-layout-radius-buttonradius);
  background-color: var(--dl-color-theme-neutral-dark);
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
 
.thq-button-animated:hover::before {
  color: var(--dl-color-theme-neutral-light);
  z-index: -1;
  transform: scaleX(1);
}
 
.Heading {
  font-size: 32px;
  font-family: Inter;
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 
.Content {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  text-decoration: none;
}
 
@media(max-width: 991px) {
  .modal {
    padding: 20px;
  }
  .modal__content {
    width: 100%;
  }
  .hero-market-panel {
    padding: 28px 24px;
  }
  .hero-market-title {
    font-size: 24px;
  }
  .hero-market-chart,
  .hero-market-chart__embed {
    min-height: 320px;
  }
  .hero-section {
    padding: 100px 20px 60px;
  }
  .hero-title-chinese {
    font-size: 48px;
  }
  .hero-title-ticker {
    font-size: 64px;
  }
  .about-section {
    padding: 80px 20px;
  }
  .tokenomics-section {
    padding: 80px 20px;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .buy-section {
    padding: 80px 20px;
  }
  .buy-steps {
    grid-template-columns: 1fr;
  }
  .roadmap-section {
    padding: 80px 20px;
  }
  .roadmap-item {
    padding-left: 70px;
  }
  .roadmap-marker {
    width: 50px;
    height: 50px;
  }
  .community-section {
    padding: 80px 20px;
  }
  .thq-grid-4 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width: 767px) {
  .modal {
    padding: 16px;
  }
  .modal__content {
    border-radius: 20px;
  }
  .hero-market-panel {
    padding: 24px 20px;
    gap: 24px;
  }
  .hero-market-title {
    font-size: 22px;
  }
  .hero-market-chart,
  .hero-market-chart__embed {
    min-height: 280px;
  }
  .hero-market-table th,
  .hero-market-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .button-link {
    padding-top: var(--dl-layout-space-oneandhalfunits);
    padding-bottom: var(--dl-layout-space-oneandhalfunits);
  }
  .hero-stats {
    gap: 15px;
  }
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }
  .hero-title-chinese {
    font-size: 36px;
  }
  .hero-title-ticker {
    font-size: 48px;
  }
  .hero-stat {
    padding: 10px 16px;
    font-size: 14px;
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  .contract-box {
    text-align: center;
    flex-direction: column;
  }
  .section-title {
    font-size: 36px;
  }
  .about-feature {
    text-align: center;
    flex-direction: column;
  }
  .buy-contract-box {
    text-align: center;
    flex-direction: column;
  }
  .footer-top {
    text-align: center;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-contract-box {
    text-align: center;
    flex-direction: column;
  }
  .thq-section-padding {
    padding: var(--dl-layout-space-threeunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr 1fr;
  }
  .thq-card {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-oneandhalfunits);
    grid-template-columns: 1fr;
  }
  .thq-img-scale {
    width: 100%;
  }
}

@media(max-width: 479px) {
  .modal {
    padding: 12px;
  }
  .modal__close {
    top: 12px;
    right: 12px;
  }
  .hero-market-panel {
    padding: 20px 16px;
  }
  .hero-market-title {
    font-size: 20px;
  }
  .hero-market-chart,
  .hero-market-chart__embed {
    min-height: 240px;
  }
  .hero-market-table {
    min-width: 100%;
  }
  .hero-market-table th,
  .hero-market-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
  .accordion {
    padding-top: var(--dl-layout-space-oneandhalfunits);
    padding-bottom: var(--dl-layout-space-oneandhalfunits);
  }
  .hero-section {
    padding: 80px 15px 40px;
  }
  .hero-title-chinese {
    font-size: 28px;
  }
  .hero-title-ticker {
    font-size: 40px;
  }
  .section-title {
    font-size: 28px;
  }
  .tokenomics-card {
    padding: 25px 20px;
  }
  .buy-step {
    padding: 25px 20px;
  }
  .roadmap-content {
    padding: 25px 20px;
  }
  .thq-section-padding {
    padding: var(--dl-layout-space-oneandhalfunits);
  }
  .thq-flex-column {
    gap: var(--dl-layout-space-unit);
  }
  .thq-flex-row {
    gap: var(--dl-layout-space-unit);
  }
  .thq-grid-6 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-5 {
    grid-gap: var(--dl-layout-space-unit);
    grid-template-columns: 1fr 1fr;
  }
  .thq-grid-3 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    grid-template-columns: 1fr;
  }
  .thq-grid-4 {
    grid-gap: var(--dl-layout-space-unit);
    align-items: center;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .thq-grid-2 {
    grid-gap: var(--dl-layout-space-unit);
  }
  .thq-grid-auto-300 {
    grid-template-columns: 1fr;
  }
}
