* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  user-select: none;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
  overflow-x: hidden;
  background: #ffffff;
  margin: 0;
  overscroll-behavior: none;
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", sans-serif;
}

/* 페이지 첫 등장 */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.logo-container {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 10;

  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
}

.logo {
  width: 52vw;
  max-width: 200px;
  min-width: 120px;

  cursor: pointer;

  user-select: none;
  -webkit-user-drag: none;

  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.logo-container.hide {
  opacity: 0;

  transform:
    scale(1.25)
    rotate(8deg);

  filter: blur(14px);

  pointer-events: none;
}

.main-screen {
  width: 100%;
  height: 100dvh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 24px;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.main-screen.show {
  opacity: 1;
  transform: translateY(0);
}

.main-content {
  text-align: center;
}

.main-content h1 {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -1px;

  margin-bottom: 5px;

  color: #111111;
}

.main-content p {
  font-size: 13px;
  line-height: 1.6;

  color: #777777;

  margin-bottom: 36px;
}


@media (max-width: 480px) {

  .logo {
    width: 62vw;
    max-width: 200px;
  }

  .main-content h1 {
    font-size: 42px;
  }

  .main-content p {
    font-size: 15px;
  }

}

.bottom-text {
  position: fixed;

  left: 0;
  right: 0;
  bottom: 0;

  height: 45px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: #ffffff;

  z-index: 9999;
}

.bottom-text span {
  font-size: 10px;
  color: #aaaaaa;
  letter-spacing: 0.3px;
}

@keyframes mainUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-bar {

  position: fixed;

  top: 0;
  right: 0;

  padding: 15px;

  z-index: 9999;

}

.install-button {

  display: none;

  width: 30px;
  height: 30px;

  border: none;
  border-radius: 10px;

  background: rgba(255,255,255,0.55);

  color: #777777;

  cursor: pointer;

  justify-content: center;
  align-items: center;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.2s;

}

.install-button:active {

  transform: scale(0.96);
}

.meeting-links {
  margin-top: 8px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 13px;
}

.meeting-links a {
  font-size: 12px;

  letter-spacing: 1px;

  color: #393939;

  padding: 0 20px;

  text-decoration: underline;
  text-underline-offset: 1.5px;
}

.meeting-links a:hover {
  opacity: 0.7;
}

.meeting-links a.logout-link {
  color: #c85a5a;
}

.logout-link:hover {
  opacity: 0.7;
}

.search-target {
  animation: searchFlash 1.5s ease;
}

@keyframes searchFlash {
  0% {
    background: #fff3a0;
  }
  50% {
    background: #ffe066;
  }
  100% {
    background: transparent;
  }
}
