* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
a {
  text-decoration: none;
  color: black;
  }
  
    body {
      font-family: sans-serif;
      padding: 20px;
      background-color: #fff;
    }

    h2 {
      margin-bottom: 10px;
    }

    p {
      margin-bottom: 20px;
      color: #333;
    }

    .banner {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .home-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      width: 100%;
    }

    .hg-item {
      background: #f9f9f9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .card-image {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .card-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 6px 10px;
      background: rgba(0, 0, 0, 0.6);
      text-align: left;
    }

    .appname {
      font-weight: bold;
      font-size: 14px;
      color: #fff;
      display: block;
    }

    .appdesc {
      font-size: 12px;
      color: #ccc;
      display: block;
    }

    .app-container {
      margin-top: 40px;
    }

    .bottom {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
    }

    .b-nav {
      backdrop-filter: blur(20px);
      box-shadow: 1px 1px 10px rgba(21, 21, 21, 0.1);
      background-color: rgba(255, 255, 255, 0.2);
      height: 60px;
      border-radius: 20px;
      margin: 15px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .menu-item__active .svg-icon svg {
      fill: #1a73e8;
    }

    .clickable {
      fill: darkgrey;
    }

    .item-image {
      width: 60px;
      height: 60px;
      border-radius: 10px;
    }

    .app-list {
      margin: 15px 0px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .al-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 10px;
      justify-content: space-between;
    }

    .item-l {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .btn {
      color: white;
      background-color: #1a73e8;
      padding: 2px 8px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
    }