@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");
body {
  margin: 0;
  background-color: #1a1a1a;
  color: #FFFFFFDD;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
  filter: contrast(1.08) saturate(1.15) brightness(1.03);
  image-rendering: high-quality;
  cursor: pointer;
}

#btn {
  position: absolute;
  top: 690px;
  left: 16px;
  z-index: 99;
}

.card-content {
  position: absolute;
  left: 0;
  top: 0;
  color: #FFFFFFDD;
  padding-left: 16px;
}

.content-place {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
}

.content-place {
  font-weight: 500;
}

.content-title-1,
.content-title-2 {
  font-weight: 600;
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

.content-start {
  width: 30px;
  height: 5px;
  border-radius: 99px;
  background-color: #FFFFFFDD;
}

.details {
  z-index: 22;
  position: absolute;
  top: 160px;
  left: 60px;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 560px;
  height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 21;
}
.details .place-box {
  height: 68px;
  overflow: hidden;
}
.details .place-box .text {
  padding-top: 18px;
  font-size: 34px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #ecad29;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.details .place-box .text:before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background-color: #ecad29;
}
.details > .desc {
  margin-top: 16px;
  width: 480px;
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  color: #fffffff0;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: #1a1a1a;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease;
}
#loading-screen.done {
  opacity: 0;
  pointer-events: none;
}
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.loading-label {
  color: #ffffff55;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.loading-percent {
  color: #ffffff;
  font-size: 96px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1;
  min-width: 220px;
  text-align: center;
}
.loading-bar-bg {
  width: 320px;
  height: 2px;
  background: #ffffff18;
  margin-top: 28px;
  border-radius: 2px;
}
.loading-bar-fill {
  height: 2px;
  background: #ecad29;
  width: 0%;
  border-radius: 2px;
  transition: width 0.25s ease;
}


.indicator {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  z-index: 60;
  background-color: #ecad29;
}

.pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
}
.pagination > .arrow {
  z-index: 60;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid #ffffff55;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
.pagination > .arrow:hover {
  border-color: #ecad29;
  background-color: rgba(236,173,41,0.15);
}
.pagination > .arrow:nth-child(2) {
  margin-left: 20px;
}
.pagination > .arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  color: #ffffff99;
}
.pagination .progress-sub-container {
  margin-left: 24px;
  z-index: 60;
  width: 500px;
  height: 50px;
  display: flex;
  align-items: center;
}
.pagination .progress-sub-container .progress-sub-background {
  width: 500px;
  height: 3px;
  background-color: #ffffff33;
}
.pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
  height: 3px;
  background-color: #ecad29;
}
.pagination .slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  z-index: 60;
  position: relative;
}
.pagination .slide-numbers .item {
  width: 50px;
  height: 50px;
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: bold;
}

.cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
}