body {
  margin: 0;
  font-family: Inter, sans-serif;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top-bar {
  height: 20px;
  background: #0e3f5c;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.logoXL {
  font-size: 120px;
  color: #66b8ff;
  margin: 0;
  line-height: 1;
}
.logoSub {
  font-size: 60px;
  color: #0e3f5c;
  margin: 0;
  line-height: 1;
}
.tag {
  margin: 10px 0 30px;
  font-size: 24px;
  font-family: "Bradley Hand", cursive, sans-serif;
}
.ctaRow {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.btn {
  padding: 15px 25px;
  font-size: 20px;
  border: 2px solid #0e3f5c;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Bradley Hand", cursive, sans-serif;
}
.footer {
  margin: 40px;
  text-align: right;
}
.bar {
  height: 20px;
  background: #0e3f5c;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.card {
  background: #fff;
  padding: 10px;
  border: 2px solid #0e3f5c;
  border-radius: 10px;
  max-width: 500px;
  width: 80%;
  position: relative;
  overflow-y: auto;
  max-height: 80vh;
}
.closeX {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
}
label {
  display: block;
  margin: 8px 0;
  text-align: left;
}
input, textarea {
  width: 100%;
  padding: 6px;
  margin-top: 4px;
}
button[type="submit"] {
  padding: 8px 16px;
  font-size: 14px;
  border: 2px solid #0e3f5c;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}
h2 {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: Inter, sans-serif;
}