@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");
.navbar {
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transform: translateY(0) translateZ(0);
  height: auto;
  z-index: 9999;
}
.navbar-container {
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  font-family: Space Grotesk, sans-serif;
}
.navbar-container,
.navbar-logo {
  display: flex;
  align-items: center;
  position: relative;
}
.navbar-logo {
  text-decoration: none;
  color: #f0b90b;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  font-family: "Bree Serif", serif;
  text-shadow: 0 0 7px rgba(240, 185, 11, 0.8), 0 0 10px rgba(240, 185, 11, 0.6),
    0 0 21px rgba(240, 185, 11, 0.4);
  gap: 0.75rem;
}
.logo-image-container {
  position: relative;
  width: 40px;
  height: 40px;
  animation: logoFloat 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(240, 185, 11, 0.6));
  transition: all 0.3s ease;
  max-width: none;
}
.navbar-logo:hover .logo-image {
  filter: drop-shadow(0 0 12px rgba(240, 185, 11, 0.8));
  transform: scale(1.1) rotate(5deg);
}
@keyframes logoFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
  to {
    transform: translateY(0) rotate(0deg);
  }
}
.full-logo {
  display: block;
}
.short-logo {
  display: none;
}
.navbar-logo:hover {
  color: #f7cb45;
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.9),
    0 0 20px rgba(240, 185, 11, 0.7), 0 0 30px rgba(240, 185, 11, 0.5);
  transform: scale(1.05);
}
.navbar-logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.navbar-menu {
  display: flex;
  gap: 3rem;
  align-items: center;
  font-size: 1rem;
  position: relative;
}
.navbar-link {
  font-weight: 500;
  color: #f0b90b;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}
.navbar-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 185, 11, 0.8),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-link:hover:before {
  transform: scaleX(1);
}
.navbar-menu > a {
  transition: all 0.3s ease;
  color: #f0b90b;
  position: relative;
  text-decoration: none;
}
.navbar-menu > a:hover {
  color: #f7cb45;
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.6);
  transform: translateY(-2px);
}
.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.navbar-button {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(240, 185, 11, 0.3);
  border-radius: 7px;
  background: rgba(17, 24, 39, 0.95);
  color: #f0b90b;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.navbar-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 185, 11, 0.2),
    transparent
  );
  transition: 0.5s;
}
.navbar-button:hover:before {
  left: 100%;
}
.navbar-button:hover {
  transform: scale(1.05);
  border-color: rgba(240, 185, 11, 0.5);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.4), 0 0 40px rgba(240, 185, 11, 0.2);
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.6);
}
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }
}
@media (min-width: 641px) {
  .custom-close-link {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .navbar {
    padding: 0.75rem;
    min-height: 80px;
  }
  .full-logo {
    display: none;
  }
  .short-logo {
    display: block;
    font-size: 1.1rem;
  }
  .logo-image-container {
    width: 32px;
    height: 32px;
    margin-right: 0.25rem;
  }
  .logo-image {
    width: 100%;
    height: 100%;
  }
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 60px;
  }
  .navbar-logo-container {
    width: auto;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .navbar-logo {
    font-size: 1.25rem;
  }
  .navbar-logo-image {
    height: 30px;
    width: 30px;
  }
  .navbar-actions {
    width: auto;
    justify-content: flex-end;
  }
  .navbar-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
.add-base-button {
  transition: all 0.5s ease;
  color: #fff;
  border: 1px solid white;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  font-size: 0.65625rem;
  background-color: initial;
  padding: 6px;
  outline: none;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.add-base-button:hover {
  color: #001f3f;
  background-color: #fff;
}
.footer-text-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1.5px;
}
.footer-link-privacy {
  margin-right: 24px;
}
.footer-links-container {
  display: flex;
}
@media (max-width: 768px) {
  .footer-container {
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.85);
  }
  .footer-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .footer-row,
  .nav-row {
    justify-content: center;
  }
  .nav-row {
    flex-direction: row;
    gap: 24px;
  }
  .copyright-row {
    text-align: center;
  }
  .social-row {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    background: rgba(161, 248, 27, 0.05);
    padding: 10px;
    border-radius: 12px;
    margin-top: 8px;
  }
  .token-info {
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(240, 185, 11, 0.15);
  }
  .logo-copyright-container {
    flex-direction: column;
    gap: 6px;
  }
  .footer-logo {
    width: 20px;
    height: 20px;
  }
  .social-icons {
    gap: 20px;
  }
  .social-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 420px) {
  .nav-row {
    flex-direction: column;
    gap: 12px;
  }
  .footer-link-about {
    margin-bottom: 4px;
  }
  .footer-links-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .token-info {
    width: 90%;
    justify-content: center;
  }
  .footer-link-privacy {
    margin-right: 0;
  }
}
.footer-container {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 12px 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(161, 248, 27, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(161, 248, 27, 0.1);
  position: relative;
  overflow: hidden;
}
.footer-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(161, 248, 27, 0.2),
    rgba(240, 185, 11, 0.6),
    rgba(161, 248, 27, 0.2)
  );
  animation: border-flow 8s linear infinite;
}
@keyframes border-flow {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}
.footer-row {
  display: flex;
  align-items: center;
  min-height: 24px;
}
.copyright-row {
  gap: 16px;
}
.footer-logo {
  width: 15px;
  height: 15px;
  object-fit: contain;
  transition: all 0.3s ease;
}
.logo-copyright-container {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.logo-copyright-container:hover .footer-logo {
  transform: rotate(10deg) scale(1.1);
}
.copyright-text,
.copyright-year {
  color: white;
  font-size: 12px;
}
.copyright-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.copyright-rights {
  color: white;
  font-size: 12px;
}
.legal-link {
  color: #f0b90b;
  font-size: 12px;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.legal-link:hover {
  opacity: 0.8;
  color: #a1f81b;
}
.nav-row {
  gap: 24px;
}
.footer-link {
  color: #f0b90b;
  font-size: 12px;
  transition: all 0.2s ease;
}
.footer-link:hover {
  opacity: 1;
  color: #a1f81b;
  text-shadow: 0 0 5px rgba(161, 248, 27, 0.5);
}
.social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.social-icons {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: invert(81%) sepia(29%) saturate(2157%) hue-rotate(359deg)
    brightness(104%) contrast(102%);
}
.social-icon:hover {
  opacity: 1;
  transform: translateY(-3px) rotate(8deg);
  filter: invert(88%) sepia(27%) saturate(1164%) hue-rotate(48deg)
    brightness(103%) contrast(98%);
}
.token-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  background: rgba(161, 248, 27, 0.1);
  border: 1px solid rgba(240, 185, 11, 0.5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.token-info.copied {
  animation: copy-feedback 1s forwards;
}
@keyframes copy-feedback {
  0% {
    background: rgba(161, 248, 27, 0.1);
  }
  30% {
    background: rgba(161, 248, 27, 0.4);
    box-shadow: 0 0 15px rgba(161, 248, 27, 0.5);
  }
  to {
    background: rgba(161, 248, 27, 0.1);
  }
}
.token-info:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(240, 185, 11, 0.4) 0,
    rgba(161, 248, 27, 0.1) 30%,
    transparent 70%
  );
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}
.token-info:hover:after {
  opacity: 0.6;
  transform: scale(1);
}
.token-info:hover {
  background: rgba(161, 248, 27, 0.15);
  border-color: rgba(240, 185, 11, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 185, 11, 0.25);
}
.token-name {
  color: #f0b90b;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(240, 185, 11, 0.5);
  position: relative;
  z-index: 1;
  animation: token-pulse 3s infinite alternate;
}
@keyframes token-pulse {
  0% {
    text-shadow: 0 0 5px rgba(240, 185, 11, 0.3);
  }
  to {
    text-shadow: 0 0 8px rgba(240, 185, 11, 0.7);
  }
}
.token-address {
  color: white;
  font-size: 12px;
  font-family: DM Mono, monospace;
}
.copy-icon {
  width: 12px;
  height: 12px;
  opacity: 0.9;
  transition: all 0.2s ease;
  filter: invert(81%) sepia(29%) saturate(2157%) hue-rotate(359deg)
    brightness(104%) contrast(102%);
}
.token-info:hover .copy-icon {
  opacity: 1;
  filter: invert(88%) sepia(27%) saturate(1164%) hue-rotate(48deg)
    brightness(103%) contrast(98%);
}
@media (max-width: 1260px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    padding: 16px 60px;
  }
  .copyright-row {
    width: 100%;
  }
  .copyright-row,
  .nav-row,
  .social-row {
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .nav-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-link-about {
    display: block;
  }
  .footer-links-container {
    display: inline-block;
    white-space: nowrap;
  }
}
@media (max-width: 387px) {
  .copyright-text {
    gap: 4px;
  }
  .copyright-rights {
    display: block;
    text-align: center;
  }
  .footer-link-privacy {
    margin-right: 16px;
  }
}
.account-button,
.connect-button,
.network-error-button {
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.7) !important;
  border: 1px solid rgba(240, 185, 11, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  text-shadow: 0 0 7px rgba(240, 185, 11, 0.8), 0 0 10px rgba(240, 185, 11, 0.6),
    0 0 21px rgba(240, 185, 11, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  overflow: visible;
  padding: 0.5rem 1rem;
  font-family: Space Grotesk, ui-rounded, SF Pro Rounded, -apple-system,
    "system-ui", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  height: 36px;
  line-height: 1;
}
.account-button:hover,
.connect-button:hover,
.network-error-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.4), 0 0 40px rgba(240, 185, 11, 0.2) !important;
  background: rgba(0, 0, 0, 0.8) !important;
  text-shadow: 0 0 7px rgba(240, 185, 11, 0.9), 0 0 10px rgba(240, 185, 11, 0.7),
    0 0 21px rgba(240, 185, 11, 0.5) !important;
}
.wallet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0b90b;
  height: 100%;
  line-height: 1;
  position: relative;
}
.wallet-icon:after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  pointer-events: none;
}
.wallet-icon svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 2px rgba(240, 185, 11, 0.6));
  animation: subtle-pulse 3s ease-in-out infinite;
}
@keyframes subtle-pulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(240, 185, 11, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 4px rgba(240, 185, 11, 0.8));
  }
  to {
    filter: drop-shadow(0 0 2px rgba(240, 185, 11, 0.6));
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 2px rgba(240, 185, 11, 0.7);
  }
  50% {
    box-shadow: 0 0 6px rgba(240, 185, 11, 0.9);
  }
  to {
    box-shadow: 0 0 2px rgba(240, 185, 11, 0.7);
  }
}
.address-text {
  font-family: Space Grotesk, sans-serif;
  font-size: 0.9rem;
  color: #f0b90b;
  text-shadow: 0 0 7px rgba(240, 185, 11, 0.8), 0 0 10px rgba(240, 185, 11, 0.6);
  letter-spacing: 0.1em;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 100%;
  min-width: max-content;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(240, 185, 11, 0.3);
  border-radius: 7px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem;
  z-index: 9999;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 20px rgba(240, 185, 11, 0.2);
  animation: dropdownAppear 0.2s ease-out;
}
@keyframes dropdownAppear {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  color: #f7cb45;
  font-size: 0.9rem;
  font-family: Space Grotesk, sans-serif;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.dropdown-item svg {
  color: #f0b90b;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background: rgba(240, 185, 11, 0.1);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.6);
}
.dropdown-item:hover svg {
  filter: drop-shadow(0 0 4px rgba(240, 185, 11, 0.8));
}
.dropdown-item.disconnect {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(240, 185, 11, 0.2);
  padding-top: 0.75rem;
  color: rgb(248, 113, 113);
}
.dropdown-item.disconnect svg {
  color: rgb(248, 113, 113);
}
.dropdown-item.disconnect:hover {
  background: rgba(248, 113, 113, 0.1);
  text-shadow: 0 0 10px rgba(248, 113, 113, 0.6);
}
.dropdown-item.disconnect:hover svg {
  filter: drop-shadow(0 0 4px rgba(248, 113, 113, 0.8));
}
.network-error-button {
  background: rgba(220, 38, 38, 0.95) !important;
  border-color: rgba(220, 38, 38, 0.3) !important;
}
.wallet-dropdown-wrapper {
  position: relative;
}
[data-testid="rk-wallet-option-metaMask"]
  > div
  > div
  > div:last-child
  > div:last-child {
  display: none !important;
}
*,
::backdrop,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246/0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
} /*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/
*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}
:after,
:before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
pre,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: initial;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: initial;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: initial;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.hidden {
  display: none;
}
.min-h-screen {
  min-height: 100vh;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.gap-2 {
  gap: 0.5rem;
}
.border {
  border-width: 1px;
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.blur {
  --tw-blur: blur(8px);
}
.blur,
.drop-shadow {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0/0.1))
    drop-shadow(0 1px 1px rgb(0 0 0/0.06));
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
@font-face {
  font-family: D3Electronism;
  src: url(/fonts/D3Electronism.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.font-custom {
  font-family: D3Electronism, system-ui, sans-serif;
}
.title-text {
  font-family: "Bree Serif", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
  --background-start: #ffffff;
  --background-end: #ffffff;
  --binance-yellow: #f0b90b;
  --binance-yellow-hover: #f7cb45;
  --binance-yellow-light: #f3ca4d;
  --binance-yellow-dark: #d9a70a;
  --binance-black: #1e2026;
  --binance-black-dark: #0b0e11;
  --binance-accent: #f0b90b;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  isolation: isolate;
  background: var(--background-start);
}
input[type="email"],
input[type="number"],
input[type="text"],
textarea {
  font-size: 16px !important;
  max-height: 100%;
  -webkit-appearance: none;
  border-radius: 0.5rem;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
input[type="number"] {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
input[type="number"]:focus,
input[type="number"]:hover {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
body {
  font-family: var(--font-montserrat), system-ui, sans-serif;
  color: #ffffff;
}
#__next,
body {
  min-height: 100vh;
  position: relative;
}
#__next {
  background: var(--background-start);
}
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.background-image,
.background-wrapper {
  background-color: #000;
  pointer-events: none;
}
.background-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.background-image img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}
.godly-overlay {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  position: relative;
}
.godly-overlay:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0,
    rgba(240, 185, 11, 0.1) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 3;
  pointer-events: none;
}
.overlay-staking {
  background: rgba(17, 25, 40, 0.75);
  pointer-events: none;
}
.overlay-spell-game {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7)
  );
  pointer-events: none;
}
.content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  isolation: isolate;
}
.spacer-200 {
  height: 200px;
}
.spacer-150 {
  height: 150px;
}
.spacer-100 {
  height: 100px;
}
.spacer-50 {
  height: 50px;
}
.spacer-20 {
  height: 20px;
}
.black-shadow-wrap {
  text-shadow: -5px -5px 0 #000000, 5px -5px 0 #000000, -5px 5px 0 #000000,
    5px 5px 0 #000000, -5px 0 0 #000000, 5px 0 0 #000000, 0 -5px 0 #000000,
    0 5px 0 #000000;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--binance-yellow) 0,
    var(--binance-yellow-light) 50%,
    var(--binance-yellow) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 500px) {
  body,
  html {
    height: 100%;
    height: -webkit-fill-available;
  }
  .background-wrapper {
    height: 100vh;
    height: -webkit-fill-available;
  }
  .background-image img {
    object-fit: cover !important;
    object-position: center !important;
  }
  .how-to-buy-section {
    scroll-snap-type: none;
  }
  .step-card {
    scroll-snap-align: none;
    opacity: 1;
  }
  .step-card,
  .step-card:hover {
    transform: none;
  }
}
#__next,
.background-wrapper,
.content,
.min-h-screen,
body,
html,
main {
  background-color: #ffffff !important;
}
.background-wrapper {
  z-index: -1;
}
.background-image {
  opacity: 0;
}
.godly-overlay,
.overlay {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.godly-overlay:after,
.overlay:after {
  display: none !important;
}
.isolate {
  isolation: isolate;
}
