.odyssey-unavailable {
    background-color: #000000;
    overflow: hidden;
    font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
    color: #ffffff;
    font-weight: 400;
  }

.odyssey-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
    width: 100vw;
}

.logo-section {width: 20vw;display: flex;justify-content: center;align-items: center;}

.content-wrapper {
    width: 28vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
      max-width: calc(400px - 30px);
      width: 100%;
      min-width: calc(300px - 30px);
}

.message-card {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #161616;
    padding: 46px 54px 46px 56px;
    border-radius: 10px;
    text-align: center;
    min-width: 300px;
}
.message-card .home-button {
    background: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
}
.error-description {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    align-self: stretch;
    margin-top: 20px;
    font-weight: 400;
    color: #E4E4E4;
}

.home-button {
    background-color: #007bff;
    color: #fff;
}
  
  .error-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: auto;
    margin-bottom: 20px;
  }
  .error-message {
    font-size: 30px;
    text-align: center;
    align-self: stretch;
    font-family: Manrope;
    margin-top: 14px;
    font-weight: 700;
  }
  .home-button {
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 1) !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 1) !important;
    margin-top: 40px;
    min-width: 150px;
    max-width: 100%;
    padding: 15px 23px !important;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .home-button:hover,
  .home-button:focus {
    background-color: #3989F9 !important;
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none;
    border-color: #3989F9 !important;
  }
  
  .home-button:focus-visible {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    outline: none;
  }
  
  @media screen and (min-width: 769px) and (max-width: 991px) {
    .logo-section {
      width: 30%;
    }
    .content-wrapper {
      width: 40%;
    }
    
  }
  @media (max-width: 768px) {
    .odyssey-container {
      flex-direction: column;
      padding: 20px;
    }
    .logo-section, .content-wrapper {
      width: 100%;
      margin-bottom: 20px;
    }
    .message-card {
      min-width: 270px;
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .error-message {
      font-size: 24px;
    }
    .error-description {
      font-size: 16px;
    }
    .home-button {
      font-size: 14px;
      padding: 12px 20px !important;
    }
  }
  
  .logo-wrapper {
        display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
