@font-face {
  font-family: "Village";
  src: url("assets/Village.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #050606;
  color: #e7e5dd;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid #77705b;
}

.portal {
  width: min(100% - 48px, 400px);
  margin: auto;
  padding-top: 48px;
}

.identity { text-align: center; }

.brand {
  display: block;
  width: min(100%, 310px);
  height: auto;
  margin: 0 auto 28px;
}

h1 {
  margin: 0;
  font-family: "Village", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: #b7ae95;
}

.access {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #292b28;
}

label {
  display: block;
  margin-bottom: 12px;
  color: #aaa99f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

input {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid #3b3d37;
  border-radius: 0;
  background: #0d0f0e;
  color: #eeece4;
  font: 18px Arial, Helvetica, sans-serif;
  letter-spacing: 0.25em;
}

button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  padding: 16px 20px;
  border: 1px solid #b7ae95;
  border-radius: 0;
  background: #b7ae95;
  color: #10120f;
  font: 600 10px/1.5 Arial, Helvetica, sans-serif;
  letter-spacing: 0.16em;
  cursor: pointer;
}

button:hover { background: #cbc2a9; border-color: #cbc2a9; }
button span { font-size: 19px; line-height: 1; }
input:focus-visible, button:focus-visible { outline: 2px solid #e4dac0; outline-offset: 4px; }

.status {
  min-height: 34px;
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #aaa99f;
  text-align: center;
}

footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 16px 28px;
  color: #93958b;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-align: center;
}

.channel-mark { width: 5px; height: 5px; border: 1px solid #93958b; }

@media (max-height: 740px) {
  .portal { padding-top: 28px; }
  .brand { width: 230px; margin-bottom: 18px; }
  .access { margin-top: 24px; padding-top: 24px; }
  footer { padding-top: 24px; }
}

.session-portal { width: min(100% - 24px, 1600px); padding-top: 12px; }
.session-portal .brand { width: 90px; margin-bottom: 8px; }
.session-portal .identity h1 { font-size: 14px; }
.session-portal .status { min-height: 0; margin: 8px 0; }
#conference { height: 75vh; min-height: 400px; width: 100%; background: #0d0f0e; }
#conference iframe { border: 0; }
