<style>
  :root {
    --navy: #071526;
    --gold: #d5aa55;
    --white: #ffffff;
  }

  * {
    box-sizing: border-box;
  }

  html,
  body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    background-color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
  }

  body {
    min-height: 100vh;
    overflow-x: hidden;
  }

  .splash {
    position: fixed;
    width: 100%;
    min-height: 100%;
    min-height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #071526 !important;
  }

  .hero-image {
    display: block;
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .quick-actions {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    display: flex;
    gap: 10px;
    z-index: 5;
  }

  .action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(213, 170, 85, .85);
    border-radius: 999px;
    background: rgba(7, 21, 38, .88);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    -webkit-text-fill-color: #ffffff;
    transition: transform .2s ease, background .2s ease;
  }

  .action:hover,
  .action:focus-visible {
    transform: translateY(-2px);
    background: rgba(17, 39, 63, .96);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  @media (max-width: 720px) {
    .hero-image {
      width: 100%;
      height: auto;
      max-height: none;
    }

    .quick-actions {
      position: fixed;
      right: max(16px, env(safe-area-inset-right));
      bottom: max(16px, env(safe-area-inset-bottom));
      display: flex;
      gap: 10px;
      z-index: 5;
    }

    .action {
      flex: 1; 
      max-width: 220px; 
      padding-inline: 12px; 
    }
  }
</style>
