
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #1A2F5F 0%, #2C4E90 100%);

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

  .outer-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .card {
    position: relative;  
    width: 90%;
    max-width: 400px;
    min-height: 500px;
    background-color: #2F3D6C;
    border-radius: 16px;
    padding: 60px 20px 80px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    text-align: center;
  }
  
  .share-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
  }
  .share-btn:hover {
    background-color: rgba(255,255,255,0.1);
  }
  .share-btn img {
    width: 22px;
    height: 22px;
  }
  
  .logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
  }
  
  h1 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
  }
  p {
    font-size: 1rem;
    color: #cfcfcf;
    margin-bottom: 40px;
  }
  
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }
  .store-button {
    flex: 1;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px;
    cursor: pointer;
    background-color: #455C9F;
    color: #fff;
    transition: background-color 0.3s ease;
  }
  .store-button:hover {
    background-color: #5A72B5;
  }
  
  .brand-icon {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .brand-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
  }
  
  
  @media (min-width: 480px) {
    .button-group {
      flex-direction: row;
    }
  }

  .store-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px; 
    vertical-align: middle;
  }
  
  
