    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #0f172a;
      color: #fff;
    }

    /* HERO */
    .hero {
      text-align: center;
      padding: 60px 20px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 600;
      background: linear-gradient(90deg, #3b82f6, #9333ea);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero p {
      margin-top: 10px;
      color: #94a3b8;
      font-size: 1.1rem;
    }

    /* GRID */
    .container {
      padding: 40px 80px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    /* CARD */
    .card {
      background: #1e293b;
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s ease;
      position: relative;
    }

    .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
    }

    .card h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
    }

    .card p {
      font-size: 0.9rem;
      color: #94a3b8;
      margin-bottom: 15px;
    }

    /* BUTTONS */
    .buttons {
      display: flex;
      gap: 10px;
    }

    .btn {
      flex: 1;
      padding: 8px;
      text-align: center;
      border-radius: 8px;
      font-size: 0.85rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .live {
      background: #3b82f6;
      color: #fff;
    }

    .live:hover {
      background: #2563eb;
    }

    .code {
      background: transparent;
      border: 1px solid #3b82f6;
      color: #3b82f6;
    }

    .code:hover {
      background: #3b82f6;
      color: #fff;
    }

    /* RESPONSIVE */
    @media(max-width: 768px){
      .container {
        padding: 20px;
      }

      .hero h1 {
        font-size: 2.2rem;
      }
    }
