  html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }

  body {
    background:
      linear-gradient(rgba(0,0,0,0.35),rgba(0,0,0,0.35)),
      url('/assets/img/5594016.jpg') center / cover no-repeat fixed;
    color: #fff;
    display: flex;
    flex-direction: column;
  }

  .wrapper {
    flex: 1;
    padding: 40px;
  }

  header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  header img.logo {
    height: 50px;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #00c3ff;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.2s ease;
    text-decoration: none;
    color: inherit;
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .card h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
  }

  footer {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-size: 14px;
  }

  @media (max-width: 600px) {
    nav {
      width: 100%;
      text-align: center;
      margin-top: 10px;
    }

    nav a {
      display: inline-block;
      margin: 5px 10px;
    }

    .container {
      flex-direction: column;
      align-items: center;
    }
  }
.grid{display:flex;flex-wrap:wrap;gap:30px;justify-content:center}
.card1 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    width: 260px;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card1:hover {
    transform: translateY(-14px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

    .thumb{width:100%;height:180px;object-fit:contain;padding:25px 0 10px}
    h3{margin:0;font-size:22px;text-align:center}
    .desc{padding:10px 20px;font-size:14px;color:#555;height:80px;overflow:hidden}
    .meta{padding:0 20px 20px;text-align:center;font-size:12px;color:#777}.code-box {
    background-color: #eee;
    padding: 10px 15px;
    margin: 10px 20px;
    border-radius: 6px;
    text-align: center;
}
.code-title {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}
.code-value {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}
    code.copy-link {
      display: block;
      background: #eee;
      color: #000;
      padding: 8px;
      margin: 10px 20px;
      border-radius: 6px;
      font-size: 12px;
      cursor: pointer;
      word-break: break-all;
    }