html,
body {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

:root {
  --border-radius: 50%;
  --border-size: 1px;
  --padding: 1px;
  --border-bg: conic-gradient(
    from 180deg at 50% 50%,
    #e92a67 0deg,
    #a853ba 112.5deg,
    #2a8af6 228.75deg,
    rgba(42, 138, 246, 0) 360deg
  );
}

body {
  background-color: black;
  background-attachment: fixed;
  background-size: cover;
  font-family: 'Inter';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.lines-bg-wrapper {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  perspective: 1000px;
  z-index: -6;
  overflow: hidden;
  inset: 0;
  transition: perspective 3s ease 0s;
}

.lines-bg-wrapper .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0px, #000 50%);
}

.lines-bg-wrapper .lines-wrapper {
  transform: rotateX(75deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.lines-bg-wrapper .lines-wrapper .lines {
  position: absolute;
  width: 200vw;
  margin-left: -50%;
  transform: translateY(0);
  background-image: linear-gradient(
    to left,
    #4c2638 45%,
    transparent 50%,
    #223b67 55%
  );
  -webkit-mask-image: linear-gradient(90deg, #000 2px, transparent 0),
    linear-gradient(180deg, #000 2px, transparent 0);
  -webkit-mask-size: 90px 90px;
  overflow: hidden;
  -webkit-mask-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: -100% 0;
  background-position-y: 100%;
  -webkit-mask-position: 50% 0;
  animation: background_go-up 10s linear infinite;
}

.logo-wrapper {
  width: 300px;
  height: 300px;
  margin: 55px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  display: inline-block;
  z-index: 0;
  padding: 3px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
}

.logo-wrapper i {
  content: '';
  position: absolute;
  top: var(--border-size);
  right: var(--border-size);
  bottom: var(--border-size);
  left: var(--border-size);
  padding: var(--border-size);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: calc(var(--border-radius) + var(--border-size));
}

.logo-wrapper i:before {
  content: '';
  display: block;
  background: var(--border-bg);
  box-shadow: 0 0 40px 20px --var(--border-bg);
  width: calc(100% * 1.41421356237);
  padding-bottom: calc(100% * 1.41421356237);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -2;
  animation: landing_spin 5s linear infinite;
}

.rightLights:after,
.rightLights:before {
  content: '';
  position: absolute;
  pointer-events: none;
  filter: blur(125px);
  will-change: filter;
  mix-blend-mode: normal;
}

.rightLights:before {
  z-index: 200;
  width: 25%;
  height: 900px;
  right: -12.5%;
  top: calc(50% - 900px / 2 + 151px);
  background-image: linear-gradient(180deg, rgba(236, 151, 207, 0.4), #e92a67);
  transform: rotate(15deg);
  border-bottom-left-radius: 25% 25%;
  border-bottom-right-radius: 25% 25%;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  opacity: 0.2;
  overflow: hidden;
}

.rightLights:after {
  width: 40%;
  height: 422px;
  right: 0;
  top: calc(50% - 422px / 2 + 298px);
  opacity: 0.25;
  background: linear-gradient(180deg, rgba(236, 151, 207, 0.4), #e92a67);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.leftLights:after,
.leftLights:before {
  content: '';
  position: absolute;
  pointer-events: none;
  filter: blur(125px);
  will-change: filter;
  mix-blend-mode: normal;
}

.leftLights:before {
  width: 25%;
  height: 900px;
  left: -12.5%;
  top: calc(50% - 900px / 2 + 151px);
  opacity: 0.2;
  background: linear-gradient(180deg, #77b8ff, rgba(42, 138, 246, 0.4));
  transform: rotate(-15deg);
  border-bottom-left-radius: 25% 25%;
  border-bottom-right-radius: 25% 25%;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  z-index: 200;
}
.leftLights:after {
  width: 40%;
  height: 422px;
  left: 0;
  top: calc(50% - 422px / 2 + 298px);
  opacity: 0.5;
  background: linear-gradient(
    180deg,
    rgba(29, 92, 162, 0.2),
    rgba(42, 138, 246, 0.4)
  );
}

.container {
  height: 100vh;
  margin: 0;
  width: 100%;
  padding: 0;
  place-items: center;
}

svg {
  width: 165px;
  height: 42px;
}

pre {
  background: #1c1f26;
  padding: 20px;
  width: 100%;
  overflow: auto;
  box-sizing: border-box;
  color: #a8b3cf;
  border-radius: 20px;
}

.badge-and-player-wrapper {
  grid-template-columns: 1fr 351px;
  gap: 50px;
  padding: 0 0 50px 0;
  display: grid;
  place-items: center;
}

.gentle-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1ch;
}

.logo {
  width: 300px;
  height: 300px;
  border-top-left-radius: 50% 50%;
  border-top-right-radius: 50% 50%;
  border-bottom-right-radius: 50% 50%;
  border-bottom-left-radius: 50% 50%;
}

.badge-container {
  display: grid;
  grid-gap: 1rem;
  height: 104px;
  grid-template-columns: repeat(2, 1fr);
}

.badge {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: space-between;
}

.tags {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.blogPost, .blogPosts {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  max-width: 840px;
  padding-left: 1.5rem;
  color: #a9a9a9;
  padding-right: 1.5rem;
  border-radius: 20px;
  position: relative;
  border: 1px solid #1c1c1c;
  background: #000;
}
.blogPost::after,
.blogPost::before {
  content: '';
  top: 140px !important;
  position: absolute;
  height: 520px;
  width: 520px;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  filter: blur(60px);
  opacity: 0.15;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #fff;
}

.blogPost .text-wrapper, .blogPosts .text-wrapper {
  position: relative;
  z-index: 2;
}

.blogPost .text-wrapper a, .blogPosts .text-wrapper a {
  background: #9d284b;
  padding: 0 2px;
  color: #5597ff;
}

.blogPost::after, .blogPosts::after {
  left: auto;
  right: -450px;
  background-image: linear-gradient(to bottom, #4ebfff, rgb(0 163 255));
}

.blogPost::before, .blogPosts::before {
  left: 0;
  background-image: linear-gradient(to bottom, #ff3358, #ff4fd8);
}

.blogPost .title, .blogPosts .title {
  text-align: center;
}

.blogPost img, .blogPosts img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.blogLink {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .blogPost, .blogPosts {
    width: 300px;
  }

  .badge-container {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .badge-and-player-wrapper {
    grid-template-columns: 351px;
  }

  .blogPost img, .blogPosts img {
    width: 100%;
  }
}

@keyframes background_go-up {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(50% + 28px));
  }
}

@keyframes landing_spin {
  0% {
    transform: translate(-50%, -50%) rotate(1turn);
  }

  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}
