/* [project]/app/styles/index.css [app-client] (css) */
.hero {
  background: linear-gradient(180deg, #0a0a0f 0%, var(--bg-primary) 100%);
  text-align: center;
  align-items: center;
  min-height: 500px;
  padding: 120px 0 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% -20%, #f0b90b26 0%, #0000 50%), radial-gradient(60% 40% at 20% 100%, #f0b90b1a 0%, #0000 50%), radial-gradient(60% 40% at 80% 100%, #f0b90b14 0%, #0000 50%);
  animation: 8s ease-in-out infinite alternate heroGlow;
  position: absolute;
  inset: 0;
}

@keyframes heroGlow {
  0% {
    opacity: .7;
  }

  100% {
    opacity: 1;
  }
}

.hero:after {
  content: "";
  pointer-events: none;
  background-color: #0000;
  background-image: linear-gradient(90deg, #f0b90b08 1px, #0000 1px), linear-gradient(0deg, #f0b90b08 1px, #0000 1px);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 80px 80px;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  animation: 20s linear infinite gridMove;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(100% 100% at 50% 0, #000 0%, #0000 70%);
  mask-image: radial-gradient(100% 100% at 50% 0, #000 0%, #0000 70%);
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 80px 80px;
  }
}

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

.hero__canvas {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.text-reveal {
  background: linear-gradient(90deg, #f0b90b 0%, #fcd535 25%, #fff 50%, #ffffff4d 50.1% 100%) 100% 0 / 200% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 1.5s ease-out forwards textReveal;
  display: inline-block;
}

.text-reveal--delay {
  background-position: 100% 0;
  animation-delay: .3s;
}

@keyframes textReveal {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.hero__title-main .text-reveal {
  text-shadow: 0 0 40px #f0b90b00;
  animation: 1.5s ease-out forwards textReveal, 3s ease-in-out 1.5s infinite textGlowPulse;
}

@keyframes textGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px #f0b90b4d);
  }

  50% {
    filter: drop-shadow(0 0 40px #f0b90b99);
  }
}

.hero__title {
  margin-bottom: var(--spacing-lg);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  animation: 1s ease-out titleFadeIn;
}

.hero__title-main {
  background: linear-gradient(90deg, #fff 0%, #f0b90b 50%, #fcd535 100%) 0 0 / 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 4s linear infinite titleShine;
  display: block;
}

.hero__title-sub {
  color: var(--text-primary);
  margin-top: var(--spacing-xs);
  font-size: 48px;
  font-weight: 700;
  display: block;
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleShine {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.hero__subtitle {
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto var(--spacing-xl);
  font-size: 18px;
  line-height: 1.9;
}

.subtitle-line {
  opacity: 0;
  animation: .8s ease-out forwards subtitleLineIn;
  display: block;
  transform: translateY(15px);
}

.subtitle-line--1 {
  animation-delay: .8s;
}

.subtitle-line--2 {
  animation-delay: 1.1s;
}

@keyframes subtitleLineIn {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    filter: blur();
    transform: translateY(0);
  }
}

.highlight-num {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.highlight-num:after {
  content: "";
  background: linear-gradient(90deg, var(--color-primary), transparent);
  transform-origin: 0;
  width: 100%;
  height: 2px;
  animation: .6s ease-out forwards underlineGrow;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}

.subtitle-line--1 .highlight-num:first-of-type:after {
  animation-delay: 1.3s;
}

.subtitle-line--1 .highlight-num:nth-of-type(2):after {
  animation-delay: 1.5s;
}

.subtitle-line--2 .highlight-num:after {
  animation-delay: 1.7s;
}

@keyframes underlineGrow {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.highlight-num {
  animation: 2s ease-in-out 2s infinite numGlow;
}

@keyframes numGlow {
  0%, 100% {
    text-shadow: 0 0 5px #f0b90b4d;
  }

  50% {
    text-shadow: 0 0 15px #f0b90b99, 0 0 30px #f0b90b4d;
  }
}

.hero__cta {
  justify-content: center;
  gap: var(--spacing-md);
  animation: 1s ease-out .4s both ctaFadeIn;
  display: flex;
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__cta .btn--primary {
  background: linear-gradient(135deg, #f0b90b 0%, #fcd535 100%);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.hero__cta .btn--primary:before {
  content: "";
  background: linear-gradient(90deg, #0000, #ffffff4d, #0000);
  width: 100%;
  height: 100%;
  animation: 3s infinite btnShine;
  position: absolute;
  top: 0;
  left: -100%;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

.hero__cta .btn--secondary {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #f0b90b0d;
  border: 1px solid #f0b90b4d;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
}

.hero__cta .btn--secondary:hover {
  border-color: var(--color-primary);
  background: #f0b90b1a;
}

.hero__stats {
  border-top: 1px solid #f0b90b1a;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  padding-top: 40px;
  animation: 1s ease-out .6s both statsFadeIn;
  display: flex;
}

@keyframes statsFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-primary);
  display: block;
}

.hero__stat-label {
  color: var(--text-tertiary);
  margin-top: 4px;
  font-size: 13px;
}

.hero__floating {
  pointer-events: none;
  position: absolute;
}

.hero__floating-coin {
  width: 60px;
  height: 60px;
  color: var(--color-primary);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background: linear-gradient(135deg, #f0b90b33 0%, #f0b90b0d 100%);
  border: 1px solid #f0b90b33;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  animation: 6s ease-in-out infinite coinFloat;
  display: flex;
  position: absolute;
}

.hero__floating-coin:first-child {
  animation-delay: 0s;
  top: 15%;
  left: 10%;
}

.hero__floating-coin:nth-child(2) {
  width: 50px;
  height: 50px;
  font-size: 20px;
  animation-delay: -2s;
  top: 25%;
  right: 12%;
}

.hero__floating-coin:nth-child(3) {
  width: 45px;
  height: 45px;
  font-size: 18px;
  animation-delay: -4s;
  bottom: 30%;
  left: 8%;
}

.hero__floating-coin:nth-child(4) {
  animation-delay: -1s;
  bottom: 25%;
  right: 10%;
}

@keyframes coinFloat {
  0%, 100% {
    transform: translateY(0)rotate(0);
  }

  50% {
    transform: translateY(-20px)rotate(10deg);
  }
}

.flash-up {
  animation: .3s ease-out flashUp;
}

.flash-down {
  animation: .3s ease-out flashDown;
}

@keyframes flashUp {
  0% {
    color: var(--color-long);
    background: #16c78433;
  }

  100% {
    color: inherit;
    background: none;
  }
}

@keyframes flashDown {
  0% {
    color: var(--color-short);
    background: #ea394333;
  }

  100% {
    color: inherit;
    background: none;
  }
}

.ws-connected {
  position: relative;
}

.ws-connected:after {
  content: "";
  background: var(--color-long);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s infinite pulse;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%)scale(1);
  }

  50% {
    opacity: .5;
    transform: translateY(-50%)scale(1.2);
  }
}

.market-overview {
  background: linear-gradient(#f0b90b08 0%, #0000 100%);
  border-bottom: 1px solid #f0b90b1a;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.market-overview:before, .market-overview:after {
  content: "";
  z-index: 2;
  pointer-events: none;
  width: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.market-overview:before {
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
  left: 0;
}

.market-overview:after {
  background: linear-gradient(-90deg, var(--bg-primary) 0%, transparent 100%);
  right: 0;
}

.market-ticker {
  gap: 16px;
  width: max-content;
  animation: 30s linear infinite tickerScroll;
  display: flex;
}

.market-ticker:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, #161a1ee6 0%, #161a1eb3 100%);
  border: 1px solid #f0b90b26;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 12px 20px;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.ticker-item:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #f0b90b1a 0%, #0000 50%);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.ticker-item:hover {
  border-color: #f0b90b66;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #f0b90b26;
}

.ticker-item:hover:before {
  opacity: 1;
}

.ticker-item__icon {
  color: #0b0e11;
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  position: relative;
  box-shadow: 0 2px 8px #0000004d;
}

.ticker-item__info {
  z-index: 1;
  flex: 1;
  position: relative;
}

.ticker-item__symbol {
  color: #fff;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.ticker-item__symbol:after {
  content: "";
  background: #0ecb81;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s ease-in-out infinite livePulse;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.2);
  }
}

.ticker-item__pair {
  color: #848e9c;
  margin-top: 2px;
  font-size: 11px;
}

.ticker-item__price {
  text-align: right;
  z-index: 1;
  position: relative;
}

.ticker-item__value {
  color: #fff;
  font-family: IBM Plex Mono, monospace;
  font-size: 15px;
  font-weight: 600;
}

.ticker-item__change {
  border-radius: 4px;
  margin-top: 2px;
  padding: 2px 6px;
  font-family: IBM Plex Mono, monospace;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.ticker-item__change.num-positive {
  color: #0ecb81;
  background: #0ecb811a;
}

.ticker-item__change.num-negative {
  color: #f6465d;
  background: #f6465d1a;
}

.price-table {
  background: var(--bg-primary);
  padding: 40px 0 30px;
}

.price-table__header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  display: flex;
}

.price-table__title-section {
  align-items: center;
  gap: 12px;
  display: flex;
}

.price-table__title {
  color: #eaecef;
  letter-spacing: -.02em;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.price-table__badge {
  color: #f0b90b;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f0b90b33 0%, #f0b90b1a 100%);
  border: 1px solid #f0b90b4d;
  border-radius: 20px;
  align-items: center;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.price-table__search {
  position: relative;
}

.price-table__search input {
  color: #eaecef;
  background: #2b313980;
  border: 1px solid #0000;
  border-radius: 8px;
  width: 240px;
  padding: 10px 12px 10px 40px;
  font-size: 13px;
  transition: all .2s;
}

.price-table__search input:focus {
  background: #2b3139cc;
  border-color: #f0b90b80;
  outline: none;
}

.price-table__search input::placeholder {
  color: #5e6673;
}

.price-table__search-icon {
  color: #5e6673;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.market-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.market-table thead {
  z-index: 10;
  position: sticky;
  top: 64px;
}

.market-table th {
  text-align: left;
  color: #848e9c;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #161a1e;
  border-bottom: 1px solid #2b3139;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 500;
}

.market-table th:first-child {
  border-radius: 8px 0 0;
  padding-left: 20px;
}

.market-table th:last-child {
  text-align: right;
  border-radius: 0 8px 0 0;
  padding-right: 20px;
}

.market-table td {
  border-bottom: 1px solid #2b313980;
  padding: 16px;
  transition: background .15s;
}

.market-table td:first-child {
  padding-left: 20px;
}

.market-table td:last-child {
  padding-right: 20px;
}

.market-table tr {
  cursor: pointer;
}

.market-table tbody tr {
  transition: background .15s;
}

.market-table tbody tr:hover {
  background: #f0b90b08;
}

.market-table tbody tr:hover td {
  border-bottom-color: #f0b90b1a;
}

.market-table__pair {
  align-items: center;
  gap: 12px;
  display: flex;
}

.market-table__coin-icon {
  color: #0b0e11;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 2px 8px #0003;
}

.market-table__coin-info {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.market-table__coin-name {
  color: #eaecef;
  font-size: 14px;
  font-weight: 600;
}

.market-table__coin-base {
  color: #5e6673;
  font-size: 11px;
}

.market-table__price {
  color: #eaecef;
  font-family: IBM Plex Mono, monospace;
  font-size: 14px;
  font-weight: 500;
}

.market-table__change {
  border-radius: 4px;
  padding: 4px 8px;
  font-family: IBM Plex Mono, monospace;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.market-table__change.num-positive {
  color: #0ecb81;
  background: #0ecb811a;
}

.market-table__change.num-negative {
  color: #f6465d;
  background: #f6465d1a;
}

.market-table__volume {
  color: #848e9c;
  font-family: IBM Plex Mono, monospace;
  font-size: 13px;
}

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

.market-table__action .btn {
  color: #0b0e11;
  cursor: pointer;
  background: linear-gradient(135deg, #f0b90b 0%, #d4a50a 100%);
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}

.market-table__action .btn:hover {
  background: linear-gradient(135deg, #fcd535 0%, #f0b90b 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #f0b90b4d;
}

.mini-chart {
  width: 80px;
  height: 32px;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

.mini-chart--up path {
  stroke: var(--color-long);
  fill: none;
  stroke-width: 1.5px;
}

.mini-chart--down path {
  stroke: var(--color-short);
  fill: none;
  stroke-width: 1.5px;
}

.features {
  padding: 50px 0;
}

.features__title {
  text-align: center;
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-xxl);
}

.features__grid {
  gap: var(--spacing-xl);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-lg);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  font-size: 28px;
  display: flex;
}

.feature-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
}

.feature-card__desc {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.stats {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.stats__grid {
  gap: var(--spacing-xl);
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.stat-item__value {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.stat-item__label {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

.footer {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer__grid {
  gap: var(--spacing-xxl);
  grid-template-columns: 2fr repeat(3, 1fr);
  display: grid;
}

.footer__brand {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

.footer__desc {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  max-width: 300px;
  line-height: 1.6;
}

.footer__title {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.footer__links {
  gap: var(--spacing-sm);
  flex-direction: column;
  display: flex;
}

.footer__link {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

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

.footer__bottom {
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-color);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer__copy {
  color: var(--text-tertiary);
  font-size: var(--font-size-sm);
}

.footer__social {
  gap: var(--spacing-md);
  display: flex;
}

.footer__social-link {
  background: var(--bg-tertiary);
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: var(--bg-primary);
}

.global-trading {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0a0f 100%);
  align-items: center;
  min-height: 600px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.global-trading__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.grid-floor {
  background-color: #0000;
  background-image: linear-gradient(90deg, #f0b90b08 1px, #0000 1px), linear-gradient(0deg, #f0b90b08 1px, #0000 1px);
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat;
  background-size: 60px 60px;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  width: 200%;
  height: 400px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)perspective(500px)rotateX(60deg);
  -webkit-mask-image: linear-gradient(to top, #00000080 0%, #0000 100%);
  mask-image: linear-gradient(to top, #00000080 0%, #0000 100%);
}

.particles {
  position: absolute;
  inset: 0;
}

.global-trading__content {
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 80px var(--spacing-xl);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  display: grid;
  position: relative;
}

.global-trading__text {
  max-width: 500px;
}

.global-trading__title {
  margin-bottom: var(--spacing-lg);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(90deg, #f0b90b 0%, #fcd535 50%, #f0b90b 100%) 0 0 / 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s linear infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.global-trading__desc {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.global-trading__stats {
  gap: var(--spacing-xl);
  display: flex;
}

.gstat {
  flex-direction: column;
  display: flex;
}

.gstat__value {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--color-primary);
  display: inline;
}

.gstat__unit {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 600;
}

.gstat__label {
  font-size: var(--font-size-sm);
  color: var(--text-tertiary);
  margin-top: var(--spacing-xs);
}

.global-trading__visual {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gyroscope {
  width: 400px;
  height: 400px;
  transform-style: preserve-3d;
  animation: 6s ease-in-out infinite gyroFloat;
  position: relative;
}

@keyframes gyroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.gyroscope__ring {
  transform-style: preserve-3d;
  border: 3px solid #0000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
}

.gyroscope__ring--outer {
  border-color: #f0b90b99;
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  animation: 12s linear infinite ringRotateOuter;
  box-shadow: 0 0 30px #f0b90b4d, inset 0 0 30px #f0b90b1a;
}

.gyroscope__ring--middle {
  border-color: #f0b90b80;
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  animation: 10s linear infinite ringRotateMiddle;
  box-shadow: 0 0 25px #f0b90b40, inset 0 0 25px #f0b90b1a;
}

.gyroscope__ring--inner {
  border-color: #f0b90b66;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  animation: 8s linear infinite ringRotateInner;
  box-shadow: 0 0 20px #f0b90b33, inset 0 0 20px #f0b90b1a;
}

.ring-glow {
  background: linear-gradient(45deg, #0000 40%, #f0b90bcc 50%, #0000 60%);
  border-radius: 50%;
  animation: 3s linear infinite ringGlow;
  position: absolute;
  inset: -3px;
}

@keyframes ringGlow {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes ringRotateOuter {
  0% {
    transform: rotateX(70deg)rotateY(0);
  }

  100% {
    transform: rotateX(70deg)rotateY(360deg);
  }
}

@keyframes ringRotateMiddle {
  0% {
    transform: rotateX(60deg)rotateZ(30deg)rotateY(0);
  }

  100% {
    transform: rotateX(60deg)rotateZ(30deg)rotateY(-360deg);
  }
}

@keyframes ringRotateInner {
  0% {
    transform: rotateX(50deg)rotateZ(-30deg)rotateY(0);
  }

  100% {
    transform: rotateX(50deg)rotateZ(-30deg)rotateY(360deg);
  }
}

.gyroscope__core {
  background: radial-gradient(circle at 30% 30%, #fcd535 0%, #f0b90b 40%, #c99a09 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  animation: 2s ease-in-out infinite corePulse;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 60px #f0b90b99, 0 0 100px #f0b90b4d, inset 0 -10px 30px #0000004d;
}

.core-icon {
  color: #0a0a0f;
  text-shadow: 0 2px 4px #0003;
  font-size: 48px;
  font-weight: 700;
}

.core-glow {
  background: radial-gradient(circle, #f0b90b66 0%, #0000 70%);
  border-radius: 50%;
  animation: 2s ease-in-out infinite alternate coreGlow;
  position: absolute;
  inset: -20px;
}

@keyframes corePulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes coreGlow {
  0% {
    opacity: .5;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.orbital {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  top: 50%;
  left: 50%;
}

.orbital span {
  background: #f0b90b;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  box-shadow: 0 0 20px #f0b90bcc;
}

.orbital--1 {
  animation: 8s linear infinite orbit1;
}

.orbital--1 span {
  margin-top: -4px;
  margin-left: -4px;
  top: 0;
  left: 50%;
}

.orbital--2 {
  animation: 10s linear infinite orbit2;
}

.orbital--2 span {
  margin-top: -4px;
  margin-right: -4px;
  top: 50%;
  right: 0;
}

.orbital--3 {
  animation: 12s linear infinite orbit3;
}

.orbital--3 span {
  margin-bottom: -4px;
  margin-left: -4px;
  bottom: 0;
  left: 50%;
}

.orbital--4 {
  animation: 9s linear infinite orbit4;
}

.orbital--4 span {
  margin-top: -4px;
  margin-left: -4px;
  top: 50%;
  left: 0;
}

.orbital--5 {
  animation: 11s linear infinite orbit5;
}

.orbital--5 span {
  top: 25%;
  right: 25%;
}

.orbital--6 {
  animation: 7s linear infinite orbit6;
}

.orbital--6 span {
  bottom: 25%;
  left: 25%;
}

@keyframes orbit1 {
  0% {
    transform: rotateX(70deg)rotateZ(0);
  }

  100% {
    transform: rotateX(70deg)rotateZ(360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotateX(60deg)rotateY(45deg)rotateZ(0);
  }

  100% {
    transform: rotateX(60deg)rotateY(45deg)rotateZ(-360deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: rotateX(80deg)rotateY(-30deg)rotateZ(0);
  }

  100% {
    transform: rotateX(80deg)rotateY(-30deg)rotateZ(360deg);
  }
}

@keyframes orbit4 {
  0% {
    transform: rotateX(50deg)rotateY(60deg)rotateZ(0);
  }

  100% {
    transform: rotateX(50deg)rotateY(60deg)rotateZ(-360deg);
  }
}

@keyframes orbit5 {
  0% {
    transform: rotateX(65deg)rotateY(-45deg)rotateZ(0);
  }

  100% {
    transform: rotateX(65deg)rotateY(-45deg)rotateZ(360deg);
  }
}

@keyframes orbit6 {
  0% {
    transform: rotateX(55deg)rotateY(30deg)rotateZ(0);
  }

  100% {
    transform: rotateX(55deg)rotateY(30deg)rotateZ(-360deg);
  }
}

.mini-footer {
  padding: var(--spacing-lg) 0;
  background: #0a0a0f;
  border-top: 1px solid #f0b90b1a;
}

.mini-footer__inner {
  color: var(--text-tertiary);
  font-size: var(--font-size-sm);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.mini-footer__links {
  gap: var(--spacing-lg);
  display: flex;
}

.mini-footer__links a {
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.mini-footer__links a:hover {
  color: var(--color-primary);
}

@media (max-width: 1200px) {
  .features__grid, .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .global-trading__content {
    text-align: center;
    padding: 60px var(--spacing-lg);
    grid-template-columns: 1fr;
  }

  .global-trading__text {
    max-width: 100%;
  }

  .global-trading__stats {
    justify-content: center;
  }

  .gyroscope {
    width: 350px;
    height: 350px;
  }

  .gyroscope__ring--outer {
    width: 330px;
    height: 330px;
    margin: -165px 0 0 -165px;
  }

  .gyroscope__ring--middle {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
  }

  .gyroscope__ring--inner {
    width: 190px;
    height: 190px;
    margin: -95px 0 0 -95px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__title-main {
    font-size: 32px;
  }

  .hero__title-sub {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn--primary, .hero__cta .btn--secondary {
    width: 100%;
    max-width: 280px;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero__stat {
    flex: 0 0 45%;
  }

  .hero__stat-value {
    font-size: 22px;
  }

  .hero__floating-coin {
    display: none;
  }

  .features__grid, .stats__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    gap: var(--spacing-xl);
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    gap: var(--spacing-md);
    text-align: center;
    flex-direction: column;
  }

  .market-ticker {
    flex-wrap: nowrap;
  }

  .price-table__search input {
    width: 200px;
  }

  .price-table {
    overflow-x: visible;
  }

  .market-table {
    width: 100%;
  }

  .market-table th:nth-child(4), .market-table td:nth-child(4), .market-table th:nth-child(5), .market-table td:nth-child(5), .market-table th:nth-child(6), .market-table td:nth-child(6) {
    display: none;
  }

  .market-table th, .market-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .market-table th:first-child, .market-table td:first-child {
    max-width: 120px;
  }

  .market-table__coin-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .market-table__pair {
    gap: 6px;
  }

  .market-table__coin-name {
    font-size: 12px;
  }

  .market-table__coin-base {
    font-size: 10px;
  }

  .market-table__price, .market-table__change {
    white-space: nowrap;
    font-size: 12px;
  }

  .market-table__action {
    text-align: right;
    padding-right: 8px !important;
  }

  .market-table__action .btn {
    padding: 5px 10px;
    font-size: 11px;
  }

  .price-table__header {
    gap: var(--spacing-md);
    flex-direction: column;
    align-items: flex-start;
  }

  .price-table__title-section {
    flex-wrap: wrap;
    gap: 8px;
  }

  .price-table__title {
    font-size: 18px;
  }

  .price-table__search, .price-table__search input {
    width: 100%;
  }

  .global-trading {
    min-height: auto;
    padding: 40px 0;
  }

  .global-trading__title {
    font-size: 36px;
  }

  .global-trading__stats {
    gap: var(--spacing-md);
    flex-direction: column;
  }

  .gyroscope {
    width: 280px;
    height: 280px;
  }

  .gyroscope__ring--outer {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
  }

  .gyroscope__ring--middle {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
  }

  .gyroscope__ring--inner {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .gyroscope__core {
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
  }

  .core-icon {
    font-size: 32px;
  }

  .mini-footer__inner {
    gap: var(--spacing-md);
    text-align: center;
    flex-direction: column;
  }
}

/*# sourceMappingURL=app_styles_index_0vii9dv.css.map*/