:root {
    --font: monospace;
    --background: #000000;
    --color: #ffffff;
    --trans1: #5BCEFA;
    --trans2: #F5A9B8;
}

body {
    background: var(--background);
    color: var(--color);
    font-family: var(--font);
    font-size: 0.9rem;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    display: flex;
    min-height: 100vh;
    min-width: 100vw;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
.admin-gate {
  user-select: none;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.55;
  z-index: 10;
  display: flex;
  gap: 4px;
  align-items: center;
}



.admin-gate input[type="text"],
.admin-gate input[type="password"] {
  background: #0b0b0b;
  border: 1px solid #333;
  color: #aaa;
  font-family: monospace;
  font-size: 11px;
  padding: 4px 6px;
}

.admin-gate input[readonly] {
  color: #666;
  border-color: #222;
  cursor: not-allowed;
}

.admin-gate button {
  background: #222;
  border: 1px solid #666;
  color: #eee;
  padding: 4px 8px;
  cursor: pointer;
  font-family: monospace;
  font-size: 11px;
}


.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 auto;
    margin: 0;
}

.photo-container {
    user-select: none;
    pointer-events: none;
    position: relative;
    width: 172px;
    height: 172px;
    margin: 36px auto 4px;
    display: block;
}

#JannaPhoto {
    width: 160px;
    height: 160px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 42%;
    border: solid var(--trans2) 3px;
    z-index: 1;
}

#Janna {
    user-select: none;
    width: 100%;
    font-weight: 400;
    text-decoration: none;
    font-size: 39px;
    line-height: 0.1;
    display: block;
    color: var(--trans2);
    z-index: 1;
}

.pronoun-badge {
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

img {
    user-select: none;
    pointer-events: none;
}

p {
    text-shadow: 1px 1px 4px #aaa;
    font-size: 0.93rem;
    margin: 20px auto;
    max-width: 540px;
    z-index: 1;
}

#links {
    z-index: 1;
    width: 370px;
    display: block;
    margin: 15px auto;
}

.link {
    background: var(--trans2);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
    padding: 8px;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 10px;
    border: solid var(--color) 3px;
    text-align: center;
    text-decoration: none;
    color: #000;
    word-wrap: break-word;
}

.link:hover {
    background: linear-gradient(to bottom, var(--trans1), var(--trans2), var(--color), var(--trans2), var(--trans1));
    border: solid var(--trans1) 3px;
    text-shadow: 1px 1px 2px black;
}

footer {
    pointer-events: none;
    margin-top: 40px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #1A1A1A;
    width: 100%;
    height: 38px;
    background: #000;
    text-align: center;
    font-size: 0.80rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 69;
}
