    body {
      font-family: 'Roboto', Arial, sans-serif;
      background: #fff;
      margin: 0;
      color: #202124;
    }
    .container {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
    }
    .header {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .app-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
    .app-info h1 {
      margin: 0;
      font-size: 1.4em;
      color: #202124;
    }
    .app-info p {
      margin: 4px 0;
      color: #1a73e8;
      font-weight: 500;
    }
    .rating {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 15px 0;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
      font-size: 0.9em;
    }
    .register-btn {
      display: block;
      text-align: center;
      background: #0f9d58;
      color: #fff;
      padding: 14px;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s;
    }
    .register-btn:hover {
      background: #16b36b;
    }
    .actions {
      text-align: center;
      margin: 15px 0;
      font-size: 0.9em;
    }
    .actions a {
      color: #1a73e8;
      text-decoration: none;
      margin: 0 10px;
    }
    .banner {
      text-align: center;
      margin-top: 20px;
    }
    .banner img {
      width: 100%;
      border-radius: 10px;
    }