body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  overflow-x: hidden;
}

main {
  position: relative;
}
main .iframe {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}
main .iframe iframe {
  height: 100%;
  width: 100%;
  border: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.guide-box {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  color: #ffffff;
  padding: 1rem;
  transition: all 0.4s ease;
}
.guide-box.open {
  width: 220px;
  transform: translate(0, -50%);
  transform: 0.7s cubic-bezier(0.3, 0, 0);
}
.guide-box.open .toggle-btn {
  right: -25px;
}
.guide-box:not(.open) {
  left: 40px;
}
.guide-box:not(.open) .guide-list {
  display: none;
}
.guide-box:not(.open) .toggle-btn {
  position: absolute;
  top: 10px;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  background: rgba(207, 23, 23, 0.5);
}
.guide-box .nav-guide {
  position: relative;
  width: 250px;
  background: rgba(0, 0, 0, 0.2392156863);
  border-radius: 15px;
}
.guide-box .toggle-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  background: #cf1717;
  font-size: 12px;
  cursor: pointer;
  margin-bottom: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.guide-box .toggle-btn:focus-visible {
  outline: -webkit-focus-ring-color auto 0;
}
.guide-box .toggle-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.guide-box .guide-list {
  list-style: none;
  padding: 1rem;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}
.guide-box .guide-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.25rem 1rem;
  border-radius: 10px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}
.guide-box .guide-list li img {
  filter: brightness(1) invert(1);
}
.guide-box .guide-list li:hover {
  background: rgba(0, 0, 0, 0.5);
}
.guide-box .guide-list li img {
  width: 40px;
}

.navigation {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 5;
  transform: translate(0, -50%);
  color: #ffffff;
  padding: 1rem;
  transition: all 0.4s ease;
}
.navigation .dropdown-navigation {
  position: relative;
  display: inline-block;
}
.navigation .dropdown-navigation .dropdown-toggle {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.navigation .dropdown-navigation .dropdown-toggle .arrow {
  display: flex;
}
.navigation .dropdown-navigation .dropdown-toggle img {
  width: 18px;
  filter: brightness(1) invert(1);
  margin-left: 5px;
}
.navigation .dropdown-navigation .dropdown-toggle:hover {
  background: rgba(0, 0, 0, 0.2);
}
.navigation .dropdown-navigation .dropdown-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 175px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.navigation .dropdown-navigation .dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.navigation .dropdown-navigation .dropdown-menu li a:hover {
  background: #f0f0f0;
}
.navigation .dropdown-navigation .dropdown-menu:not(:last-child) {
  bottom: 1px #eee solid;
}
.navigation .dropdown-navigation.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
