html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  font-size: 2vw;
  background-color: #1a1a1a;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 16vw;
  margin: 0;
  letter-spacing: 2px;
}

.meaning {
  font-size: 1.2em;
  margin-top: 0.5em;
  color: #bbb;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.capthca-box {
  width: 420px;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  color: #000;
}

.capthca-header {
  background-color: #2fc084;
  color: white;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}

.capthca-header small {
  font-size: 12px;
  margin-bottom: 2px;
}

.capthca-header strong {
  font-size: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 10px;
}

.image-grid div {
  width: 128px;
  height: 128px;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.image-grid div.selected::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 192, 132, 0.5);
  box-shadow: inset 0 0 0 2px #2fc084;
  border-radius: 3px;
}

.footer-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.icons {
  display: flex;
  gap: 8px;
}

.verify-button {
  background-color: #2fc084;
  color: white;
  border: none;
  padding: 6px 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.verify-button:hover {
  background-color: #27a373;
}
.footer-content {
/*    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #B1ADAE;*/
}
.footer-ecc {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    color: #B1ADAE;
    text-transform: lowercase;
}

.footer-ecc a {
  color: #B8B6B7;
  text-decoration: none;
}

.footer-ecc:hover {
  color: #2fc084;
}
.footer-about {
    font-family: 'Archivo', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    color: #B1ADAE;
    margin: 0.6rem;
}

.footer-about a {
  color: #fff;
  text-decoration: none;
}

.footer-about:hover {
  color: #2fc084;
}
.footer-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 0.4rem;
    color: #B1ADAE;
    text-transform: lowercase;
}