* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    background: radial-gradient(circle at center, #0f1f2f 0%, #07121c 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
  }
  .container {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
  }

  /* Logo Section */
  .logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 180px; /* Adjust as needed */
    height: auto;
  }

  /* Heading & Subheading */
  h1 {
    color: #ffa500; /* Orange accent */
    font-size: 2.5em;
    margin-bottom: 0.3em;
    letter-spacing: 2px;
  }
  p.subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
  }

  /* Store Icons */
  .store-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .store-buttons a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .store-buttons a:hover {
    transform: scale(1.05);
  }
  .store-icon {
    max-width: 180px; /* Adjust size as needed */
    height: auto;
  }

  /* Device-Specific Message */
  #info-message {
    margin-top: 30px;
    font-size: 1em;
    line-height: 1.4;
    color: #ddd;
  }

  /* Responsive Design */
  @media (max-width: 480px) {
    h1 {
      font-size: 2em;
    }
    .store-icon {
      max-width: 140px;
    }
    p.subtitle {
      font-size: 1em;
    }
  }