:root {
  --v10p-text: #181717;
  --v10p-accent: #fb8c27;
  --v10p-surface: #ffffff;
}

.v10p-page {
  width: 100%;
  background: #fff;
}

.v10p-guest-screen {
  padding: 48px 20px 26px;
  background: #fff;
}

.v10p-guest-container {
  max-width: 1440px;
  margin: 0 auto;
}

.v10p-guest-panel {
  max-width: 1400px;
  min-height: 454px;
  margin: 0 auto;
  padding: 120px 153px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.v10p-guest-title {
  margin: 0;
  max-width: 1094px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  text-align: center;
  color: var(--v10p-text);
}

.v10p-guest-actions {
  width: 452px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.v10p-guest-actions__button {
  min-height: 42px;
  border-radius: 30px;
  padding: 6px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.v10p-guest-actions__button--ghost {
  width: 279px;
  background: var(--v10p-surface);
  border: 1px solid var(--v10p-accent);
  color: var(--v10p-accent);
}

.v10p-guest-actions__button--primary {
  width: 165px;
  background: var(--v10p-accent);
  border: 1px solid var(--v10p-accent);
  color: #fff;
}

.v10p-guest-actions__button:hover {
  box-shadow: 0 8px 20px rgba(251, 140, 39, 0.28);
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.v10p-guest-actions__button:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

.v10p-guest-actions__button:focus-visible {
  outline: 2px solid var(--v10p-accent);
  outline-offset: 2px;
}

@media (max-width: 1199px) {
  .v10p-guest-screen {
    padding: 40px 16px 20px;
  }

  .v10p-guest-panel {
    min-height: 360px;
    padding: 88px 64px;
    gap: 28px;
  }

  .v10p-guest-title {
    max-width: 900px;
    font-size: clamp(32px, 4vw, 38px);
  }
}

@media (max-width: 767px) {
  .v10p-guest-screen {
    padding: 32px 12px 16px;
  }

  .v10p-guest-panel {
    min-height: auto;
    padding: 64px 20px;
    gap: 24px;
  }

  .v10p-guest-title {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
  }

  .v10p-guest-actions {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: stretch;
  }

  .v10p-guest-actions__button,
  .v10p-guest-actions__button--ghost,
  .v10p-guest-actions__button--primary {
    width: 100%;
  }
}

@media (max-width: 483px) {
  .v10p-guest-panel {
    padding: 56px 14px;
  }

  .v10p-guest-title {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.14;
  }
}
