.base-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.landing-header {
    height: calc(100vh - env(safe-area-inset-bottom));
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.5);
    position: relative;
    text-align: center;
    background: linear-gradient(4deg, #000000, #3a1515 0%, #140a0a 90.76%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.capriroso-logo {
    width: 103px
}

header h1 {
    color: white;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 14px;
    padding-top: 12px
}

header h2 {
    color: white;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 14px;
    padding-top: 12px
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  background: #140a0a;
  color: #bbb; /* muted gray text */
}

footer .footer-link {
  margin-left: 0.5rem;
  color: #999; /* subtle gray */
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

footer .footer-link:hover {
  color: #e10600; /* Rosso Corsa red on hover */
  text-decoration: underline;
}
