@font-face {
  font-family: "Product Sans";
  src: url("fonts/productsans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  font-family: "Product Sans", "Roboto", "Arial", sans-serif;
  color: #202124;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.meet-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 24px;
}

.auth-logo {
  height: 40px;
}

/* MAIN CONTENT */
.meet-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 135px;
  gap: 10px;
}

/* VIDEO PREVIEW */
.video-preview {
  width: 740px;
  height: 416px;
  background: #202124;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  position: relative; /* Base for overlay */
  overflow: hidden;
  color: #fff;
}

.video-ui {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-family: "Product Sans", sans-serif;
}

.video-ui-top {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.video-ui-top span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.video-ui-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: -20px; /* Slight lift */
}

.threeDots {
  width: 25px;
  filter: brightness(0) invert(1);
}

.prompt-text {
  font-size: 19px; /* Reduced slightly to ensure it stays on one line */
  font-weight: 400;
  max-width: none; /* Allow full width for one line */
  white-space: nowrap; /* Forces one line as requested */
  line-height: 1.3;
}

.allow-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-family: "Product Sans", sans-serif;
  font-size: 15px;
  font-weight: 600; /* Bolder as requested */
  cursor: pointer;
}

.video-ui-bottom {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 4px;
}

.control-btn {
  width: 55px; /* Restored to circular */
  height: 55px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.control-btn:hover {
  background-color: #555;
  transition: 0.5s;
}

.control-btn.muted {
  background: #3c4043; /* Darker as in original */
}

.control-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  /* Removed aggressive filters to fix 'black square' bug */
}

.badge-warning {
  position: absolute;
  top: 5px;
  right: 8px;
  width: 14px;
  height: 20px;
  background: #fbbc04; /* Google Yellow */
  border-radius: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #000;
  font-weight: 700;
  border: 1.5px solid #202124; /* Masking border */
}

.top-right-dots {
  font-size: 20px;
  cursor: pointer;
  margin-right: 8px;
}

/* RIGHT CONTENT SECTION */
.right-section {
  width: 440px;
  padding-left: 20px;
  text-align: left;
  position: relative;
}

.status-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.status-title {
  font-family: "Product Sans", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #202124;
}

.status-subtitle {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 30px;
}

.circle-spinner {
  width: 44px;
  height: 44px;
  border: 4.5px solid #f1f3f4;
  border-top: 4.5px solid #1a73e8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* RECAPTCHA BOX STYLE */
.recaptcha-anchor {
  display: none;
  width: 304px;
  height: 78px;
  background-color: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
  margin: 0 auto 30px;
  padding: 0 12px;
  cursor: pointer;
  /* Removed animation for instant appearance as requested */
}

.recaptcha-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.checkbox-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.recaptcha-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s;
}

.recaptcha-checkbox.checked {
  border-color: transparent;
  background: transparent;
}

.recaptcha-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: -2px;
  width: 10px;
  height: 20px;
  border: solid #00a65a;
  border-width: 0 3px 3px 0; /* Thinner checkmark as requested */
  transform: rotate(45deg);
}

.recaptcha-text {
  font-size: 14px;
  color: #000;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
}

.recaptcha-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recaptcha-logo-area img {
  width: 32px;
}

.recaptcha-logo-area span {
  font-size: 8px;
  color: #555;
  margin-top: 2px;
}

/* INSTRUCTION WINDOW (GRAY) */
.instruction-window {
  display: none;
  background-color: #f8f9fa;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 16px 32px 24px; /* Reduced top padding to align with status-title */
  text-align: left;
  animation: slideIn 0.3s ease-out;
  width: 100%;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.steps-title {
  font-family: "Product Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #202124;
}

.steps-subtitle {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 24px;
  line-height: 1.5;
}

.steps-list {
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #3c4043;
  padding: 0;
}

.steps-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steps-list b {
  font-weight: 500;
}

.win-logo {
  height: 18px;
  vertical-align: middle;
}

/* VERIFICATION BOX */
.code-box-black {
  background: #ffffff;
  border: 1px solid #000;
  border-radius: 4px;
  padding: 16px;
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  margin-bottom: 24px;
  color: #202124;
}

/* BUTTON REDESIGNED AS ROUNDED PILL */
.btn-blue {
  background-color: #1a73e8;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 50px; /* Pill shape as requested */
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  float: right;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  font-family: "Product Sans", sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-blue:hover {
  background: #185abc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-btn-row::after {
  content: "";
  display: table;
  clear: both;
}

/* ERROR MESSAGE */
.error-msg {
  color: #d93025;
  font-size: 13px;
  margin-bottom: 15px;
  display: none;
}

.requirement-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.requirement-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  min-width: 160px;
  height: 34px;
  padding: 0 12px;

  background: #f7f7f7;
  border: 1px solid #dcdcdc;
  border-radius: 999px;

  cursor: pointer;
  transition: all 0.2s ease;

  outline: none;
}

.requirement-pill:hover {
  background: #f1f1f1;
  border-color: #cfcfcf;
}

.requirement-pill:active {
  transform: scale(0.98);
}

.pill-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.6;
  flex-shrink: 0;
}

.pill-text {
  font-size: 14px;
  line-height: 1;
  color: #9a9a9a;
  white-space: nowrap;
}

.pill-arrow {
  width: 10px;
  height: 10px;
  object-fit: contain;
  opacity: 0.55;
  flex-shrink: 0;
}

.container-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
