:root {
  --bg: #050b13;
  --bg-soft: #08121f;
  --card: #0b1726;
  --card-soft: #0e1c2d;
  --text: #f5f9fc;
  --muted: #8295a9;
  --primary: #28d8ff;
  --secondary: #7165ff;
  --border: rgba(255,255,255,.075);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;

  color: var(--text);
  background: var(--bg);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-glow {
  position: fixed;
  z-index: -1;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  filter: blur(130px);
  pointer-events: none;
}

.glow-one {
  top: -250px;
  left: -180px;

  background: rgba(40,216,255,.11);
}

.glow-two {
  top: 35%;
  right: -300px;

  background: rgba(113,101,255,.1);
}


/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;

  top: 0;
  left: 0;
  right: 0;

  border-bottom: 1px solid var(--border);

  background: rgba(5,11,19,.82);

  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(calc(100% - 40px),var(--max));
  height: 78px;

  margin: auto;

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-weight: 850;
}

.brand img {
  width: 39px;
  height: 39px;

  object-fit: contain;
}

.brand span {
  font-size: 18px;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-navigation a {
  color: #9dafc0;

  font-size: 12px;
  font-weight: 650;

  transition: .2s ease;
}

.desktop-navigation a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-download {
  padding: 11px 18px;

  border-radius: 10px;

  color: #001018;

  background: var(--primary);

  font-size: 11px;
  font-weight: 850;
}

.menu-toggle {
  width: 43px;
  height: 43px;

  display: none;

  padding: 10px;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;

  display: block;

  margin: 4px 0;

  background: white;
}

.mobile-navigation {
  display: none;
}


/* HERO */

.hero {
  width: min(calc(100% - 40px),var(--max));

  min-height: 850px;

  margin: auto;
  padding: 155px 0 90px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--primary);

  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2px;
}

.hero h1 {
  max-width: 720px;

  margin: 18px 0 24px;

  font-size: clamp(55px,6.8vw,92px);
  line-height: .98;
  letter-spacing: -5px;
}

.hero h1 span,
.section-heading h2 span,
.download-banner h2 span {
  color: #71869b;
}

.hero-lead {
  max-width: 600px;

  margin: 0;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;

  margin-top: 33px;
}

.primary-button,
.secondary-button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 23px;

  border-radius: 12px;

  font-size: 12px;
  font-weight: 850;
}

.primary-button {
  color: #001018;
  background: var(--primary);
}

.secondary-button {
  border: 1px solid var(--border);

  background: rgba(255,255,255,.025);
}

.hero-points {
  display: flex;
  gap: 30px;

  margin-top: 44px;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 4px;

  font-size: 11px;
}

.hero-points span {
  color: #697e93;

  font-size: 9px;
}

.hero-device {
  position: relative;

  min-height: 620px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  position: relative;

  width: min(330px,78vw);

  padding: 8px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.14);
  border-radius: 39px;

  background: #05090e;

  box-shadow:
    0 45px 100px rgba(0,0,0,.5),
    0 0 80px rgba(40,216,255,.06);

  transform: rotate(2deg);
}

.phone-frame img {
  width: 100%;

  display: block;

  border-radius: 31px;
}

.phone-speaker {
  position: absolute;
  z-index: 5;

  top: 17px;
  left: 50%;

  width: 75px;
  height: 20px;

  border-radius: 30px;

  background: #05080d;

  transform: translateX(-50%);
}

.floating-chip {
  position: absolute;
  z-index: 5;

  padding: 12px 16px;

  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;

  background: rgba(10,24,39,.92);

  box-shadow: 0 20px 45px rgba(0,0,0,.3);

  font-size: 10px;
  font-weight: 800;

  animation: floatChip 4s ease-in-out infinite;
}

.floating-chip span {
  margin-right: 6px;

  color: var(--primary);
}

.chip-one {
  top: 18%;
  left: 0;
}

.chip-two {
  right: 0;
  bottom: 20%;

  animation-delay: -2s;
}

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

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


/* SHARED SECTIONS */

.product-intro,
.home-features,
.wallet-gallery,
.download-banner {
  width: min(calc(100% - 40px),var(--max));

  margin: auto;
  padding: 120px 0;
}

.section-heading {
  max-width: 730px;

  margin-bottom: 55px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 0;

  font-size: clamp(40px,5vw,68px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.section-heading p {
  max-width: 650px;

  margin: 22px auto 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.75;
}


/* PRODUCT SCREENS */

.screen-showcase {
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 0;
}

.product-screen {
  width: 275px;

  padding: 0;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;

  background: #080e16;

  cursor: zoom-in;

  box-shadow: 0 35px 70px rgba(0,0,0,.4);

  transition: .3s ease;
}

.product-screen img {
  width: 100%;

  display: block;
}

.product-screen:hover {
  z-index: 10;

  transform: translateY(-12px) scale(1.025);
}

.screen-center {
  position: relative;
  z-index: 3;

  width: 315px;
}

.screen-left {
  transform: rotate(-7deg) translateX(35px);
}

.screen-right {
  transform: rotate(7deg) translateX(-35px);
}


/* FEATURE LINKS */

.home-features {
  border-top: 1px solid var(--border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.feature-panel {
  min-height: 280px;

  display: flex;
  flex-direction: column;

  padding: 27px;

  border: 1px solid var(--border);
  border-radius: 21px;

  background:
    linear-gradient(
      145deg,
      rgba(14,29,47,.9),
      rgba(7,16,27,.9)
    );

  transition: .25s ease;
}

.feature-panel:hover {
  transform: translateY(-5px);

  border-color: rgba(40,216,255,.2);
}

.panel-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  margin-bottom: 28px;

  border-radius: 13px;

  color: var(--primary);

  background: rgba(40,216,255,.07);
}

.feature-panel h3 {
  margin: 0;

  font-size: 24px;
}

.feature-panel p {
  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}

.feature-panel strong {
  margin-top: auto;

  color: var(--primary);

  font-size: 10px;
}


/* GALLERY */

.wallet-gallery {
  border-top: 1px solid var(--border);
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}

.gallery-screen {
  padding: 0;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: #08111c;

  cursor: zoom-in;

  transition: .25s ease;
}

.gallery-screen:hover {
  transform: translateY(-8px);
}

.gallery-screen img {
  width: 100%;

  display: block;
}


/* DOWNLOAD */

.download-banner {
  margin-bottom: 100px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding-left: 55px;
  padding-right: 55px;

  border: 1px solid rgba(40,216,255,.13);
  border-radius: 30px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(40,216,255,.1),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #0c1929,
      #07111d
    );
}

.download-banner h2 {
  max-width: 650px;

  margin: 13px 0;

  font-size: clamp(37px,5vw,62px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.download-banner p {
  max-width: 600px;

  color: var(--muted);

  line-height: 1.7;
}

.download-banner-actions {
  min-width: 210px;

  display: grid;
  gap: 10px;
}


/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);

  background: #040910;
}

.footer-grid {
  width: min(calc(100% - 40px),var(--max));

  margin: auto;
  padding: 70px 0;

  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 380px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.7;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid strong {
  margin-bottom: 7px;

  font-size: 11px;
}

.footer-grid > div:not(.footer-brand) a {
  color: #71859a;

  font-size: 11px;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-bottom {
  width: min(calc(100% - 40px),var(--max));

  margin: auto;
  padding: 25px 0;

  display: flex;
  justify-content: space-between;
  gap: 30px;

  border-top: 1px solid var(--border);

  color: #566b80;

  font-size: 9px;
}


/* LIGHTBOX */

.screen-lightbox {
  position: fixed;
  z-index: 5000;

  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 25px;

  background: rgba(0,0,0,.94);
}

.screen-lightbox.open {
  display: flex;
}

.screen-lightbox img {
  width: auto;
  max-width: min(540px,90vw);
  max-height: 91vh;

  border-radius: 24px;

  box-shadow: 0 50px 120px rgba(0,0,0,.7);
}

.screen-lightbox button {
  position: absolute;

  top: 25px;
  right: 25px;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;

  color: white;
  background: rgba(255,255,255,.08);

  cursor: pointer;

  font-size: 22px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-navigation {
    position: absolute;

    top: 78px;
    left: 20px;
    right: 20px;

    padding: 15px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: rgba(6,14,24,.98);

    box-shadow: 0 30px 80px rgba(0,0,0,.5);
  }

  .mobile-navigation.open {
    display: grid;
  }

  .mobile-navigation a {
    padding: 13px;

    border-radius: 9px;

    color: #b6c5d4;

    font-size: 13px;
  }

  .mobile-navigation a:hover {
    background: rgba(255,255,255,.04);
  }

  .hero {
    grid-template-columns: 1fr;

    padding-top: 145px;

    text-align: center;
  }

  .hero-content {
    max-width: 800px;

    margin: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-device {
    min-height: 580px;
  }

  .feature-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .gallery-track {
    grid-template-columns: repeat(3,1fr);
  }

}


@media (max-width: 700px) {

  .nav-shell {
    width: calc(100% - 28px);
    height: 70px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .mobile-navigation {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .nav-download {
    display: none;
  }

  .hero {
    width: calc(100% - 30px);

    min-height: auto;

    padding-top: 125px;
  }

  .hero h1 {
    font-size: clamp(48px,15vw,70px);
    letter-spacing: -3.5px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    text-align: left;
  }

  .product-intro,
  .home-features,
  .wallet-gallery,
  .download-banner {
    width: calc(100% - 30px);

    padding-top: 90px;
    padding-bottom: 90px;
  }

  .screen-showcase {
    min-height: auto;

    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 7px;
  }

  .product-screen,
  .screen-center {
    width: 100%;

    border-radius: 15px;

    transform: none;
  }

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

  .gallery-track {
    grid-template-columns: repeat(2,1fr);
  }

  .download-banner {
    display: grid;

    padding-left: 25px;
    padding-right: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

}


@media (max-width: 420px) {

  .brand span {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .floating-chip {
    display: none;
  }

  .gallery-track {
    gap: 8px;
  }

}


@media (prefers-reduced-motion: reduce) {

  * {
    scroll-behavior: auto !important;

    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;
  }

}
/* =========================================================
   USTARCOIN FULL PAGE LAYOUT
   ========================================================= */

.page-hero {
  width: min(calc(100% - 40px),var(--max));
  min-height: 780px;

  margin: auto;
  padding: 155px 0 90px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.page-hero-copy h1 {
  max-width: 680px;

  margin: 17px 0 24px;

  font-size: clamp(50px,6vw,82px);
  line-height: 1;
  letter-spacing: -4px;
}

.page-hero-copy > p {
  max-width: 610px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.page-screen-stack {
  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page-screen {
  width: 220px;

  padding: 0;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;

  background: #080e16;

  box-shadow: 0 30px 60px rgba(0,0,0,.35);

  cursor: zoom-in;

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.page-screen:nth-child(1) {
  transform: rotate(-8deg) translateX(45px);
}

.page-screen:nth-child(2) {
  position: relative;
  z-index: 3;

  width: 265px;
}

.page-screen:nth-child(3) {
  transform: rotate(8deg) translateX(-45px);
}

.page-screen:hover {
  z-index: 10;

  border-color: rgba(40,216,255,.25);

  transform: translateY(-10px) scale(1.02);
}

.page-screen img {
  width: 100%;
  display: block;
}


/* PAGE SECTIONS */

.page-content,
.page-interface,
.market-shell,
.page-download-block {
  width: min(calc(100% - 40px),var(--max));

  margin: auto;
  padding: 110px 0;

  border-top: 1px solid var(--border);
}


/* PAGE CARDS */

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.page-card {
  min-height: 255px;

  padding: 28px;

  border: 1px solid var(--border);
  border-radius: 21px;

  background:
    linear-gradient(
      145deg,
      rgba(13,27,44,.92),
      rgba(6,15,25,.92)
    );

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.page-card:hover {
  transform: translateY(-5px);

  border-color: rgba(40,216,255,.18);
}

.page-card-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  margin-bottom: 26px;

  border-radius: 12px;

  color: var(--primary);

  background: rgba(40,216,255,.07);
}

.page-card h3 {
  margin: 0 0 12px;

  font-size: 22px;
}

.page-card p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.7;
}


/* ACTUAL WALLET SCREENSHOTS */

.page-interface-grid {
  max-width: 850px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.page-interface-grid .page-screen {
  width: 100%;

  border-radius: 24px;

  transform: none;
}


/* DOWNLOAD PAGE */

.page-download-block {
  margin-bottom: 100px;

  padding: 50px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  border: 1px solid rgba(40,216,255,.15);
  border-radius: 28px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(40,216,255,.09),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      rgba(40,216,255,.06),
      rgba(113,101,255,.04)
    );
}

.page-download-block h2 {
  margin: 12px 0;

  font-size: clamp(35px,5vw,58px);
  letter-spacing: -2px;
}

.page-download-block p {
  max-width: 620px;

  color: var(--muted);

  line-height: 1.7;
}


/* MARKET */

.market-shell {
  margin-bottom: 100px;
}

.market-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-bottom: 30px;
}

.market-header h2 {
  margin: 10px 0 0;

  font-size: clamp(37px,5vw,60px);
  letter-spacing: -2px;
}

.market-status {
  padding: 9px 13px;

  border: 1px solid rgba(40,216,255,.15);
  border-radius: 100px;

  color: var(--primary);

  background: rgba(40,216,255,.04);

  font-size: 9px;
  font-weight: 800;
}

.market-table {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 20px;
}

.market-row {
  min-height: 74px;

  display: grid;
  grid-template-columns: 1.4fr 1fr .7fr 1fr;
  align-items: center;
  gap: 20px;

  padding: 0 25px;

  border-bottom: 1px solid var(--border);
}

.market-row:last-child {
  border-bottom: 0;
}

.market-row-head {
  min-height: 48px;

  color: #60758b;

  background: rgba(255,255,255,.02);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.market-row strong {
  font-size: 13px;
}

.market-row small {
  margin-left: 7px;

  color: #63788d;

  font-size: 9px;
}

.market-row span {
  color: #a5b5c4;

  font-size: 12px;
}


/* TABLET */

@media (max-width: 950px) {

  .page-hero {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .page-hero-copy {
    max-width: 780px;

    margin: auto;
  }

  .page-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero .hero-actions {
    justify-content: center;
  }

  .page-card-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .page-hero {
    width: calc(100% - 30px);
    min-height: auto;

    padding-top: 125px;
  }

  .page-hero-copy h1 {
    font-size: clamp(45px,14vw,66px);
    letter-spacing: -3px;
  }

  .page-screen-stack {
    min-height: auto;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 7px;
  }

  .page-screen,
  .page-screen:nth-child(1),
  .page-screen:nth-child(2),
  .page-screen:nth-child(3) {
    width: 100%;

    border-radius: 14px;

    transform: none;
  }

  .page-content,
  .page-interface,
  .market-shell,
  .page-download-block {
    width: calc(100% - 30px);

    padding-top: 85px;
    padding-bottom: 85px;
  }

  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .page-interface-grid {
    gap: 8px;
  }

  .page-download-block {
    display: grid;

    padding-left: 25px;
    padding-right: 25px;
  }

  .market-header {
    display: grid;
  }

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

  .market-row {
    min-width: 650px;
  }

}

/* =========================================================
   FLOATING CRYPTO ASSET SYSTEM
   ========================================================= */

.crypto-float-layer {
  position: fixed;
  z-index: -1;

  inset: 0;

  overflow: hidden;

  pointer-events: none;
}

.crypto-coin {
  position: absolute;

  display: block;

  width: 55px;
  height: 55px;

  opacity: .16;

  filter:
    drop-shadow(
      0 0 22px rgba(40,216,255,.16)
    );

  will-change: transform;

  animation:
    cryptoFloat 15s ease-in-out infinite;
}


/* BTC */

.crypto-btc {
  top: 15%;
  left: 4%;

  width: 54px;
  height: 54px;

  animation-duration: 14s;
}


/* ETH */

.crypto-eth {
  top: 30%;
  right: 5%;

  width: 67px;
  height: 67px;

  animation-duration: 17s;
  animation-delay: -6s;
}


/* TON */

.crypto-ton {
  top: 57%;
  left: 7%;

  width: 46px;
  height: 46px;

  animation-duration: 20s;
  animation-delay: -9s;
}


/* SOL */

.crypto-sol {
  right: 8%;
  bottom: 15%;

  width: 62px;
  height: 62px;

  animation-duration: 18s;
  animation-delay: -3s;
}


/* TRX */

.crypto-trx {
  left: 47%;
  bottom: 4%;

  width: 41px;
  height: 41px;

  animation-duration: 22s;
  animation-delay: -12s;
}


@keyframes cryptoFloat {

  0% {
    transform:
      translate3d(0,0,0)
      rotate(0deg);
  }

  25% {
    transform:
      translate3d(16px,-22px,0)
      rotate(7deg);
  }

  50% {
    transform:
      translate3d(-8px,-45px,0)
      rotate(-5deg);
  }

  75% {
    transform:
      translate3d(18px,-18px,0)
      rotate(5deg);
  }

  100% {
    transform:
      translate3d(0,0,0)
      rotate(0deg);
  }

}


/* interactive cards */

.page-card,
.feature-panel {
  position: relative;

  overflow: hidden;
}

.page-card::before,
.feature-panel::before {
  content: "";

  position: absolute;

  width: 150px;
  height: 150px;

  top: -80px;
  right: -80px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(40,216,255,.08),
      transparent 70%
    );

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.page-card:hover::before,
.feature-panel:hover::before {
  transform: scale(1.7);

  opacity: .9;
}


/* Screenshot glow */

.page-screen,
.product-screen,
.gallery-screen {
  position: relative;
}

.page-screen:hover,
.product-screen:hover,
.gallery-screen:hover {
  border-color: rgba(40,216,255,.25);

  box-shadow:
    0 35px 90px rgba(0,0,0,.5),
    0 0 40px rgba(40,216,255,.07);
}


@media (max-width: 650px) {

  .crypto-coin {
    opacity: .09;

    transform: scale(.8);
  }

  .crypto-btc {
    left: -15px;
  }

  .crypto-eth {
    right: -20px;
  }

  .crypto-sol {
    right: -20px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .crypto-coin {
    animation: none !important;
  }

}


/* =========================================================
   USTARCOIN LIVE MARKET STYLES
   ========================================================= */

.market-table .market-row {
  grid-template-columns:
    minmax(150px,1.35fr)
    minmax(110px,1fr)
    minmax(85px,.7fr)
    minmax(120px,1fr)
    minmax(120px,1fr);
}

.market-positive {
  color: #39d98a !important;
  font-weight: 750;
}

.market-negative {
  color: #ff627d !important;
  font-weight: 750;
}

.market-error {
  color: #ff8a9c !important;
  border-color: rgba(255,98,125,.2) !important;
  background: rgba(255,98,125,.05) !important;
}

.market-loaded .market-row:not(.market-row-head) {
  transition:
    background .2s ease,
    transform .2s ease;
}

.market-loaded .market-row:not(.market-row-head):hover {
  background: rgba(40,216,255,.025);
}

@media (max-width: 800px) {

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

  .market-table .market-row {
    min-width: 800px;
  }

}
