@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
@import url("../fonts/Lufga/stylesheet.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow-x: hidden;
  overflow-y: auto;

}

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 100rem;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  max-width: 114rem;
  margin: 0 auto 0 auto;
  padding-right: 5rem;
  padding-left: 5rem;
}

@media screen and (max-width: 1200px) {
  .container {
    padding-right: 3.2rem;
    padding-left: 3.2rem;
  }


  .steam-app > .overlay > .phone-container {
    bottom: 1.5rem;
    transition: none;
  }



  
}

@media screen and (max-width: 1000px) {
  .container {
    padding-right: 2.4rem;
    padding-left: 2.4rem;
  }


}


@media screen and (min-width: 800px) {
  .notification {
    display: none;
  }
}



@media screen and (max-width: 600px) {
  .container {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }


  .custom-padding-for-all-cards{
    padding: 4.2rem 3rem !important;
  }
}



.top-scrollbar {
  background: linear-gradient(
    to right,
    rgb(227, 214, 255),
    rgb(130, 237, 255) 100%
  );

  height: 0.5rem;
  width: var(--width, 0%);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.footer {
  padding-top: 3.7rem;
  padding-bottom: 10.1rem;
}

.footer > p {
  color: #818181;
  font-family: "Lufga" sans-serif;
  font-size: 1.8rem;
  line-height: 127%;
  letter-spacing: -0.015em;
}

.home-button {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 7.2rem;
  aspect-ratio: 1/1;
  padding: 2.5rem;
  border-radius: 2.6rem;

  backdrop-filter: blur(1.4rem);
  -webkit-backdrop-filter: blur(1.4rem);
  background-color: #ffffff69;

  z-index: 50;

  display: grid;
  place-items: center;

  box-shadow: 0px 16px 24px 0px #00000029;

  will-change: opacity;
  transition: opacity 0.3s ease-in-out;
  transition: all 0.5s;
}

.home-button:hover {
  opacity: 0.6;

}

.fade-in {
  opacity: 0;
  transform: scale(var(--fade-start-scale, 0.95));
  transform-origin: center center;
  will-change: opacity, transform;
  transition: opacity 0.3s ease-in-out var(--fade-delay, 0.3s),
    transform 0.3s ease-in-out var(--fade-delay, 0.3s);
}

.fade-in.viewed {
  opacity: 1;
  transform: scale(1);
}





/* Overwrite Code  */

.notification {
  position: absolute;
  left: 60%;
  top: 100px;
  padding: 1rem;
  border-radius: 1.6rem;
  background-color: rgba(248, 247, 249, 0.5);
  backdrop-filter: blur(2.2rem);
  -webkit-backdrop-filter: blur(2.2rem);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 24px 0px;
  z-index: 50;
  animation: popup 1.5s;
}

.custom-padding-for-all-cards{
  padding: 5rem;
}


.notification, .notification * {
  font-size: 1rem;
  color: var(--tooltip-color, rgb(111, 111, 125));
  font-weight: var(--tooltip-font-weight, 600);
}

.custom-border-radius{
  border-radius: 4.2rem !important;
  border: 1px solid #e5e5e5;
  
}

.custom-3d-style{
  
  border-radius: 4.2rem;

  
  box-shadow: inset 0px -20px 15px #d8d8d8, inset 0px 11px 20px #ffffff !important;
}

@keyframes popup {
  0%{
    opacity: 0;
    z-index: -3;
    left: 33%;
  }

  50%{
    z-index: -3;
    left: 67%;
  }

  
  100%{
    opacity: 1;

  }
}



