* {
  margin: 0;
  padding: 0;
  box-sizing: 0;
  font-family: "manaspaceregular";
}

.container {
  max-width: 500px;
  background: #ffffff;
  min-height: 100vh;
  margin-inline: auto;
  position: relative;
}

:root {
  --main-color: #000000;
  --window-color: #ffffff;
  --window-active-color: #afafaf;
  --border-color: #707070;
  --border-light-color: #ffffff;
  --border-shadow-color: #333333;
  --bg-color: #0b17b4;
  --green-color: #60cd46;
  --red-color: #cc1b1b;
  --window-title-bar-color: #011e75;
}

img {
  width: 100%;
}

@font-face {
  font-family: "manaspaceregular";
  src: url("/assets/fonts/manaspc-webfont.woff2") format("woff2"), url("/assets/fonts/manaspc-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  background: #faf2e8;
  margin: 0;
}

.bar {
  width: 100%;
  max-width: 500px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 40px;
  background-color: white;
  border-bottom: 2px solid #000;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bar #logo {
  font-size: 16px;
  margin: 0;
  padding-left: 20px;
  line-height: 0;
}

.wrap-menu {
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  left: 50%;
  max-width: 500px;
  bottom: 50px;
  z-index: 2;
}
.wrap-menu::after {
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.menu {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}
.menu .asoy {
  padding: 10px 15px;
  cursor: pointer;
  text-align: center;
}
.menu .asoy .isi-men img {
  width: 50px;
  margin-bottom: 5px;
}
.menu .asoy .isi-men p {
  font-size: 12px;
}

.popup {
  display: none;
  position: relative;
  inset: 0;
  z-index: 99;
  width: 100%;
  max-width: 500px;
  top: 40px;
  overflow-y: auto;
}

.popup.active {
  display: block;
}

.popup-content {
  background: var(--window-color);
  padding-top: 50px;
  padding-bottom: 50px;
  min-height: calc(100vh - 100px);
  position: relative;
  border-left: 2px solid #111;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
}

.xys {
  display: flex;
  justify-content: space-between;
}
.xys h2 {
  font-size: 14px;
}

.live-card {
  padding: 20px 10px;
  background: var(--window-color);
}

.live-card:nth-child(even) {
  background: #f3f3f3;
}

.live h3 {
  margin: 10px 0 5px 0;
}
.live a {
  font-size: 10px;
}

.close {
  cursor: pointer;
}

.news-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4px);
  overflow: hidden;
  max-width: 496px;
  z-index: 12;
  height: 32px;
  border: 2px solid #111;
  background: var(--window-color);
}
.news-header .header-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-header .header-title h2 {
  font-size: 14px;
  background-color: var(--window-color);
  padding: 20px 10px;
}
.news-header .line {
  width: calc(100% - 10px);
  max-width: 500px;
  height: 2px;
  background: #111;
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  top: 6px;
}
.news-header .line.b {
  top: 12px;
}
.news-header .line.c {
  top: 18px;
}
.news-header .line.d {
  top: 24px;
}
.news-header .close-icon img {
  width: 20px;
  border: 1px solid #111;
}
.news-header .close-icon {
  position: absolute;
  background-color: var(--window-color);
  padding: 10px 4px;
  top: -5px;
  left: 12px;
}

.header-title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #111;
  letter-spacing: 1px;
}

.line {
  display: block;
  width: 110px;
  height: 3px;
  background: #111;
}

.video-list {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-item {
  display: flex;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}

.thumb {
  width: 180px;
  height: 88px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}

.content {
  align-content: center;
}

.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.video-content {
  flex: 1;
}

.content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -2px;
  line-height: 1.2;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777;
}

.meta svg {
  width: 18px !important;
  height: 18px;
  color: red;
}

.ats {
  margin-top: 40px;
  text-align: center;
}
.ats .cr {
  padding: 10px 0;
}

.text-mr {
  padding: 50px 10px;
}
.text-mr img {
  width: 100%;
  margin-bottom: 10px;
}
.text-mr p {
  letter-spacing: -1px;
  margin: 10px 0;
}

.music-card {
  margin-bottom: 20px;
  padding: 10px;
}

.music-info h2 {
  letter-spacing: -1px;
  font-size: 22px;
  text-transform: uppercase;
}

.music-links {
  margin-top: 10px;
}
.music-links a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -2px;
  margin-right: 10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pop-suck.avis {
  display: block;
}

.pop-suck {
  display: none;
  width: 90%;
  background: #faf2e8;
  position: fixed;
  transform: translateX(-50%);
  left: 50%;
  top: 60px;
  padding: 30px 6px 6px 6px;
  z-index: 4;
  border: 0.5px solid #000;
  box-shadow: 5px 4px 0px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 5px 4px 0px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 5px 4px 0px 0px rgba(0, 0, 0, 0.19);
  overflow: hidden;
}
.pop-suck::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  background: url(../img/icon/textur.png);
  bottom: 0;
  z-index: -1;
  background-size: cover;
  opacity: 0.1;
  background-position: top;
}
.pop-suck .close-bar {
  cursor: pointer;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 1;
  background: #faf2e8;
}
.pop-suck .close-bar img {
  width: 16px;
  border: 0.5px solid #000;
}
.pop-suck .judul-te {
  position: absolute;
  right: 1px;
  z-index: 1;
  top: 0;
}
.pop-suck .judul-te p {
  font-size: 12px;
  text-align: right;
  background: #faf2e8;
  padding: 8px 10px 5px 15px;
}
.pop-suck .line {
  position: absolute;
  width: 90%;
  right: 0;
  background: #000;
  height: 0.5px;
  top: 14px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.19);
}
.pop-suck .line::after {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  background: #000;
  height: 0.6px;
  top: -6px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.19);
}
.pop-suck .line::before {
  content: "";
  position: absolute;
  width: 100%;
  right: 0;
  background: #000;
  height: 0.6px;
  top: 6px;
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.19);
}

.info-text {
  padding: 5px;
}
.info-text h3 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}
.info-text h4 {
  font-size: 10px;
  margin-bottom: 10px;
}
.info-text p {
  font-size: 11px;
  margin-bottom: 10px;
}

.slide-next,
.slide-prev {
  background: #faf2e8;
  cursor: pointer;
  padding: 7px 15px 6px;
  border: 1px solid #000;
  border-radius: 5px;
}
.slide-next p,
.slide-prev p {
  font-size: 10px;
  margin: 0;
}

.splide__arrows {
  padding-top: 10px;
  padding-bottom: 20px;
}

.player h3 {
  font-size: 11px;
  letter-spacing: -1px;
  margin-bottom: 5px;
}
.player p {
  font-size: 11px;
  letter-spacing: 0px;
}
.player .jdl {
  padding-top: 50px;
  padding-left: 150px;
}

#postrock.pop-suck {
  overflow: visible !important;
}

.album {
  height: auto;
  position: absolute;
  left: 60px;
  top: 50px;
  transform: translateX(-50%);
}
.album img {
  display: block;
  margin: 0 auto;
  height: auto;
  width: 140px;
  border-radius: 50%;
  border: 1px solid #000;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.album .mid {
  top: 55px;
  left: 55px;
  position: absolute;
  background: #faf2e8;
  height: 27px;
  width: 27px;
  border-radius: 50%;
  border: 1px solid #000;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=landing.css.map */