﻿    @font-face {
      font-family: "Google Sans";
      font-style: normal;
      font-weight: 400;
      font-display: block;
      src: url("https://fonts.gstatic.com/s/googlesans/v62/4UasrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RPjIUvQ.woff2") format("woff2");
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    @font-face {
      font-family: "Google Sans";
      font-style: normal;
      font-weight: 500;
      font-display: block;
      src: url("https://fonts.gstatic.com/s/googlesans/v62/4UasrENHsxJlGDuGo1OIlJfC6l_24rlCK1Yo_Iqcsih3SAyH6cAwhX9RPjIUvQ.woff2") format("woff2");
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    :root {
      --blue: #1a73e8;
      --blue-hover: #185abc;
      --blue-soft: #e8f0fe;
      --ink: #202124;
      --muted: #5f6368;
      --line: #dadce0;
      --stage: #202124;
      --stage-control: #3c4043;
      --red: #ea4335;
      font-family: "Google Sans", "Product Sans", Roboto, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background: #fff;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
      background: transparent;
    }

    svg {
      width: 21px;
      height: 21px;
      display: block;
      fill: currentColor;
    }

    .hidden {
      display: none !important;
    }

    .home-shell {
      min-height: 100vh;
      display: grid;
      grid-template-rows: 64px 1fr;
    }

    .home-shell.sidebar-collapsed .home-body {
      grid-template-columns: 0 1fr;
    }

    .home-shell.sidebar-collapsed .sidebar {
      width: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 14px 0 4px;
    }

    .brand-area,
    .top-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 24px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .media-error-link {
      color: #8ab4f8;
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .menu-toggle {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #3c4043;
    }

    .menu-toggle:hover {
      background: #f1f3f4;
    }

    .meet-logo {
      width: 36px;
      height: 30px;
      flex: 0 0 auto;
    }

    .brand-image {
      width: 207px;
      height: 58px;
      display: block;
      object-fit: contain;
      object-position: left center;
    }

    .time {
      color: #3c4043;
      font-size: 18px;
      white-space: nowrap;
    }

    .icon-btn {
      width: 34px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #3c4043;
    }

    .icon-btn:hover {
      background: #f1f3f4;
    }

    .top-actions .icon-btn svg {
      width: 21px;
      height: 21px;
    }

    .apps-grid {
      width: 20px;
      height: 20px;
      display: grid;
      grid-template-columns: repeat(3, 4px);
      grid-template-rows: repeat(3, 4px);
      gap: 3px;
      place-content: center;
    }

    .apps-grid span {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #3c4043;
    }

    .home-body {
      display: grid;
      grid-template-columns: 256px 1fr;
      min-height: 0;
      transition: grid-template-columns .2s ease;
    }

    .sidebar {
      padding-top: 20px;
      color: #3c4043;
      transition: opacity .18s ease, width .2s ease;
    }

    .nav-item {
      width: 253px;
      height: 56px;
      display: flex;
      align-items: center;
      gap: 18px;
      padding-left: 14px;
      border-radius: 0 28px 28px 0;
      color: #3c4043;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .nav-item svg {
      width: 21px;
      height: 21px;
      flex: 0 0 auto;
    }

    .nav-item.active {
      color: var(--blue);
      background: var(--blue-soft);
    }

    .home-main {
      min-width: 0;
      display: flex;
      justify-content: center;
      padding: 30px 32px 24px;
    }

    .home-content {
      width: min(760px, 100%);
      text-align: center;
    }

    .headline {
      margin: 2px auto 8px;
      max-width: 660px;
      font-size: 44px;
      line-height: 1.2;
      font-weight: 500;
      letter-spacing: 0;
    }

    .subhead {
      margin: 0 auto 34px;
      max-width: 580px;
      color: #3c4043;
      font-size: 23px;
      line-height: 1.25;
      font-weight: 500;
    }

    .join-row {
      width: min(640px, 100%);
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      padding-bottom: 36px;
      border-bottom: 1px solid #80868b;
    }

    .new-btn {
      height: 48px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 0 19px;
      border-radius: 24px;
      background: var(--blue);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
      white-space: nowrap;
    }

    .new-btn svg {
      width: 19px;
      height: 19px;
    }

    .new-btn:hover {
      background: var(--blue-hover);
    }

    .code-box {
      width: 276px;
      height: 48px;
      display: flex;
      align-items: center;
      gap: 13px;
      border: 1px solid #5f6368;
      border-radius: 14px;
      padding: 0 14px;
      color: #3c4043;
      background: #fff;
    }

    .code-box:focus-within {
      border-color: var(--blue);
      box-shadow: inset 0 0 0 1px var(--blue);
    }

    .code-box input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: 0;
      color: var(--ink);
      background: transparent;
      font-size: 16px;
    }

    .join-btn {
      height: 40px;
      min-width: 48px;
      border-radius: 20px;
      color: #9aa0a6;
      font-weight: 500;
      cursor: default;
    }

    .join-btn.enabled {
      color: var(--blue);
      cursor: pointer;
    }

    .join-btn.enabled:hover {
      background: var(--blue-soft);
    }

    .carousel {
      margin: 82px auto 0;
      display: grid;
      grid-template-columns: 74px minmax(260px, 420px) 74px;
      justify-content: center;
      align-items: center;
      gap: 0;
    }

    .round-arrow {
      width: 40px;
      height: 40px;
      border: 1px solid #80868b;
      border-radius: 50%;
      color: #3c4043;
      display: grid;
      place-items: center;
      justify-self: center;
    }

    .round-arrow:hover {
      background: #f1f3f4;
    }

    .hero-visual {
      display: grid;
      justify-items: center;
      gap: 22px;
    }

    .slide {
      display: none;
      justify-items: center;
      gap: 24px;
      animation: slideIn .24s ease;
    }

    .slide.active {
      display: grid;
    }

    .illustration {
      width: 248px;
      height: 248px;
      border-radius: 50%;
      background: transparent;
      position: relative;
      overflow: hidden;
    }

    .slide-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .illustration.safe .person-left {
      left: 36px;
      bottom: 16px;
      height: 132px;
      background: #fbbc04;
      border-radius: 50px 50px 10px 10px;
      transform: rotate(-24deg);
    }

    .illustration.safe .person-right {
      right: 30px;
      bottom: 10px;
      height: 146px;
      background: #0f9d58;
      border-radius: 60px 60px 10px 10px;
      transform: rotate(18deg);
    }

    .illustration.safe .shield {
      position: absolute;
      left: 50%;
      top: 30px;
      width: 54px;
      height: 62px;
      transform: translateX(-50%);
      background: #2b7de9;
      clip-path: polygon(50% 0, 90% 14%, 90% 55%, 50% 100%, 10% 55%, 10% 14%);
    }

    .illustration.safe .shield::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 27px;
      width: 18px;
      height: 16px;
      border-radius: 3px;
      background: #fff;
    }

    .illustration.safe .shield::after {
      content: "";
      position: absolute;
      left: 20px;
      top: 17px;
      width: 14px;
      height: 15px;
      border: 4px solid #fff;
      border-bottom: 0;
      border-radius: 10px 10px 0 0;
    }

    .calendar-card {
      position: absolute;
      left: 47px;
      top: 38px;
      width: 158px;
      height: 164px;
      border-radius: 16px;
      background: #d2e3fc;
      overflow: hidden;
      box-shadow: 0 8px 0 rgba(66, 133, 244, .08);
    }

    .calendar-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 52px;
      background: #2b7de9;
      border-radius: 16px 16px 0 0;
    }

    .calendar-card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 52px;
      height: 112px;
      background:
        linear-gradient(#b8d0fb 1px, transparent 1px) 0 0 / 23px 23px,
        linear-gradient(90deg, #b8d0fb 1px, transparent 1px) 0 0 / 23px 23px;
    }

    .calendar-panel {
      position: absolute;
      right: 36px;
      top: 100px;
      width: 58px;
      height: 90px;
      border-radius: 4px;
      background: #fff;
      box-shadow: 0 3px 10px rgba(60, 64, 67, .16);
    }

    .calendar-panel span {
      position: absolute;
      left: 14px;
      width: 30px;
      height: 4px;
      border-radius: 3px;
      background: #8ab4f8;
    }

    .calendar-panel span:nth-child(1) {
      top: 24px;
    }

    .calendar-panel span:nth-child(2) {
      top: 46px;
    }

    .calendar-panel span:nth-child(3) {
      top: 68px;
    }

    .calendar-panel i {
      position: absolute;
      left: 6px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
    }

    .calendar-panel i:nth-of-type(1) {
      top: 24px;
      background: #4285f4;
    }

    .calendar-panel i:nth-of-type(2) {
      top: 46px;
      background: #34a853;
    }

    .calendar-panel i:nth-of-type(3) {
      top: 68px;
      background: #fbbc04;
    }

    .table {
      position: absolute;
      left: 56px;
      right: 56px;
      bottom: 76px;
      height: 7px;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 0 0 1px #d2e3fc;
    }

    .table::before,
    .table::after {
      content: "";
      position: absolute;
      top: 6px;
      width: 4px;
      height: 62px;
      background: #fff;
      transform-origin: top;
    }

    .table::before {
      left: 38px;
      transform: rotate(13deg);
    }

    .table::after {
      right: 38px;
      transform: rotate(-13deg);
    }

    .person-left,
    .person-right {
      position: absolute;
      bottom: 52px;
      width: 72px;
      height: 96px;
      border-radius: 40px 40px 18px 18px;
    }

    .person-left {
      left: 36px;
      background: #fbbc04;
      transform: rotate(-18deg);
    }

    .person-right {
      right: 34px;
      background: #0f9d58;
      transform: rotate(18deg);
    }

    .head-left,
    .head-right {
      position: absolute;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      top: -12px;
      background: #f29974;
    }

    .head-left {
      left: 10px;
    }

    .head-right {
      right: 10px;
      background: #6d4c41;
    }

    .link-icon {
      position: absolute;
      left: 50%;
      top: 32px;
      width: 58px;
      height: 58px;
      transform: translateX(-50%);
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #2b7de9;
      color: #fff;
    }

    .carousel-title {
      margin: 0;
      font-size: 26px;
      font-weight: 500;
    }

    .carousel-copy {
      margin: -12px auto 0;
      max-width: 300px;
      font-size: 14px;
      line-height: 1.35;
      color: #202124;
      font-weight: 400;
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: -4px;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: 1px solid var(--blue);
      background: #fff;
      padding: 0;
    }

    .dot.active {
      background: #1a73e8;
    }

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

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

    .learn {
      width: min(640px, 100%);
      margin: 28px auto 0;
      font-size: 13px;
      color: #3c4043;
      text-align: left;
    }

    .learn a {
      color: var(--blue);
    }

    .meeting {
      min-height: 100vh;
      display: none;
      grid-template-rows: 1fr 82px;
      background: var(--stage);
      color: #fff;
    }

    .waiting-room {
      min-height: 100vh;
      display: none;
      position: relative;
      background: #121314;
      color: #e8f0fe;
      overflow: hidden;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
    }

    .waiting-room.active {
      display: block;
    }

    .waiting-center {
      position: absolute;
      left: 50%;
      top: 48%;
      transform: translate(-50%, -50%);
      width: min(640px, calc(100% - 40px));
      display: grid;
      justify-items: center;
      gap: 34px;
      text-align: center;
    }

    .waiting-illustration {
      width: min(320px, 68vw);
      display: block;
      contain: paint;
    }

    .waiting-message {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: #c9e7ff;
      font-size: 24px;
      line-height: 1.3;
      font-weight: 500;
    }

    .tiny-spinner {
      width: 17px;
      height: 17px;
      border: 3px solid rgba(95, 185, 255, .28);
      border-top-color: #5fb9ff;
      border-radius: 50%;
      animation: spin .9s linear infinite;
      flex: 0 0 auto;
    }

    .waiting-preview {
      position: absolute;
      right: 24px;
      bottom: 94px;
      width: min(452px, calc(100vw - 48px));
      height: min(253px, calc((100vw - 48px) * .56));
      max-height: 253px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 50% 52%, rgba(140, 86, 62, .42), transparent 28%),
        linear-gradient(110deg, #642715, #70301d 52%, #5a2314);
      box-shadow: 0 4px 18px rgba(0, 0, 0, .48);
      overflow: hidden;
    }

    .waiting-avatar {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: #744536;
      color: #fff;
      font-size: 26px;
      font-weight: 500;
    }

    .waiting-name {
      position: absolute;
      left: 12px;
      bottom: 8px;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .waiting-muted {
      position: absolute;
      right: 10px;
      top: 10px;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(115, 43, 22, .78);
      color: #ffb59c;
    }

    .waiting-muted svg {
      width: 19px;
      height: 19px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .waiting-controls {
      position: absolute;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 11px 14px;
      border-radius: 30px;
      background: #2b2c2f;
    }

    .waiting-controls .call-control {
      width: 48px;
      height: 48px;
      background: #3c4043;
      color: #fff;
    }

    .waiting-controls .call-control:hover {
      background: #4b4f52;
    }

    .waiting-controls .call-control.end {
      width: 72px;
      height: 48px;
      border-radius: 24px;
      background: #ea4335;
    }

    .waiting-controls .call-control svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.05;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .waiting-controls .call-control.grouped {
      width: 86px;
      grid-template-columns: 26px 44px;
      gap: 2px;
      padding: 0 7px;
      border-radius: 24px;
      background: #33363a;
    }

    .waiting-controls .call-control.grouped .control-main svg {
      width: 22px;
      height: 22px;
      stroke-width: 2.15;
    }

    .waiting-controls .call-control svg .filled {
      fill: currentColor;
      stroke: none;
    }

    .snackbar {
      position: fixed;
      left: 24px;
      bottom: 28px;
      min-width: min(647px, calc(100vw - 48px));
      min-height: 48px;
      display: flex;
      align-items: center;
      padding: 0 16px;
      border-radius: 3px;
      background: #3c4043;
      color: #f1f3f4;
      box-shadow: 0 5px 16px rgba(60, 64, 67, .35);
      font-family: "Google Sans", Roboto, Arial, sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity .2s ease, transform .2s ease;
      z-index: 50;
    }

    .snackbar.active {
      opacity: 1;
      transform: translateY(0);
    }

    .joining-overlay {
      position: fixed;
      inset: 0;
      z-index: 35;
      display: none;
      place-items: center;
      background: rgba(0, 0, 0, .88);
      color: #e8eaed;
      font-size: 34px;
      font-weight: 400;
      letter-spacing: 0;
    }

    .joining-overlay.active {
      display: grid;
    }

    .joining-card {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      transform: translateY(-34px);
    }

    .joining-dots {
      width: 28px;
      display: inline-block;
      overflow: hidden;
      animation: joiningDots 1.1s steps(4, end) infinite;
      white-space: nowrap;
    }

    @keyframes joiningDots {
      0% {
        width: 0;
      }
      100% {
        width: 28px;
      }
    }

    .meeting.active {
      display: grid;
    }

    .meeting-main {
      min-height: 0;
      display: grid;
      grid-template-columns: 1fr minmax(310px, 360px);
      gap: 16px;
      padding: 16px 16px 0;
    }

    .meeting-main.panel-closed {
      grid-template-columns: 1fr 0;
      gap: 0;
    }

    .stage {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(170px, 1fr));
      gap: 8px;
      align-content: center;
    }

    .tile {
      position: relative;
      min-height: 168px;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--a), var(--b));
    }

    .tile.speaking {
      outline: 3px solid #8ab4f8;
      outline-offset: -3px;
    }

    .tile::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 34% 26%, rgba(255, 255, 255, .18), transparent 24%);
    }

    .face {
      position: absolute;
      left: 50%;
      top: 48%;
      width: 98px;
      height: 98px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, .22);
      color: #fff;
      font-size: 34px;
      font-weight: 700;
      backdrop-filter: blur(14px);
    }

    .tile-name {
      position: absolute;
      left: 12px;
      bottom: 10px;
      max-width: calc(100% - 56px);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-shadow: 0 1px 3px rgba(0, 0, 0, .65);
      font-size: 13px;
      font-weight: 600;
    }

    .tile-status {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(32, 33, 36, .76);
    }

    .side-panel {
      min-height: 0;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
      background: #fff;
      color: var(--ink);
      display: grid;
      grid-template-rows: auto auto 1fr;
    }

    .side-panel.closed {
      display: none;
    }

    .panel-head {
      height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 18px;
      border-bottom: 1px solid #edf0f2;
      font-size: 18px;
      font-weight: 500;
    }

    .tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid #edf0f2;
    }

    .tab {
      height: 48px;
      background: #fff;
      color: var(--muted);
      border-bottom: 3px solid transparent;
      font-weight: 600;
    }

    .tab.active {
      color: var(--blue);
      border-color: var(--blue);
    }

    .panel-body {
      min-height: 0;
      overflow: auto;
      padding: 16px;
    }

    .search {
      height: 42px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px;
      border-radius: 21px;
      background: #f1f3f4;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .search input {
      min-width: 0;
      border: 0;
      outline: 0;
      background: transparent;
    }

    .search input {
      width: 100%;
    }

    .person-row {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      align-items: center;
      gap: 10px;
      min-height: 52px;
    }

    .small-avatar {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--color);
      font-weight: 700;
    }

    .name {
      font-size: 14px;
      color: var(--ink);
    }

    .role {
      margin-top: 2px;
      font-size: 12px;
      color: var(--muted);
    }

    .control-bar {
      display: grid;
      grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
      align-items: center;
      gap: 12px;
      padding: 0 16px 14px;
      background: var(--stage);
    }

    .meeting-title {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 15px;
      color: #f1f3f4;
    }

    .call-controls,
    .meeting-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .call-controls {
      justify-content: center;
    }

    .meeting-actions {
      justify-content: flex-end;
    }

    .call-control {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--stage-control);
      color: #fff;
    }

    .call-control:hover,
    .meeting-actions .icon-btn:hover,
    .meeting-actions .icon-btn.active {
      background: #4b4f52;
    }

    .call-control.off {
      background: var(--red);
    }

    .call-control.end {
      width: 58px;
      border-radius: 22px;
      background: var(--red);
    }

    .badge-wrap {
      position: relative;
    }

    .people-badge {
      position: absolute;
      right: 2px;
      top: 0;
      min-width: 17px;
      height: 17px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #8ab4f8;
      color: #202124;
      font-size: 11px;
      font-weight: 700;
    }

    .meeting.meet-call {
      grid-template-rows: 56px minmax(0, 1fr) 86px;
      background: #111214;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
    }

    .meet-call button,
    .meet-call input {
      font-family: inherit;
    }

    .call-topline {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
      color: #e8eaed;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
    }

    .call-topline .divider {
      width: 1px;
      height: 20px;
      background: #5f6368;
    }

    .meeting-code {
      color: #f1f3f4;
      font-size: 16px;
      font-weight: 500;
    }

    .call-info {
      width: 18px;
      height: 18px;
      color: #bdc1c6;
    }

    .call-participant-badge {
      position: fixed;
      right: 24px;
      top: 14px;
      height: 36px;
      min-width: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 20px;
      background: #2b2c2f;
      color: #e8eaed;
      font-weight: 700;
      z-index: 4;
      display: none;
    }

    .call-participant-badge .mini-stack {
      position: relative;
      width: 24px;
      height: 22px;
    }

    .call-participant-badge .mini-dot {
      position: absolute;
      width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #607d8b;
      border: 2px solid #2b2c2f;
      color: #d7edf7;
      font-size: 9px;
      font-weight: 700;
    }

    .meet-call.media-error-active {
      width: 100vw;
      max-width: 100vw;
      overflow: hidden;
    }
    .meet-call.media-error-active .call-topline,
    .meet-call.media-error-active .call-participant-badge,
    .meet-call.media-error-active .meeting-main,
    .meet-call.media-error-active .control-bar {
      filter: blur(30px);
      opacity: .04;
      pointer-events: none;
      user-select: none;
      transition: filter .35s ease, opacity .35s ease;
    }

    .media-error-overlay {
      position: fixed;
      inset: 0;
      z-index: 30;
      display: none;
      place-items: center;
      padding: 28px;
      background: rgba(17, 18, 20, .9);
      backdrop-filter: blur(2px);
      pointer-events: none;
    }

    .meet-call.media-error-active .media-error-overlay {
      display: grid;
    }

    .media-error-content {
      width: min(980px, calc(100vw - 56px));
      display: grid;
      grid-template-columns: minmax(300px, .9fr) minmax(360px, 1fr);
      align-items: center;
      gap: 56px;
      color: #e8eaed;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
      animation: slideIn .18s ease-out;
    }

    .media-error-main {
      display: grid;
      justify-items: center;
      text-align: center;
    }

    .media-error-image {
      width: min(360px, 100%);
      display: block;
      margin: 0 auto 30px;
      contain: paint;
    }

    .media-error-title {
      margin: 0;
      color: #f1f3f4;
      font-size: 32px;
      line-height: 1.25;
      font-weight: 500;
      letter-spacing: 0;
    }

    .media-error-copy {
      width: 100%;
      margin: 0;
      color: #bdc1c6;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
      font-size: 18px;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: 0;
      text-align: left;
    }

    .media-error-intro {
      margin: 0;
      color: #f1f3f4;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
      font-weight: 500;
    }

    .media-error-steps {
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      counter-reset: media-error-step;
      display: grid;
      gap: 18px;
    }

    .media-error-steps li {
      position: relative;
      padding-left: 42px;
      counter-increment: media-error-step;
    }

    .media-error-steps li::before {
      content: counter(media-error-step);
      position: absolute;
      left: 0;
      top: 1px;
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #8ab4f8;
      color: #202124;
      font-size: 14px;
      font-weight: 500;
    }

    .media-error-steps span {
      display: block;
      color: #f1f3f4;
      font-size: 16px;
      font-weight: 500;
    }

    .media-error-steps small {
      display: block;
      margin-top: 4px;
      color: #bdc1c6;
      font-size: 14px;
      line-height: 1.4;
    }

    .call-participant-badge .mini-dot:first-child {
      left: 0;
      top: 0;
    }

    .call-participant-badge .mini-dot:last-child {
      right: 0;
      bottom: 0;
    }

    .meet-call .meeting-main {
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 16px;
      padding: 16px 20px 12px 16px;
    }

    .meet-call .meeting-main.panel-closed {
      grid-template-columns: minmax(0, 1fr) 0;
      gap: 0;
      padding-right: 16px;
    }

    .meet-call .stage {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(310px, 452px);
      grid-template-rows: minmax(0, 1fr);
      gap: 12px;
      align-content: stretch;
      align-items: stretch;
      min-height: 0;
      position: relative;
    }

    .stage-main {
      position: relative;
      height: 100%;
      min-height: 0;
      border-radius: 20px;
      overflow: hidden;
      background: #0a4a68;
    }

    .video-tile {
      position: relative;
      overflow: hidden;
      background: #0a4a68;
      color: #fff;
    }

    .video-tile.camera-on {
      background:
        radial-gradient(circle at 50% 52%, rgba(46, 97, 115, .55), transparent 26%),
        linear-gradient(110deg, #073c56, #0d4f70 52%, #073c56);
    }

    .video-tile.camera-on::before {
      content: "";
      position: absolute;
      inset: -20%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
      animation: cameraShimmer 7s ease-in-out infinite;
    }

    .video-tile video {
      width: 100%;
      height: 100%;
      display: none;
      object-fit: cover;
    }

    .video-tile.has-video video {
      display: block;
    }

    .video-tile.has-video::before {
      display: none;
    }

    .main-speaker {
      width: 100%;
      height: 100%;
      min-height: 0;
      border-radius: 20px;
    }

    .tile-avatar {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 96px;
      height: 96px;
      display: grid;
      place-items: center;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: #536770;
      color: #fff;
      font-size: 52px;
      font-weight: 500;
    }

    .video-tile.camera-on .tile-avatar {
      display: none;
    }

    .video-tile .tile-name {
      position: absolute;
      left: 16px;
      bottom: 14px;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .65);
      z-index: 3;
    }

    .tile-muted {
      display: none;
    }

    .guest-tile .tile-muted {
      position: absolute;
      right: 14px;
      top: 14px;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(115, 43, 22, .78);
      color: #ffb59c;
      z-index: 2;
    }

    .tile-muted svg {
      width: 19px;
      height: 19px;
    }

    .call-thumbnails {
      height: 100%;
      min-height: 0;
      display: grid;
      grid-template-rows: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .mini-video-tile {
      min-height: 0;
      border-radius: 14px;
      box-shadow: none;
    }

    .mini-video-tile .tile-avatar {
      width: 50px;
      height: 50px;
      font-size: 28px;
    }

    .mini-video-tile .tile-name {
      left: 12px;
      bottom: 12px;
      font-size: 13px;
    }

    .guest-tile {
      background:
        radial-gradient(circle at 50% 52%, rgba(140, 86, 62, .42), transparent 28%),
        linear-gradient(110deg, #642715, #70301d 52%, #5a2314);
    }

    .guest-tile .tile-avatar {
      background: #744536;
    }

    .meet-call .side-panel {
      border-radius: 18px;
      background: #1f1f1f;
      color: #e8eaed;
      grid-template-rows: auto auto 1fr;
      font-family: "Google Sans", Roboto, Arial, sans-serif;
    }

    .meet-call .panel-head {
      height: 66px;
      border-bottom: 0;
      padding: 0 26px;
      color: #f1f3f4;
      font-size: 20px;
      font-weight: 500;
    }

    .meet-call .panel-head .icon-btn {
      color: #bdc1c6;
    }

    .people-tools {
      padding: 6px 12px 16px;
      display: grid;
      gap: 14px;
    }

    .meet-call .people-tools {
      padding: 0 12px 16px;
    }

    .meet-call .add-people {
      display: inline-flex;
    }

    .add-people {
      justify-self: start;
      height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 18px;
      border-radius: 22px;
      background: #00639b;
      color: #e8f0fe;
      font-size: 14px;
      font-weight: 500;
    }

    .meet-call .search {
      margin: 0;
      height: 48px;
      border: 1px solid #8a8d91;
      border-radius: 8px;
      background: #1f1f1f;
      color: #bdc1c6;
      font-size: 16px;
      font-weight: 400;
    }

    .meet-call .search input {
      color: #e8eaed;
      font-weight: 400;
    }

    .meet-call .panel-body {
      padding: 0 12px 16px;
    }

    .meeting-label {
      margin: 0 0 12px 12px;
      color: #9aa0a6;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .contributors-card {
      margin: 0;
      border: 1px solid #3c4043;
      border-radius: 12px;
      overflow: hidden;
    }

    .contributors-head {
      min-height: 42px;
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 16px;
      padding: 0 20px;
      border-bottom: 1px solid #3c4043;
      color: #f1f3f4;
      font-weight: 500;
      font-size: 14px;
    }

    .meet-call .person-row {
      grid-template-columns: 40px minmax(0, 1fr) 32px 32px;
      min-height: 56px;
      padding: 0 14px 0 20px;
      color: #e8eaed;
      font-size: 14px;
      gap: 10px;
    }

    .meet-call .name {
      color: #f1f3f4;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.2;
    }

    .meet-call .role {
      color: #bdc1c6;
      font-size: 12px;
      line-height: 1.2;
    }

    .meet-call .small-avatar {
      width: 32px;
      height: 32px;
      background: #607d8b;
      font-size: 16px;
      font-weight: 500;
    }

    .meet-call .small-avatar.blue {
      background: #0b57a3;
    }

    .meet-call .small-avatar.teal {
      background: #009688;
    }

    .meet-call .small-avatar.guest {
      background: #744536;
    }

    .person-action {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      color: #bdc1c6;
    }

    .person-action.muted-action {
      color: #c4c7c5;
    }

    .person-action.placeholder {
      visibility: hidden;
    }

    .meet-call .control-bar {
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 16px 12px;
      background: #111214;
    }

    .meet-call .call-controls {
      gap: 7px;
      padding: 11px 14px;
      border-radius: 30px;
      background: #2b2c2f;
      justify-self: center;
      grid-column: 2;
    }

    .meet-call .call-control {
      width: 48px;
      height: 48px;
      background: #3c4043;
    }

    .meet-call .call-control.grouped {
      width: 86px;
      grid-template-columns: 26px 44px;
      gap: 2px;
      padding: 0 7px;
      border-radius: 24px;
      background: #33363a;
    }

    .control-chevron {
      color: #bdc1c6;
      width: 28px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      margin-left: -2px;
    }

    .control-main {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #414448;
      position: relative;
    }

    .control-warning {
      position: absolute;
      right: -2px;
      top: -8px;
      width: 14px;
      height: 18px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: #fbbc04;
      color: #202124;
      font-size: 12px;
      font-weight: 900;
    }

    .meet-call .call-control svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.05;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .meet-call .call-control.grouped .control-main svg {
      width: 22px;
      height: 22px;
      stroke-width: 2.15;
    }

    .meet-call .call-control svg .filled,
    .tool-pill svg .filled {
      fill: currentColor;
      stroke: none;
    }

    .meet-call .call-control.end {
      width: 72px;
      height: 48px;
      border-radius: 24px;
      background: #ea4335;
    }

    .bottom-tools {
      justify-self: end;
      grid-column: 3;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tool-pill {
      height: 56px;
      display: inline-flex;
      align-items: center;
      gap: 18px;
      padding: 0 18px;
      border-radius: 28px;
      background: #2b2c2f;
    }

    .tool-pill .icon-btn {
      color: #e8eaed;
      width: 28px;
    }

    .tool-pill .icon-btn:hover,
    .tool-pill .icon-btn:focus-visible,
    .tool-pill .icon-btn.active {
      background: transparent;
      color: #e8eaed;
    }

    .tool-pill .icon-btn svg,
    .meet-call .person-action svg,
    .meet-call .panel-head .icon-btn svg {
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .meet-call .muted-icon {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tool-pill .icon-btn svg {
      width: 23px;
      height: 23px;
    }

    @keyframes cameraShimmer {
      0%, 100% {
        transform: translateX(-20%);
      }
      50% {
        transform: translateX(20%);
      }
    }

    @media (max-width: 980px) {
      .home-body {
        grid-template-columns: 1fr;
      }

      .sidebar {
        display: none;
      }

      .headline {
        font-size: 38px;
      }

      .subhead {
        font-size: 20px;
      }

      .meeting-main,
      .meeting-main.panel-closed {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: fixed;
        inset: 72px 10px 86px;
        z-index: 5;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
      }

      .stage {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
      }

      .meet-call .stage {
        grid-template-columns: 1fr;
      }

      .meet-call .call-thumbnails {
        grid-template-columns: repeat(3, minmax(130px, 1fr));
        grid-template-rows: minmax(120px, 160px);
      }

      .media-error-content {
        width: min(860px, calc(100vw - 40px));
        grid-template-columns: minmax(260px, .85fr) minmax(320px, 1fr);
        gap: 40px;
      }

      .media-error-image {
        width: min(320px, 100%);
      }
    }

    @media (max-width: 680px) {
      .topbar {
        padding-left: 10px;
      }

      .brand span,
      .time,
      .top-actions .icon-btn:nth-of-type(n+2) {
        display: none;
      }

      .home-main {
        padding: 20px 18px 28px;
      }

      .brand-image {
        width: 180px;
        height: 51px;
      }

      .headline {
        font-size: 32px;
      }

      .subhead {
        font-size: 17px;
      }

      .join-row {
        display: grid;
        border-bottom-color: var(--line);
      }

      .learn {
        width: 100%;
        margin-top: 30px;
        text-align: center;
      }

      .new-btn,
      .code-box {
        width: 100%;
        justify-content: center;
      }

      .carousel {
        margin-top: 46px;
        grid-template-columns: 44px 1fr 44px;
      }

      .illustration {
        width: 200px;
        height: 200px;
      }

      .stage {
        grid-template-columns: 1fr;
        align-content: start;
        overflow: auto;
        padding-bottom: 6px;
      }

      .tile {
        min-height: 188px;
      }

      .control-bar {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-bottom: 10px;
      }

      .meeting-title,
      .meeting-actions {
        justify-content: center;
        text-align: center;
      }

      .media-error-overlay {
        align-items: start;
        padding: 18px;
        overflow: auto;
      }

      .media-error-content {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .media-error-image {
        width: min(240px, 70vw);
        margin-bottom: 24px;
      }

      .media-error-copy {
        text-align: left;
      }

      .media-error-steps {
        width: 100%;
        gap: 16px;
      }

      .media-error-title {
        font-size: 26px;
      }

      .media-error-copy {
        font-size: 15px;
      }

    }











