@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Merriweather', sans-serif;
}

:root {
  --color-s1500: #08080F;
  --color-s1400: #0A0A16;
  --color-s1300: #0B0B1E;
  --color-s1200: #0D0C29;
  --color-s1100: #0F0B33;
  --color-s1000: #120940;
  --color-s900: #170950;
  --color-s800: #1E095F;
  --color-s700: #250E71;
  --color-s600: #2B1484;
  --color-s500: #371F9C;
  --color-s400: #4631B6;
  --color-s300: #5A4ACA;
  --color-s200: #776ED7;
  --color-s100: #9590E0;
  --color-s50: #B0AFE7;
  --color-s40: #C2C3EC;
  --color-s30: #D2D4F2;
  --color-s20: #DCDEF5;
  --color-s10: #E7E9F9;
}

body {
  font-size: 12px;
}

html {
  font-size: 12px;
}

h1 {
  font-family: var(--font-primary);
  font-size: 2.986rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

h2 {
  font-family: var(--font-primary);
  font-size: 2.488rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

h3 {
  font-family: var(--font-primary);
  font-size: 2.074rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

h4 {
  font-family: var(--font-primary);
  font-size: 1.728rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

h5 {
  font-family: var(--font-primary);
  font-size: 1.44rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

h6 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

p {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

small {
  font-family: var(--font-primary);
  font-size: 0.833rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

tiny {
  font-family: var(--font-primary);
  font-size: 0.694rem;
  font-weight: 600;
  line-height: 1.2rem;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}

.page {
  display: flex;
  flex-direction: column;
  background-color: white;
}

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

.row {
  display: flex;
  flex-direction: row;
}

h1, h2, h3, h4, h5, h6, p, i {
  color: var(--color-s1000);
}

.popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-container {
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}

.header-container {
  padding: 20px 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  gap: 1rem;
}

body {
  padding: 0;
  margin: 0;
  border: 0;
}

.ticker-row {
  padding: 4px 8px;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 20px;
}

.ticker-row:hover {
  background-color: var(--color-s400);
}

.ticker-symbol {
  width: 100px;
}

.ticker-price {
  text-align: left;
  padding: 4px 20px;
  width: 100px;
}

.ticker-change {
  padding: 8px;
  border-radius: 20px;
  min-width: 100px;
  text-align: center;
}

.price-positive {
  background-color: green;
}

.price-negative {
  background-color: red;
}

.header-logo {
  height: 40px;
}

button.header-login {
  height: auto;
  outline: 0;
  border: 0;
  padding: 12px 32px;
  color: white;
  border-radius: 20px;
  background-image: linear-gradient(45deg, #381F9C, #521999);
}

button.header-login:hover {
  background-color: orangered;
  cursor: pointer;
  background-image: linear-gradient(45deg, orange, red);
  transition: background-color ease 250ms,background-image ease 250ms;
}

.layout-layout {
  height: 100vh;
  background-color: #ebedf0;
  overflow-x: hidden;
}

.nav-container {
  background-color: white;
  margin: 20px;
  border-radius: 20px;
  padding-top: 20px;
}

.nav-button {
  border: 0;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 20px 20px;
  outline: none;
  border-bottom: 2px solid transparent;
  transition: border 150ms ease,background-color 150ms ease;
}

.nav-button:hover {
  background-color: var(--color-s500);
  color: white;
  cursor: pointer;
  border-bottom: 2px solid white;
}

.nav-button .title {
  display: block;
}

.auth-form-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.price-zero {
  background-color: yellow;
}

.ticker-icon {
  width: 24px;
  height: 24px;
  border-radius: 50px;
  object-fit: cover;
  transition: width 20px,height 20px,border-radius 20px;
}

button.ticker-item {
  display: flex;
  flex-direction: row;
  background: transparent;
  outline: 0;
  border: 0;
  align-items: center;
  cursor: pointer;
}

button.ticker-item:hover {
  background: rgba(200, 25, 0, 1);
  border-radius: 20px;
}

.auth-splash {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: gray;
  max-width: 600px;
  overflow-y: hidden;
  border-radius: 20px;
}

.auth-splash-container {
  background-color: red;
  display: flex;
}

input.primary {
  background-color: white;
  outline: 0;
  border: 0;
  padding: 8px 16px;
  border-radius: 20px;
}

input.primary:focus {
  background-color: var(--color-s40);
}

.auth-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 0.25rem;
}

.auth-login-title,.auth-signup-title {
  width: 100%;
  text-align: center;
  display: block;
  padding: 20px 4px;
}

.auth-cta-link {
  background: none;
  outline: none;
  border: none;
  font-size: 0.8rem;
  cursor: pointer;
  margin: 20px 0px;
}

.auth-cta-link:hover {
  color: var(--color-s400);
}

button.primary {
  outline: none;
  border: 0;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: var(--color-s500);
  color: white;
  cursor: pointer;
}

button.primary:hover {
  background-color: var(--color-s700);
}

.footer-copyright {
  text-align: center;
  font-size: .9rem;
  color: red;
  margin: 12px;
}

.alert-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  color: white;
  animation: slideDown 0.3s ease;
}

.alert-bar.info {
  background: #3498db;
}

.alert-bar.success {
  background: #27ae60;
}

.alert-bar.error {
  background: #e74c3c;
}

@keyframes slideDown {
  from: {
    transform: translateY(-100%);
  };
  to: {
    transform: translateY(0);
  };
}

.spot-trading-container {
  min-width: 600px;
  min-height: 400px;
  background-color: gray;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.spinplayer-preview-container {
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  justify-content: space-between;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1), 0 0 12px rgba(0, 0, 0, 0.07);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 60px 40px;
}

.show-product-view {
  outline: 0;
  border: 0;
  padding: 8px 8px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 1rem;
}

.show-product-view:hover {
  background-color: var(--color-s400);
  color: white;
  transition: background-color ease 200ms;
}

.player-preview-spacer {
  outline: 0;
  border: 0;
  background-color: transparent;
  height: 0px;
}

.product-view-main-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 4rem 2rem;
  border-radius: 20px;
  min-height: 40vh;
  overflow-x: hidden;
}

.image-product-preview {
  width: 60px;
  height: 80px;
  object-fit: cover;
}

.product-view-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 300px);
}

.product-view-details-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 20px 12px;
}

.product-view-cta-container {
  display: flex;
  flex-direction: row;
  height: 40px;
  gap: 1rem;
  justify-content: space-between;
}

.product-view-player {
  width: 100%;
}

.product-view-quantity-input {
  outline: 0;
  border: 0;
  background-color: var(--color-s20);
  border-radius: 20px;
  padding: 2px 20px;
  text-align: center;
  max-width: 80px;
}

.product-view-quantity-input:hover {
  background-color: var(--color-s50);
  transition: background-color ease 300ms;
}

button.product-view-addToCart {
  border: 0;
  width: 100%;
  border-radius: 20px;
  background: var(--color-s400);
  color: white;
}

button.product-view-addToCart:hover {
  background-color: var(--color-s600);
  cursor: pointer;
  transition: background-color ease 250ms;
}

.spinview-player-preview {
  cursor: grab;
  object-fit: cover;
}

button.close-preview {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 100px;
  background-color: var(--color-s100);
  border: 0;
  z-index: 100;
  cursor: pointer;
}

button.close-preview:hover {
  background-color: var(--color-s500);
  transition: background-color ease 300ms;
}

i.close-preview {
  color: white;
  font-size: 2rem;
}

.shop-grid > * {
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.spinview-player-preview-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 200px;
}

.product-view-video-container {
  display: flex;
  flex-direction: column;
  min-width: 40vw;
  min-height: 40vh;
  justify-content: center;
}

.contact-main-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 4rem;
  gap: 0.5rem;
  min-height: 40vh;
  max-width: 600px;
  background-color: var(--color-s500);
}

.contact-item-container {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.6rem 1.6rem;
  background-color: rgba(1,1,1,0.1);
  border-radius: 12px;
}

.contact-item-title {
  font-size: 1rem;
  font-weight: 400;
  color: white;
}

.contact-item-input {
  border: 4px solid transparent;
  padding: 1rem;
  border-radius: 4px;
  outline: 0;
  color: orangered;
}

.contact-item-textarea {
  border: 4px solid transparent;
  padding: 1rem;
  border-radius: 4px;
  outline: 0;
}

.contact-form-title {
  font-size: 2.2rem;
  line-height: 2.8rem;
  padding: 1rem;
  color: white;
}

.contact-buttons-container {
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background-color: transparent;
  align-items: ;
}

.contact-send-message {
  background-color: red;
  padding: 1rem 3rem;
  outline: 0;
  border: 0;
  border-radius: 50px;
  background-image: linear-gradient(15deg, white, white);
  color: black;
}

.contact-send-message:hover {
  color: white;
  cursor: pointer;
  background-image: linear-gradient(45deg, orange, red);
}

.contact-item-input:focus::placeholder,.contact-item-textarea:focus::placeholder {
  color: transparent;
}

.contact-item-input:focus,.contact-item-textarea:focus {
  background-color: var(--color-s20);
  border: 4px solid orangered;
}

.grid-hero-section {
  display: flex;
  width: auto;
  flex-direction: row;
  gap: 4rem;
}

.hero-section-container {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(0deg, var(--color-s1000), var(--color-s1500));
  padding: 100px 80px;
  max-height: 50vh;
  border-top-color: var(--color-s1300);
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 600px;
  padding: 0;
  width: 100%;
  align-items: center;
}

.platform-icon {
  width: 300px;
  max-height: 40px;
}

button.cta-action {
  padding: 20px 32px;
  border-radius: 100px;
  outline: 0;
  border: 0;
  font-weight: 600;
  background-image: linear-gradient(45deg, #381F9C, #521999);
  color: white;
  font-size: 1.4rem;
}

button.cta-action:hover {
  cursor: pointer;
  background-image: linear-gradient(45deg, orange, red);
  transition: background-image ease 250ms;
}

.cta-title {
  font-size: 4rem;
  line-height: 4.2rem;
  color: white;
  text-align: center;
}

.cta-subtitle {
  font-size: 2rem;
  line-height: 2.5rem;
  color: orange;
  text-align: center;
}

.hero-spinviewer-player-container {
  width: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.player-hero-desktop {
  display: flex;
}

.player-hero-mobile {
  display: none;
  background-color: white;
}

.footer-copyright-text {
  color: gray;
  font-weight: 400;
  font-size: 1rem;
}

.contact-form-main-container {
  display: flex;
  flex-direction: row;
  max-height: 80vh;
}

.contact-image-container {
  display: flex;
  max-width: 400px;
}

.contact-display-image {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .hero-section-container {
    max-height: 100%;
  }

  .hero-spinviewer-player-container {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .nav-button .title {
    display: none;
  }

  .product-view-grid {
    grid-template-columns: 1fr;
  }

  .hero-section-container {
    padding: 80px 20px;
  }

  .hero-cta-container {
    gap: 3rem;
    padding: 0 60px;
  }

  .cta-title {
    font-size: 3rem;
    line-height: 4rem;
  }

  .player-hero-desktop {
    display: none;
  }

  .player-hero-mobile {
    display: flex;
  }
}

@media (max-width: 560px) {
  .header-container {
    padding: 14px 32px;
  }

  .header-logo {
    height: 36px;
  }

  .hero-cta-container {
    padding: 0 40px;
  }

  .cta-title {
    font-size: 2rem;
    line-height: 3rem;
  }

  .contact-image-container {
    display: none;
  }
}

@media (max-width: 460px) {
  .header-container {
    padding: 8px 12px;
  }

  .header-logo {
    height: 26px;
  }

  .contact-main-container {
    padding: 2rem;
  }

  .contact-form-title {
    font-size: 1.6rem;
    line-height: 2rem;
  }

  .hero-section-container {
    padding: 60px 12px;
  }

  .hero-cta-container {
    padding: 0 20px;
  }

  button.cta-action {
    padding: 16px 16px;
    font-size: 1rem;
  }
}