/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  background-color: #070707;
  color: #f0f0f0;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* src/styles/room-styles.css */
:root {
  --color-bg-1: #0d1530;
  --color-bg-2: #111c3e;
  --color-bg-3: #182048;
  --color-panel: rgba(16, 22, 50, 0.65);
  --color-panel-soft: rgba(255, 255, 255, 0.045);
  --color-border: rgba(162, 102, 255, 0.24);
  --color-border-strong: rgba(178, 103, 255, 0.6);
  --color-text: #f5f1ff;
  --color-muted: #a9a0bd;
  --color-muted-2: #7e748e;
  --color-primary: #9b5cff;
  --color-primary-light: #c17cff;
  --color-secondary: #ff7a1a;
  --shadow-panel: 0 30px 100px rgba(0, 0, 0, 0.55);
  --blur-panel: blur(28px);
  --modal-height: 730px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-ui:
    "Manrope",
    "Avenir Next",
    "Segoe UI",
    sans-serif;
  --font-display:
    "Sora",
    "Space Grotesk",
    "Avenir Next",
    "Segoe UI",
    sans-serif;
  --logo-total-width: 280px;
  --logo-total-height: 120px;
  --logo-symbol-width: auto;
  --logo-symbol-height: 90px;
  --logo-elysium-width: 230px;
  --logo-elysium-height: auto;
  --logo-meet-width: 176px;
  --logo-meet-height: auto;
  --logo-gap: 5px;
  --logo-symbol-offset-x: 0px;
  --logo-symbol-offset-y: 0px;
  --logo-elysium-offset-x: 0px;
  --logo-elysium-offset-y: -2px;
  --logo-meet-offset-x: 0px;
  --logo-meet-offset-y: -6px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--color-text);
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 16% 12%,
      rgba(66, 135, 255, 0.2),
      transparent 32%),
    radial-gradient(
      circle at 84% 16%,
      rgba(130, 75, 255, 0.16),
      transparent 36%),
    radial-gradient(
      circle at 50% 90%,
      rgba(45, 90, 210, 0.1),
      transparent 44%),
    linear-gradient(
      160deg,
      #0d1530 0%,
      #111c3e 50%,
      #0a1226 100%);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -8;
  background-image:
    linear-gradient(rgba(100, 148, 255, 0.09) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(100, 148, 255, 0.09) 1px,
      transparent 1px);
  background-size: 64px 64px;
  mask-image:
    radial-gradient(
      circle at 50% 40%,
      black,
      transparent 72%);
}
.bg-orb {
  position: fixed;
  z-index: -7;
  border-radius: 50%;
  border: 1px solid rgba(119, 84, 255, 0.18);
  background:
    radial-gradient(
      circle at 38% 30%,
      rgba(100, 140, 255, 0.14),
      transparent 65%);
  box-shadow: inset 0 0 100px rgba(90, 120, 255, 0.08);
}
.bg-orb-right {
  width: 34vw;
  height: 34vw;
  min-width: 420px;
  min-height: 420px;
  top: -17vw;
  right: -10vw;
}
.bg-wave {
  position: fixed;
  left: -8vw;
  right: -8vw;
  z-index: -6;
  pointer-events: none;
}
.bg-wave-a {
  bottom: 8.5vh;
  height: 26vh;
  background:
    linear-gradient(
      95deg,
      transparent 0%,
      rgba(55, 111, 255, 0.18) 15%,
      rgba(111, 71, 255, 0.42) 38%,
      rgba(180, 70, 240, 0.32) 56%,
      rgba(255, 126, 90, 0.36) 70%,
      rgba(67, 164, 255, 0.26) 88%,
      transparent 100%);
  clip-path: polygon(0 58%, 10% 69%, 22% 60%, 34% 42%, 49% 56%, 62% 72%, 76% 59%, 88% 43%, 100% 57%, 100% 100%, 0 100%);
  filter: blur(6px);
  opacity: 0.5;
}
.bg-wave-b {
  bottom: 2vh;
  height: 17vh;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(91, 103, 255, 0.18) 0 1px,
      transparent 1px 7px),
    linear-gradient(
      100deg,
      transparent 0%,
      rgba(68, 115, 255, 0.12) 18%,
      rgba(160, 70, 240, 0.2) 48%,
      rgba(255, 126, 90, 0.14) 70%,
      transparent 100%);
  clip-path: polygon(0 46%, 10% 52%, 22% 43%, 36% 56%, 50% 45%, 63% 40%, 74% 56%, 88% 64%, 100% 42%, 100% 100%, 0 100%);
  opacity: 0.55;
}
.page {
  min-height: 100vh;
  padding: 34px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.topbar {
  position: fixed;
  top: 34px;
  left: 46px;
  z-index: 20;
  width: auto;
  margin: 0;
}
.logo-link,
.logo-composed {
  width: var(--logo-total-width);
  max-width: 280px;
  height: var(--logo-total-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--logo-gap);
  line-height: 0;
  text-decoration: none;
  overflow: visible;
}
.logo-part {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(54, 128, 255, 0.28));
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  flex: 0 0 auto;
}
.logo-symbol {
  width: var(--logo-symbol-width);
  height: var(--logo-symbol-height);
  transform: translate(var(--logo-symbol-offset-x), var(--logo-symbol-offset-y));
}
.logo-elysium {
  width: var(--logo-elysium-width);
  height: var(--logo-elysium-height);
  transform: translate(var(--logo-elysium-offset-x), var(--logo-elysium-offset-y));
}
.logo-meet {
  width: var(--logo-meet-width);
  height: var(--logo-meet-height);
  transform: translate(var(--logo-meet-offset-x), var(--logo-meet-offset-y));
}
.language-picker {
  position: fixed;
  top: 34px;
  right: 46px;
  z-index: 40;
  transform: translateY(-25px);
}
.language-button {
  height: 48px;
  min-width: 152px;
  padding: 0 15px;
  border: 1px solid rgba(143, 157, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(7, 10, 29, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}
.language-button:hover {
  border-color: rgba(143, 157, 255, 0.55);
  background: rgba(9, 14, 38, 0.85);
  transform: translateY(-1px);
}
.language-button:focus-visible {
  outline: 2px solid rgba(66, 165, 255, 0.9);
  outline-offset: 2px;
}
.language-button img,
.language-menu img {
  width: 27px;
  height: 19px;
  object-fit: cover;
  border-radius: 4px;
}
.language-button span {
  font-size: 14px;
  font-weight: 750;
}
.language-button i {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid #dde5ff;
  border-bottom: 2px solid #dde5ff;
  transform: rotate(45deg) translateY(-2px);
}
.language-menu {
  position: absolute;
  top: 58px;
  right: 0;
  width: 178px;
  padding: 8px;
  border: 1px solid rgba(143, 157, 255, 0.28);
  border-radius: 16px;
  background: rgba(6, 9, 28, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
  display: none;
}
.language-menu.is-open {
  display: block;
}
.language-menu button {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.language-menu button:hover,
.language-menu button[aria-selected=true] {
  background: rgba(67, 102, 255, 0.18);
}
.waiting-modal {
  width: min(1120px, 100%);
  height: var(--modal-height);
  max-height: var(--modal-height);
  margin-top: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055),
      transparent),
    var(--color-panel);
  backdrop-filter: var(--blur-panel);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-main {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 24px 28px 16px;
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 0 34px 10px;
  border-right: 1px solid rgba(162, 102, 255, 0.18);
}
.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(193, 124, 255, 0.35);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.24),
      transparent 68%);
}
.status-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border-top: 2px solid var(--color-secondary);
  border-right: 2px solid transparent;
  border-bottom: 2px solid var(--color-primary);
  border-left: 2px solid transparent;
  animation: spin 5s linear infinite;
}
.status-icon .icon {
  width: 34px;
  height: 34px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.hero-title strong {
  display: block;
  color: var(--color-primary-light);
}
.hero-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.42;
  margin-bottom: 22px;
}
.orb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle,
      rgba(155, 92, 255, 0.24),
      transparent 64%);
  box-shadow: inset 0 0 35px rgba(155, 92, 255, 0.35), 0 0 70px rgba(155, 92, 255, 0.22);
  animation: orbPulse 3.5s ease-in-out infinite;
}
.orb::before,
.orb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  border: 3px solid transparent;
  border-left-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.orb::before {
  animation: spin 6s linear infinite;
}
.orb::after {
  inset: 26px;
  border-right-color: var(--color-secondary);
  border-top-color: var(--color-primary-light);
  animation: spinReverse 8s linear infinite;
}
.spark {
  width: 40px;
  height: 40px;
  color: var(--color-primary-light);
  filter: drop-shadow(0 0 20px rgba(193, 124, 255, 0.9));
  z-index: 2;
  animation: sparkPulse 2.4s ease-in-out infinite;
}
.details-section {
  padding: 8px 16px 12px 36px;
}
.section-title {
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.details-card {
  border: 1px solid rgba(162, 102, 255, 0.2);
  border-radius: var(--radius-lg);
  background: var(--color-panel-soft);
  padding: 16px 22px;
}
.detail-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.detail-row:first-child {
  padding-top: 0;
}
.detail-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary-light);
  flex: none;
}
.detail-label {
  color: var(--color-muted-2);
  font-size: 12px;
  margin-bottom: 4px;
}
.detail-value {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}
.modal-bottom {
  flex: 0 0 218px;
  height: 218px;
  margin: 0 28px 24px;
  border: 1px solid rgba(162, 102, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.wait-list,
.actions {
  padding: 20px 28px;
  min-height: 0;
}
.wait-list {
  border-right: 1px solid rgba(162, 102, 255, 0.16);
}
.wait-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
}
.wait-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(155, 92, 255, 0.13);
  color: var(--color-primary-light);
}
.wait-icon .icon {
  width: 21px;
  height: 21px;
}
.wait-item h4 {
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.15;
}
.wait-item p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.2;
}
.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.action-button {
  min-height: 62px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-strong);
  background: rgba(155, 92, 255, 0.10);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.22s ease;
  font-family: inherit;
  text-align: left;
  padding: 10px 12px;
}
.action-button:hover {
  transform: translateY(-2px);
  background: rgba(155, 92, 255, 0.18);
  box-shadow: 0 0 28px rgba(155, 92, 255, 0.25);
}
.action-button svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
}
.action-button strong {
  font-size: 14px;
  line-height: 1.1;
}
.action-button span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.15;
}
.leave-button {
  grid-column: 1 / -1;
  min-height: 52px;
  border-color: rgba(255, 122, 26, 0.62);
  color: var(--color-secondary);
  background: rgba(255, 122, 26, 0.06);
}
.leave-button svg {
  color: var(--color-secondary);
}
.security-note {
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-muted);
  margin-top: 16px;
  text-align: left;
}
.security-note svg {
  width: 44px;
  height: 44px;
  color: var(--color-primary-light);
  flex: none;
}
.security-note strong {
  display: block;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 4px;
}
.security-note span {
  font-size: 13px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 0 35px rgba(155, 92, 255, 0.35), 0 0 70px rgba(155, 92, 255, 0.22);
  }
  50% {
    transform: scale(1.035);
    box-shadow: inset 0 0 42px rgba(155, 92, 255, 0.48), 0 0 95px rgba(155, 92, 255, 0.34);
  }
}
@keyframes sparkPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.88;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
@media (max-width: 940px) {
  .page {
    padding: 28px 16px;
  }
  .topbar {
    position: static;
    width: min(1120px, 100%);
    margin-bottom: 24px;
  }
  .language-picker {
    position: static;
    margin-bottom: 18px;
    transform: none;
  }
  .waiting-modal {
    height: auto;
    max-height: none;
    margin-top: 0;
  }
  .modal-main,
  .modal-bottom {
    height: auto;
    grid-template-columns: 1fr;
  }
  .modal-bottom {
    flex-basis: auto;
  }
  .hero-section,
  .wait-list {
    border-right: 0;
    border-bottom: 1px solid rgba(162, 102, 255, 0.16);
  }
  .details-section {
    padding: 28px 18px;
  }
  .button-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .logo-link,
  .logo-composed {
    width: 205px;
    max-width: 205px;
    height: 92px;
  }
  .logo-symbol {
    width: 56px;
    height: auto;
  }
  .logo-elysium {
    width: 166px;
    height: auto;
  }
  .logo-meet {
    width: 126px;
    height: auto;
  }
  .language-button {
    min-width: 52px;
    height: 44px;
    padding: 0 12px;
  }
  .language-button span {
    display: none;
  }
  .waiting-modal {
    border-radius: 22px;
  }
  .modal-main {
    padding: 24px 16px 12px;
  }
  .hero-section {
    padding: 0 8px 24px;
  }
  .orb {
    width: 145px;
    height: 145px;
  }
  .modal-bottom {
    margin: 0 16px 18px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
