@font-face {
  font-family: 'Netflix';
  font-weight: 300;
  src: url(/fonts/NetflixSansLight.ttf) format('truetype');
}

@font-face {
  font-family: 'Netflix';
  font-weight: 400;
  src: url(/fonts/NetflixSansThin.ttf) format('truetype');
}

@font-face {
  font-family: 'Netflix';
  font-weight: 500;
  src: url(/fonts/NetflixSansRegular.ttf) format('truetype');
}

@font-face {
  font-family: 'Netflix';
  font-weight: 600;
  src: url(/fonts/NetflixSansMedium.ttf) format('truetype');
}

@font-face {
  font-family: 'Netflix';
  font-weight: 700;
  src: url(/fonts/NetflixSansBold.ttf) format('truetype');
}

@font-face {
  font-family: 'Netflix';
  font-weight: 800;
  src: url(/fonts/NetflixSansBlack.ttf) format('truetype');
}

@font-face {
  font-family: 'SFPro';
  font-weight: 300;
  font-style: italic;
  src: url(/fonts/SFProDisplayThinItalic.OTF) format('opentype');
}

@font-face {
  font-family: 'SFPro';
  font-weight: 400;
  src: url(/fonts/SFProDisplayRegular.OTF) format('opentype');
}

@font-face {
  font-family: 'SFPro';
  font-weight: 500;
  src: url(/fonts/SFProDisplayMedium.OTF) format('opentype');
}

@font-face {
  font-family: 'SFPro';
  font-weight: 600;
  src: url(/fonts/SFProDisplayBold.OTF) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 100;
  src: url(/fonts/SFProRoundedUltraLight.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 200;
  src: url(/fonts/SFProRoundedThin.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 300;
  src: url(/fonts/SFProRoundedLight.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 400;
  src: url(/fonts/SFProRoundedRegular.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 500;
  src: url(/fonts/SFProRoundedMedium.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 600;
  src: url(/fonts/SFProRoundedSemibold.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 700;
  src: url(/fonts/SFProRoundedBold.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 700;
  src: url(/fonts/SFProRoundedHeavy.otf) format('opentype');
}

@font-face {
  font-family: 'SFProRounded';
  font-weight: 700;
  src: url(/fonts/SFProRoundedBlack.otf) format('opentype');
}

@font-face {
  font-family: 'SharpSans';
  font-weight: 300;
  src: url(/fonts/SharpSansLight.otf) format('opentype');
}

@font-face {
  font-family: 'SharpSans';
  font-weight: 400;
  src: url(/fonts/SharpSans.otf) format('opentype');
}

@font-face {
  font-family: 'SharpSans';
  font-weight: 500;
  src: url(/fonts/SharpSansMedium.otf) format('opentype');
}

@font-face {
  font-family: 'SharpSans';
  font-weight: 600;
  src: url(/fonts/SharpSansSemibold.otf) format('opentype');
}

@font-face {
  font-family: 'SharpSans';
  font-weight: 700;
  src: url(/fonts/SharpSansBold.otf) format('opentype');
}

@font-face {
  font-family: 'Akira';
  font-weight: 300;
  src: url(/fonts/AkiraOutline.otf) format('opentype');
}

@font-face {
  font-family: 'Akira';
  font-weight: 500;
  src: url(/fonts/AkiraBold.otf) format('opentype');
}

@font-face {
  font-family: 'Akira';
  font-weight: 600;
  src: url(/fonts/AkiraSuperBold.otf) format('opentype');
}

@font-face {
  font-family: 'KGAlwaysAGoodTime';
  font-weight: 300;
  src: url(/fonts/KGAlwaysAGoodTime.ttf) format('truetype');
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: inherit;
}

body {
  background: #000000;
  overflow-x: hidden;
  font-family: SFPro;
  color: #fff;
}

html {
  cursor: none;
}

img {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px grey;
}

::-webkit-scrollbar-thumb {
  background: rgb(39, 39, 39);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(150, 150, 150);
}

@media (hover: hover) and (pointer: fine) {
  #cursor {
    z-index: 99;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
  }

  #cursor .cursor--inner {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px #e0e0e0;
  }
}

.loader {
  position: fixed;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.halo {
  max-width: 7em;
  opacity: .9;
  animation: blurAnimation 1s ease-in-out;
}

@keyframes blurAnimation {
  0% { filter: blur(40px); }
  100% { filter: blur(0px); }
}

.load {
  animation: fadeIn 0.3;
  opacity: 1;
}

.disppear {
  animation: vanish .5s forwards;
}

@keyframes vanish {
  100% { opacity: 0; visibility: hidden; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  position: fixed;
  top: 5em;
  left: 5em;
  display: flex;
  align-items: center;
  z-index: 100;
}

header a {
  display: flex;
  align-items: center;
}

.header-logo {
  max-width: 3.8em;
}

.header-texts {
  display: flex;
  flex-direction: column;
}

.header-text {
  font-family: KGAlwaysAGoodTime;
  font-weight: 100;
  font-size: 1.3em;
  color: #ffffff;
  margin: 0 0 0 .8em;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header-sub {
  font-family: SFProRounded;
  font-weight: 400;
  font-size: 1em;
  color: #ffffff90;
  margin: 0 0 0 1.1em;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contain {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contain::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -20%;
  width: 140%;
  height: 1300px;
  background:
    radial-gradient(circle at 15% 60%, #0a3d35 0%, transparent 45%),
    radial-gradient(circle at 40% 70%, #1a2a4a 0%, transparent 40%),
    radial-gradient(circle at 65% 55%, #3d1a4a 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, #6b1a3d 0%, transparent 45%);
  filter: blur(140px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

.container {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.landing-container {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 5em 0 0 0;
  flex-direction: column;
}

.landing-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw;
  height: 100%;
  transform: translate(-50%, -50%) translateY(var(--video-offset, 200px));
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.landing-page {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.profile-title {
  font-family: Akira;
  font-weight: 500;
  font-size: 8em;
  position: relative;
  opacity: 0;
  color: #E4E4E4;
  text-align: center;
}

.profile-sub-link {
  display: contents;
  color: #e4e4e4a9;
  transition: .2s ease-in-out;
}

.profile-sub-link:hover {
  color: #ffffff;
}

.profile-sub {
  position: relative;
  overflow: hidden;
  font-family: SFPro;
  font-weight: 500;
  font-size: 2em;
  color: inherit;
  text-align: center;
}

.profile-title span {
  background-image: -webkit-linear-gradient(10deg, #ffa9d1, #f52b7c);
  background-image: linear-gradient(10deg, #ffa9d1, #f52b7c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@-webkit-keyframes load {
  0% { -webkit-transform: scale(0) }
  100% { -webkit-transform: scale(1.0); opacity: 0; }
}

@keyframes load {
  0% { -webkit-transform: scale(0); transform: scale(0); }
  100% { -webkit-transform: scale(1.0); transform: scale(1.0); opacity: 0; }
}

.cards {
  width: 100%;
}

.section-text {
  font-family: SFProRounded;
  text-transform: uppercase;
  font-size: 1.2em;
  color: #C1C1C1;
  text-align: left;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  transition: .2s;
}

.section-message {
  font-family: SFProRounded;
  font-size: 1.1em;
  color: #c1c1c199;
  margin-top: 1.5em;
  font-style: italic;
}

.games {
  position: relative;
  margin-top: 150px;
}

.game-card {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 35px;
  overflow: hidden;
  margin: 2em 2em 0 0;
}

.game-card:hover .external {
  fill: #fff;
}

.game-card-backdrop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.game-card-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(.9px);
}

.game-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  padding: 2em;
}

.game-card-primary {
  font-family: 'SFPro', sans-serif;
  font-weight: 600;
  font-size: 30px;
  overflow: hidden;
  margin-bottom: 7px;
}

.game-card-info {
  display: flex;
  flex-direction: column;
}

.game-card-secondary {
  font-family: 'SFPro', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #E4E4E4;
}

.more-button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: SFProRounded;
  color: #D0D0D0;
  background-color: #19191D;
  border: 1px solid #222228;
  padding: 9px 25px 9px 25px;
  border-radius: 35px;
  margin: 2em 0 2em 0;
  transition: .3s;
}

.more-button:hover {
  color: #fff;
  background-color: #1d1d22;
}

.more-button:active {
  background-color: #232329;
}

#stray img { object-position: 50% 20%; }
#valorant img { object-position: 50% 30%; }
#arsenal img { object-position: 50% 30%; }
#doomspire img { object-position: 50% 40%; }
#toh img { object-position: 50% 10%; }

.setup {
  margin-top: 4em;
}

.setup-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 2em 0 5em 0;
}

.setup-card {
  margin: 1em 1em 1em 0;
  text-align: left;
}

.setup-text-primary {
  font-family: SFPro;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.setup-text-secondary {
  font-family: SFProRounded;
  font-weight: 300;
  font-size: 18px;
  color: #c1c1c1b6;
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #19191D;
  border: 1px solid #222228;
  color: #c1c1c199;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-to-top svg {
  fill: #c1c1c199;
  width: 20px;
}

.back-to-top:hover {
  background-color: #1d1d22;
  color: #fff;
}

.back-to-top:active {
  background-color: #232329;
}

.footer {
  padding: 40px 0;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.left-footer {
  display: flex;
}

.left-footer .year {
  color: #C1C1C1;
  font-size: 15px;
  background-color: #18181C;
  border: 1px solid #1F1F25;
  padding: 3px 8px 3px 8px;
  border-radius: 8px;
}

.tag-content {
  display: flex;
}

@keyframes gradientMove {
  0% { background-position: 0 0; }
  100% { background-position: 50% 50%; }
}

.left-footer .tag {
  position: relative;
  top: 1px;
  font-family: 'SFProRounded', sans-serif;
  font-weight: 500;
  font-size: 1.1em;
  background-image: -webkit-linear-gradient(45deg, #FF99C8, #FF66A2);
  background-image: linear-gradient(45deg, #FF99C8, #FF66A2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 100% 100%;
  animation: gradientMove 3s linear infinite;
  margin-left: 0.5em;
}

.right-footer a {
  color: #C1C1C1;
  font-size: 17px;
}

.right-footer a:hover {
  text-decoration: underline;
}

.star {
  width: 18px;
  margin-left: 5px;
  transform: rotate(20deg);
}

/* ============ RESPONSIVE BREAKPOINTS ============ */

@media (max-width: 1000px) {
  .container {
    max-width: 90%;
  }

  .right-profile {
    position: relative;
    margin: 0 0 0 3em;
  }

  .contain::before {
    height: 1000px;
    filter: blur(110px);
  }
}

@media (max-width: 768px) {
  .setup-container {
    grid-template-columns: 1fr;
  }

  .setup-card {
    margin: 1em 0;
  }
}

@media (max-width: 783px) {
  .container {
    width: 90%;
  }

  header {
    display: flex;
    align-items: center;
    position: relative;
    top: 2em;
    left: 0;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }

  .left-profile {
    text-align: center;
    align-items: center;
  }

  .right-profile {
    position: relative;
    margin: 4em 0 0 0;
  }

  .landing-page {
    flex-direction: column;
  }

  .profile-title {
    font-size: 3em;
  }

  .profile-sub {
    font-size: 1.3em;
  }

  .games {
    margin-top: 90px;
  }

  .section-text {
    font-size: 1.1em;
  }

  .activity-card {
    width: 100%;
    margin: 2em 0 0 0;
  }

  .game-card {
    width: 100%;
    height: 130px;
    border-radius: 25px;
    margin: 1.5em 0 0 0;
  }

  .game-card-primary {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 7px;
  }

  .game-card-secondary {
    font-weight: 400;
    font-size: 16px;
  }

  .setup-text-primary {
    font-family: SFPro;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 5px;
  }

  .setup-text-secondary {
    font-family: SFProRounded;
    font-weight: 300;
    font-size: 15px;
    color: #c1c1c199;
  }

  .setup-container {
    margin: 2em 0 0em 0;
  }

  .back-to-top {
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  }

  .footer-content {
    flex-direction: column;
  }

  .left-footer {
    margin-bottom: 1em;
  }

  .footer {
    padding: 40px 0;
    justify-content: center;
    align-items: center;
  }

  .right-footer a {
    font-size: 17px;
  }

  .star {
    width: 18px;
    margin-left: 5px;
    transform: rotate(20deg);
  }

  .contain::before {
    height: 800px;
    filter: blur(90px);
    opacity: 0.3;
  }
}

@media (max-width: 691px) {
  .container {
    width: 100%;
  }

  header {
    top: 1.5em;
  }

  .header-logo {
    max-width: 4.5em;
  }

  .left-profile {
    text-align: center;
    align-items: center;
  }

  .right-profile {
    position: relative;
    margin: 4em 0 0 0;
  }

  .landing-page {
    flex-direction: column;
  }

  .profile-title {
    font-size: 4em;
    margin-top: .3em;
  }

  .profile-sub {
    font-size: 1.5em;
  }

  .games {
    margin-top: 60px;
  }

  .local-time {
    font-size: 1em;
  }

  .header-text {
    font-family: KGAlwaysAGoodTime;
    font-weight: 100;
    font-size: 1em;
    color: #ffffff;
    margin: 0 0 0 .8em;
  }

  .header-sub {
    font-family: SFProRounded;
    font-weight: 400;
    font-size: .8em;
    color: #ffffff90;
    margin: 0 0 0 1.1em;
  }

  .section-text {
    font-size: 1em;
  }

  .activity-card {
    width: 100%;
    height: 130px;
    margin: 2em 0 0 0;
  }

  .activity-card-primary {
    font-size: 17px;
    margin-bottom: 5px;
  }

  .activity-card-secondary {
    font-size: 12px;
  }

  .game-card-content {
    padding: 1.5em;
  }

  .game-card {
    width: 100%;
    height: 100px;
    border-radius: 25px;
    margin: 1.5em 0 0 0;
  }

  .game-card-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px);
  }

  .game-card-primary {
    font-size: 25px;
    margin-bottom: 3px;
  }

  .game-card-secondary {
    font-weight: 400;
    font-size: 16px;
  }

  .setup-text-primary {
    font-family: SFPro;
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 5px;
    color: #c1c1c1;
    
  }

  .setup-text-secondary {
    font-family: SFProRounded;
    font-weight: 400;
    font-size: 17px;
    color: #c1c1c199;
  }

  .setup-container {
    margin: 2em 0 0em 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .left-footer {
    margin-bottom: 1em;
  }

  .left-footer .tag {
    font-size: 16px;
  }

  .left-footer .year {
    font-size: 13px;
  }

  .right-footer a {
    font-size: 15px;
  }

  .star {
    width: 15px;
    margin-left: 5px;
    transform: rotate(20deg);
  }

  .back-to-top {
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 18px;
  }

  .more-button {
    font-size: .9em;
    padding: 7px 25px 7px 25px;
  }

  .halo {
    max-width: 6em;
  }

  .setup {
    margin-top: 1em;
  }

  .contain::before {
    left: -40%;
    width: 180%;
    height: 600px;
    bottom: -150px;
    filter: blur(70px);
    opacity: 0.28;
  }
}

@media (max-width: 380px) {
  .container {
    width: 100%;
  }

  header {
    top: 1em;
  }

  .header-logo {
    max-width: 2.4em;
  }

  .left-profile {
    text-align: center;
    align-items: center;
  }

  .right-profile {
    position: relative;
    margin: 4em 0 0 0;
  }

  .landing-page {
    flex-direction: column;
  }

  .profile-title {
    font-size: 1.7em;
    margin-top: .3em;
  }

  .profile-sub {
    font-size: 1em;
  }

  .games {
    margin-top: 40px;
  }

  .local-time {
    font-size: .9em;
  }

  .header-text {
    font-family: KGAlwaysAGoodTime;
    font-weight: 100;
    font-size: 1em;
    color: #ffffff;
    margin: 0 0 0 .8em;
  }

  .header-sub {
    font-family: SFProRounded;
    font-weight: 400;
    font-size: .8em;
    color: #ffffff90;
    margin: 0 0 0 1.1em;
  }

  .section-text {
    font-size: .9em;
  }

  .activity-card {
    width: 100%;
    height: 120px;
    margin: 2em 0 0 0;
  }

  .activity-card-primary {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .activity-card-secondary {
    font-size: 12px;
  }

  .game-card {
    width: 100%;
    height: 90px;
    border-radius: 20px;
    margin: 1.5em 0 0 0;
  }

  .game-card-primary {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 3px;
  }

  .game-card-secondary {
    font-weight: 400;
    font-size: 13px;
  }

  .setup-text-primary {
    font-family: SFPro;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
  }

  .setup-text-secondary {
    font-family: SFProRounded;
    font-weight: 300;
    font-size: 13px;
    color: #c1c1c199;
  }

  .setup-container {
    margin: 2em 0 0em 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .left-footer {
    margin-bottom: 1em;
  }

  .footer {
    padding: 40px 0;
  }

  .left-footer {
    display: flex;
    flex-direction: column;
  }

  .left-footer .year {
    align-self: center;
    margin-bottom: 5px;
    border-radius: 5px;
  }

  .left-footer .tag-content {
    display: flex;
  }

  .left-footer .tag {
    font-size: 14px;
  }

  .left-footer .year {
    font-size: 12px;
  }

  .right-footer a {
    font-size: 14px;
  }

  .star {
    width: 15px;
    margin-left: 5px;
    margin-top: 3px;
    transform: rotate(20deg);
  }

  .back-to-top {
    width: 38px;
    height: 38px;
  }

  .back-to-top svg {
    width: 18px;
  }

  .more-button {
    font-size: .8em;
    padding: 6px 25px 6px 25px;
  }

  .halo {
    max-width: 5em;
  }

  .contain::before {
    left: -50%;
    width: 200%;
    height: 450px;
    bottom: -100px;
    filter: blur(55px);
    opacity: 0.25;
  }
}