  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(145deg, #1c1c1c, #2e2e2e);
      color: #fff;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      animation: fadeIn 1s ease-in;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .container {
      text-align: center;
      padding: 40px 20px;
      background-color: #2c2c2c;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
      max-width: 500px;
      width: 90%;
      transition: transform 0.3s ease-in-out;
    }

    .container:hover {
      transform: translateY(-4px);
    }

    .logo-container img {
      max-width: 300px;
      width: 100%;
      height: auto;
      margin-bottom: 30px;
    }

    .store-buttons {
      display: none;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      margin-top: 20px;
    }

    .store-buttons a img {
      height: 60px;
      width: auto;
      max-width: 250px;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .store-buttons a:hover img {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    @media (min-width: 600px) {
      .store-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (max-width: 400px) {
      .container {
        padding: 30px 15px;
      }

      .message {
        font-size: 1rem;
      }

      .store-buttons a img {
        height: 50px;
        max-width: 200px;
      }
    }

    .message {
      margin-top: 20px;
      font-size: 1.1rem;
      color: #f0c040;
    }