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

body {
  font-family: "Inter", sans-serif;
  background-color: rgb(248, 244, 240);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(45, 42, 36);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 20px;
}

.card {
  background-color: rgb(255, 255, 255);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  max-width: 480px;
  width: 100%;
  padding: 40px 30px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
  border-bottom-left-radius: 48px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 20px 40px, rgba(0, 0, 0, 0.04) 0px 8px 16px;
  text-align: center;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.avatar {
  width: 450px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border-top-width: 4px;
  border-top-style: solid;
  border-top-color: rgb(230, 221, 212);
  border-right-width: 4px;
  border-right-style: solid;
  border-right-color: rgb(230, 221, 212);
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: rgb(230, 221, 212);
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: rgb(230, 221, 212);
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  font-family: serif;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.subtitle {
  font-size: 16px;
  color: rgb(107, 98, 88);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
  margin-bottom: 32px;
}

.social-links a {
  color: rgb(45, 42, 36);
  font-size: 24px;
  transition-property: color, transform;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

.social-links a:hover {
  color: rgb(184, 166, 154);
  transform: scale(1.05);
}

.buttons {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
}

.btn {
  display: inline-block;
  background-color: rgb(240, 235, 230);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(45, 42, 36);
  padding: 14px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  font-weight: 500;
  transition-property: background, transform;
  transition-duration: 0.2s, 0.1s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  cursor: pointer;
}

.btn-primary {
  background-color: rgb(45, 42, 36);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(255, 255, 255);
}

.btn-primary:hover {
  background-color: rgb(31, 28, 23);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.btn-secondary:hover {
  background-color: rgb(227, 217, 209);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.btn:active {
  transform: scale(0.97);
}

.btn i {
  margin-right: 8px;
}

.lang-btn.active {
  background-color: rgb(255, 255, 255);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(45, 42, 36);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 4px;
}

.lang-btn:hover:not(.active) {
  color: rgb(45, 42, 36);
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgb(240, 235, 230);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(45, 42, 36);
  font-size: 22px;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  transition-property: background, color, transform;
  transition-duration: 0.25s, 0.25s, 0.2s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-behavior: normal, normal, normal;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 4px;
}

.social-btn:hover {
  background-color: rgb(45, 42, 36);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(255, 255, 255);
  transform: translateY(-3px);
}

.social-btn:active {
  transform: scale(0.94);
}

.terms-link:hover {
  color: rgb(184, 166, 154);
}

.footer-tagline {
  font-size: 15px;
  color: rgb(107, 98, 88);
  letter-spacing: 0.2px;
  margin-top: 4px;
  position: relative;
  bottom: var(--space-xs);
}

.social-btn img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition-property: filter;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.social-btn:hover img {
  filter: brightness(0) invert(1);
}

.avatar:hover {
  transform: scale(1.02);
}

.age-checkbox {
  display: none;
}

.age-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Inter", sans-serif;
}

.age-modal {
  background-color: rgb(255, 255, 255);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  max-width: 400px;
  width: 90%;
  padding: 40px 30px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 60px;
}

.age-modal h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgb(45, 42, 36);
}

.age-modal p {
  font-size: 16px;
  color: rgb(107, 98, 88);
  margin-bottom: 28px;
  line-height: 1.5;
}

.age-btn {
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  padding: 14px 40px;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.age-btn-yes {
  background-color: rgb(45, 42, 36);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(255, 255, 255);
}

.age-btn-yes:hover {
  background-color: rgb(31, 28, 23);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.age-btn-no {
  background-color: rgb(240, 235, 230);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  color: rgb(45, 42, 36);
}

.age-btn-no:hover {
  background-color: rgb(227, 217, 209);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.age-checkbox:checked ~ .age-overlay {
  display: none;
}

.page-content {
  position: relative;
  z-index: 1;
}